Files
emdash-patch-imageupload/packages/admin/src/components/SectionPickerModal.tsx
kunthawat 2d1be52177 Emdash source with visual editor image upload fix
Fixes:
1. media.ts: wrap placeholder generation in try-catch
2. toolbar.ts: check r.ok, display error message in popover
2026-05-03 10:44:54 +07:00

172 lines
5.0 KiB
TypeScript

/**
* Section Picker Modal
*
* A modal for selecting and inserting sections into content.
*/
import { Button, Dialog, Input } from "@cloudflare/kumo";
import { useLingui } from "@lingui/react/macro";
import { MagnifyingGlass, Stack, FolderOpen } from "@phosphor-icons/react";
import { X } from "@phosphor-icons/react";
import { useQuery } from "@tanstack/react-query";
import * as React from "react";
import { fetchSections, type Section } from "../lib/api";
import { useDebouncedValue } from "../lib/hooks";
import { cn } from "../lib/utils";
interface SectionPickerModalProps {
open: boolean;
onOpenChange: (open: boolean) => void;
onSelect: (section: Section) => void;
}
export function SectionPickerModal({ open, onOpenChange, onSelect }: SectionPickerModalProps) {
const { t } = useLingui();
const [searchQuery, setSearchQuery] = React.useState("");
const debouncedSearch = useDebouncedValue(searchQuery, 300);
const { data: sectionsData, isLoading: sectionsLoading } = useQuery({
queryKey: ["sections", { search: debouncedSearch }],
queryFn: () =>
fetchSections({
search: debouncedSearch || undefined,
}),
enabled: open,
});
const sections = sectionsData?.items ?? [];
// Reset search when modal opens
React.useEffect(() => {
if (open) {
setSearchQuery("");
}
}, [open]);
const handleSelect = (section: Section) => {
onSelect(section);
onOpenChange(false);
};
return (
<Dialog.Root open={open} onOpenChange={onOpenChange}>
<Dialog className="p-6 max-w-3xl max-h-[80vh] flex flex-col" size="lg">
<div className="flex items-start justify-between gap-4 mb-4">
<Dialog.Title className="text-lg font-semibold leading-none tracking-tight flex items-center gap-2">
<Stack className="h-5 w-5" />
{t`Insert Section`}
</Dialog.Title>
<Dialog.Close
aria-label={t`Close`}
render={(props) => (
<Button
{...props}
variant="ghost"
shape="square"
aria-label={t`Close`}
className="absolute end-4 top-4"
>
<X className="h-4 w-4" />
<span className="sr-only">{t`Close`}</span>
</Button>
)}
/>
</div>
{/* Search */}
<div className="flex items-center gap-4 py-4 border-b">
<div className="relative flex-1">
<MagnifyingGlass className="absolute start-3 top-1/2 -translate-y-1/2 h-4 w-4 text-kumo-subtle" />
<Input
placeholder={t`Search sections...`}
value={searchQuery}
onChange={(e) => setSearchQuery(e.target.value)}
className="ps-10"
autoFocus
/>
</div>
</div>
{/* Section grid */}
<div className="flex-1 overflow-y-auto py-4">
{sectionsLoading ? (
<div className="flex items-center justify-center h-32">
<div className="text-kumo-subtle">{t`Loading sections...`}</div>
</div>
) : sections.length === 0 ? (
<div className="flex flex-col items-center justify-center h-32 text-center">
{searchQuery ? (
<>
<MagnifyingGlass className="h-8 w-8 text-kumo-subtle mb-2" />
<p className="text-kumo-subtle">{t`No sections found`}</p>
<p className="text-sm text-kumo-subtle">{t`Try adjusting your search`}</p>
</>
) : (
<>
<FolderOpen className="h-8 w-8 text-kumo-subtle mb-2" />
<p className="text-kumo-subtle">{t`No sections available`}</p>
<p className="text-sm text-kumo-subtle">
{t`Create sections in the Sections library to use them here`}
</p>
</>
)}
</div>
) : (
<div className="grid gap-3 sm:grid-cols-2 lg:grid-cols-3">
{sections.map((section) => (
<SectionCard
key={section.id}
section={section}
onSelect={() => handleSelect(section)}
/>
))}
</div>
)}
</div>
{/* Footer */}
<div className="flex justify-end gap-2 pt-4 border-t">
<Button variant="outline" onClick={() => onOpenChange(false)}>
{t`Cancel`}
</Button>
</div>
</Dialog>
</Dialog.Root>
);
}
function SectionCard({ section, onSelect }: { section: Section; onSelect: () => void }) {
return (
<button
type="button"
onClick={onSelect}
className={cn(
"text-start rounded-lg border bg-kumo-base overflow-hidden transition-colors",
"hover:border-kumo-brand hover:bg-kumo-tint/50",
"focus:outline-none focus:ring-2 focus:ring-kumo-ring focus:ring-offset-2",
)}
>
{/* Preview */}
<div className="aspect-video bg-kumo-tint flex items-center justify-center">
{section.previewUrl ? (
<img
src={section.previewUrl}
alt={section.title}
className="w-full h-full object-cover"
/>
) : (
<Stack className="h-8 w-8 text-kumo-subtle" />
)}
</div>
{/* Content */}
<div className="p-3">
<h4 className="font-medium truncate">{section.title}</h4>
{section.description && (
<p className="text-xs text-kumo-subtle line-clamp-2 mt-1">{section.description}</p>
)}
</div>
</button>
);
}