mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-09-07 08:26:15 +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
202 lines
4.6 KiB
TypeScript
202 lines
4.6 KiB
TypeScript
"use client"
|
|
|
|
import { cn } from "@lib/utils"
|
|
import { Button } from "@ui/components/button"
|
|
import { UploadIcon } from "lucide-react"
|
|
import type { ReactNode } from "react"
|
|
import { createContext, useContext } from "react"
|
|
import type { DropEvent, DropzoneOptions, FileRejection } from "react-dropzone"
|
|
import { useDropzone } from "react-dropzone"
|
|
|
|
type DropzoneContextType = {
|
|
src?: File[]
|
|
accept?: DropzoneOptions["accept"]
|
|
maxSize?: DropzoneOptions["maxSize"]
|
|
minSize?: DropzoneOptions["minSize"]
|
|
maxFiles?: DropzoneOptions["maxFiles"]
|
|
}
|
|
|
|
const renderBytes = (bytes: number) => {
|
|
const units = ["B", "KB", "MB", "GB", "TB", "PB"]
|
|
let size = bytes
|
|
let unitIndex = 0
|
|
|
|
while (size >= 1024 && unitIndex < units.length - 1) {
|
|
size /= 1024
|
|
unitIndex++
|
|
}
|
|
|
|
return `${size.toFixed(2)}${units[unitIndex]}`
|
|
}
|
|
|
|
const DropzoneContext = createContext<DropzoneContextType | undefined>(
|
|
undefined,
|
|
)
|
|
|
|
export type DropzoneProps = Omit<DropzoneOptions, "onDrop"> & {
|
|
src?: File[]
|
|
className?: string
|
|
onDrop?: (
|
|
acceptedFiles: File[],
|
|
fileRejections: FileRejection[],
|
|
event: DropEvent,
|
|
) => void
|
|
children?: ReactNode
|
|
}
|
|
|
|
export const Dropzone = ({
|
|
accept,
|
|
maxFiles = 1,
|
|
maxSize,
|
|
minSize,
|
|
onDrop,
|
|
onError,
|
|
disabled,
|
|
src,
|
|
className,
|
|
children,
|
|
...props
|
|
}: DropzoneProps) => {
|
|
const { getRootProps, getInputProps, isDragActive } = useDropzone({
|
|
accept,
|
|
maxFiles,
|
|
maxSize,
|
|
minSize,
|
|
onError,
|
|
disabled,
|
|
onDrop: (acceptedFiles, fileRejections, event) => {
|
|
if (fileRejections.length > 0) {
|
|
const message = fileRejections.at(0)?.errors.at(0)?.message
|
|
onError?.(new Error(message))
|
|
return
|
|
}
|
|
|
|
onDrop?.(acceptedFiles, fileRejections, event)
|
|
},
|
|
...props,
|
|
})
|
|
|
|
return (
|
|
<DropzoneContext.Provider
|
|
key={JSON.stringify(src)}
|
|
value={{ src, accept, maxSize, minSize, maxFiles }}
|
|
>
|
|
<Button
|
|
className={cn(
|
|
"relative h-auto w-full flex-col overflow-hidden p-8 cursor-pointer",
|
|
isDragActive && "outline-none ring-1 ring-ring",
|
|
className,
|
|
)}
|
|
disabled={disabled}
|
|
type="button"
|
|
variant="outline"
|
|
{...getRootProps()}
|
|
>
|
|
<input {...getInputProps()} disabled={disabled} />
|
|
{children}
|
|
</Button>
|
|
</DropzoneContext.Provider>
|
|
)
|
|
}
|
|
|
|
const useDropzoneContext = () => {
|
|
const context = useContext(DropzoneContext)
|
|
|
|
if (!context) {
|
|
throw new Error("useDropzoneContext must be used within a Dropzone")
|
|
}
|
|
|
|
return context
|
|
}
|
|
|
|
export type DropzoneContentProps = {
|
|
children?: ReactNode
|
|
className?: string
|
|
}
|
|
|
|
const maxLabelItems = 1
|
|
|
|
export const DropzoneContent = ({
|
|
children,
|
|
className,
|
|
}: DropzoneContentProps) => {
|
|
const { src } = useDropzoneContext()
|
|
|
|
if (!src) {
|
|
return null
|
|
}
|
|
|
|
if (children) {
|
|
return children
|
|
}
|
|
|
|
return (
|
|
<div className={cn("flex flex-col items-center justify-center", className)}>
|
|
<div className="flex size-8 items-center justify-center rounded-md bg-muted text-muted-foreground">
|
|
<UploadIcon size={16} />
|
|
</div>
|
|
<p className="my-2 w-full truncate font-medium text-sm">
|
|
{src.length > maxLabelItems
|
|
? `${new Intl.ListFormat("en").format(
|
|
src.slice(0, maxLabelItems).map((file) => file.name),
|
|
)} and ${src.length - maxLabelItems} more`
|
|
: new Intl.ListFormat("en").format(src.map((file) => file.name))}
|
|
</p>
|
|
<p className="w-full text-wrap text-muted-foreground text-xs">
|
|
Drag and drop or click to replace
|
|
</p>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export type DropzoneEmptyStateProps = {
|
|
children?: ReactNode
|
|
className?: string
|
|
}
|
|
|
|
export const DropzoneEmptyState = ({
|
|
children,
|
|
className,
|
|
}: DropzoneEmptyStateProps) => {
|
|
const { src, accept, maxSize, minSize, maxFiles } = useDropzoneContext()
|
|
|
|
if (src) {
|
|
return null
|
|
}
|
|
|
|
if (children) {
|
|
return children
|
|
}
|
|
|
|
let caption = ""
|
|
|
|
if (accept) {
|
|
caption += "Accepts "
|
|
caption += new Intl.ListFormat("en").format(Object.keys(accept))
|
|
}
|
|
|
|
if (minSize && maxSize) {
|
|
caption += ` between ${renderBytes(minSize)} and ${renderBytes(maxSize)}`
|
|
} else if (minSize) {
|
|
caption += ` at least ${renderBytes(minSize)}`
|
|
} else if (maxSize) {
|
|
caption += ` less than ${renderBytes(maxSize)}`
|
|
}
|
|
|
|
return (
|
|
<div className={cn("flex flex-col items-center justify-center", className)}>
|
|
<div className="flex size-8 items-center justify-center rounded-md bg-muted text-muted-foreground">
|
|
<UploadIcon size={16} />
|
|
</div>
|
|
<p className="my-2 w-full truncate text-wrap font-medium text-sm">
|
|
Upload {maxFiles === 1 ? "a file" : "files"}
|
|
</p>
|
|
<p className="w-full truncate text-wrap text-muted-foreground text-xs">
|
|
Drag and drop or click to upload
|
|
</p>
|
|
{caption && (
|
|
<p className="text-wrap text-muted-foreground text-xs">{caption}.</p>
|
|
)}
|
|
</div>
|
|
)
|
|
}
|