mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-05-20 17:41:07 +00:00
Nova mobile pass - viewport: viewportFit cover for iOS safe-area-inset - safe-area utilities (pb-safe, pt-safe, bottom-safe-5, scroll-fade-x) in globals.css - chat FAB pinned above iPhone home indicator; chat sidebar widths responsive across sm/md/lg with min() clamps - chat input CoT panel max-h capped via min(60dvh, 420px) - header tab strip swapped from visible scrollbar to scroll-fade-x mask + snap-x - nova empty state uses svh on mobile, dvh from sm up Add-memory modal rebuilt for mobile - mobile shell switched from fullscreen Dialog to vaul Drawer at 85svh with swipe-down dismissal and scaled background - in-modal header removed; tabs moved to the bottom of the sheet for thumb reach - four tab compactLabels: Note, Links, Files, Connections - desktop tabs now render only when !isMobile (no DOM duplication) - note/link content state lifted to parent so switching tabs preserves typed input - NoteContent snapshots initialContent via lazy useState so the editor isn't reset on every keystroke - shared Drawer base uses rounded-t-xl - removed legacy pt-4 on tab content for mobile Connections — replace expiresAt with sync-run health - new useConnectionHealth hook reads the latest sync run and matches auth-failure patterns; backend errorKind field still needed (TODO) - regex tightened so 401/403 require co-occurring auth/token/grant context; refresh_token requires expired/revoked/invalid/missing qualifier - badge label changed Disconnected -> Needs reauth - Reconnect button replaces the sync action when needsReauth, kicks off the same OAuth flow - per-row reconnect tracking via mutation.variables instead of a single shared id (no race when multiple rows clicked) - fallback toast when authLink is missing so the spinner can't get stuck - sync history panel timeline capped at max-h-260 with internal scroll - useSyncRuns no longer refetches on mount; cache (30s) actually applies, cutting N requests per modal open
115 lines
2.2 KiB
TypeScript
115 lines
2.2 KiB
TypeScript
"use client"
|
|
|
|
import { cn } from "@lib/utils"
|
|
import type * as React from "react"
|
|
|
|
function Table({ className, ...props }: React.ComponentProps<"table">) {
|
|
return (
|
|
<div
|
|
className="relative w-full overflow-x-auto"
|
|
data-slot="table-container"
|
|
>
|
|
<table
|
|
className={cn("w-full caption-bottom text-sm", className)}
|
|
data-slot="table"
|
|
{...props}
|
|
/>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
function TableHeader({ className, ...props }: React.ComponentProps<"thead">) {
|
|
return (
|
|
<thead
|
|
className={cn("[&_tr]:border-b", className)}
|
|
data-slot="table-header"
|
|
{...props}
|
|
/>
|
|
)
|
|
}
|
|
|
|
function TableBody({ className, ...props }: React.ComponentProps<"tbody">) {
|
|
return (
|
|
<tbody
|
|
className={cn("[&_tr:last-child]:border-0", className)}
|
|
data-slot="table-body"
|
|
{...props}
|
|
/>
|
|
)
|
|
}
|
|
|
|
function TableFooter({ className, ...props }: React.ComponentProps<"tfoot">) {
|
|
return (
|
|
<tfoot
|
|
className={cn(
|
|
"bg-muted/50 border-t font-medium [&>tr]:last:border-b-0",
|
|
className,
|
|
)}
|
|
data-slot="table-footer"
|
|
{...props}
|
|
/>
|
|
)
|
|
}
|
|
|
|
function TableRow({ className, ...props }: React.ComponentProps<"tr">) {
|
|
return (
|
|
<tr
|
|
className={cn(
|
|
"hover:bg-muted/50 data-[state=selected]:bg-muted border-b transition-colors",
|
|
className,
|
|
)}
|
|
data-slot="table-row"
|
|
{...props}
|
|
/>
|
|
)
|
|
}
|
|
|
|
function TableHead({ className, ...props }: React.ComponentProps<"th">) {
|
|
return (
|
|
<th
|
|
className={cn(
|
|
"text-foreground h-10 px-2 text-left align-middle font-medium whitespace-nowrap [&:has([role=checkbox])]:pr-0 [&>[role=checkbox]]:translate-y-[2px]",
|
|
className,
|
|
)}
|
|
data-slot="table-head"
|
|
{...props}
|
|
/>
|
|
)
|
|
}
|
|
|
|
function TableCell({ className, ...props }: React.ComponentProps<"td">) {
|
|
return (
|
|
<td
|
|
className={cn(
|
|
"p-2 align-middle whitespace-nowrap [&:has([role=checkbox])]:pr-0 [&>[role=checkbox]]:translate-y-[2px]",
|
|
className,
|
|
)}
|
|
data-slot="table-cell"
|
|
{...props}
|
|
/>
|
|
)
|
|
}
|
|
|
|
function TableCaption({
|
|
className,
|
|
...props
|
|
}: React.ComponentProps<"caption">) {
|
|
return (
|
|
<caption
|
|
className={cn("text-muted-foreground mt-4 text-sm", className)}
|
|
data-slot="table-caption"
|
|
{...props}
|
|
/>
|
|
)
|
|
}
|
|
|
|
export {
|
|
Table,
|
|
TableHeader,
|
|
TableBody,
|
|
TableFooter,
|
|
TableHead,
|
|
TableRow,
|
|
TableCell,
|
|
TableCaption,
|
|
}
|