mirror of
https://github.com/DayuanJiang/next-ai-draw-io.git
synced 2026-01-02 22:32:27 +08:00
- Add Biome as formatter and linter (replaces Prettier) - Configure Husky + lint-staged for pre-commit hooks - Add VS Code settings for format on save - Ignore components/ui/ (shadcn generated code) - Remove semicolons, use 4-space indent - Reformat all files to new style
129 lines
4.3 KiB
TypeScript
129 lines
4.3 KiB
TypeScript
"use client"
|
|
|
|
import { useEffect, useState } from "react"
|
|
import { Button } from "@/components/ui/button"
|
|
import {
|
|
Dialog,
|
|
DialogContent,
|
|
DialogFooter,
|
|
DialogHeader,
|
|
DialogTitle,
|
|
} from "@/components/ui/dialog"
|
|
import { Input } from "@/components/ui/input"
|
|
import {
|
|
Select,
|
|
SelectContent,
|
|
SelectItem,
|
|
SelectTrigger,
|
|
SelectValue,
|
|
} from "@/components/ui/select"
|
|
|
|
export type ExportFormat = "drawio" | "png" | "svg"
|
|
|
|
const FORMAT_OPTIONS: {
|
|
value: ExportFormat
|
|
label: string
|
|
extension: string
|
|
}[] = [
|
|
{ value: "drawio", label: "Draw.io XML", extension: ".drawio" },
|
|
{ value: "png", label: "PNG Image", extension: ".png" },
|
|
{ value: "svg", label: "SVG Image", extension: ".svg" },
|
|
]
|
|
|
|
interface SaveDialogProps {
|
|
open: boolean
|
|
onOpenChange: (open: boolean) => void
|
|
onSave: (filename: string, format: ExportFormat) => void
|
|
defaultFilename: string
|
|
}
|
|
|
|
export function SaveDialog({
|
|
open,
|
|
onOpenChange,
|
|
onSave,
|
|
defaultFilename,
|
|
}: SaveDialogProps) {
|
|
const [filename, setFilename] = useState(defaultFilename)
|
|
const [format, setFormat] = useState<ExportFormat>("drawio")
|
|
|
|
useEffect(() => {
|
|
if (open) {
|
|
setFilename(defaultFilename)
|
|
}
|
|
}, [open, defaultFilename])
|
|
|
|
const handleSave = () => {
|
|
const finalFilename = filename.trim() || defaultFilename
|
|
onSave(finalFilename, format)
|
|
onOpenChange(false)
|
|
}
|
|
|
|
const handleKeyDown = (e: React.KeyboardEvent) => {
|
|
if (e.key === "Enter") {
|
|
e.preventDefault()
|
|
handleSave()
|
|
}
|
|
}
|
|
|
|
const currentFormat = FORMAT_OPTIONS.find((f) => f.value === format)
|
|
|
|
return (
|
|
<Dialog open={open} onOpenChange={onOpenChange}>
|
|
<DialogContent className="sm:max-w-md">
|
|
<DialogHeader>
|
|
<DialogTitle>Save Diagram</DialogTitle>
|
|
</DialogHeader>
|
|
<div className="space-y-4">
|
|
<div className="space-y-2">
|
|
<label className="text-sm font-medium">Format</label>
|
|
<Select
|
|
value={format}
|
|
onValueChange={(v) => setFormat(v as ExportFormat)}
|
|
>
|
|
<SelectTrigger>
|
|
<SelectValue />
|
|
</SelectTrigger>
|
|
<SelectContent>
|
|
{FORMAT_OPTIONS.map((opt) => (
|
|
<SelectItem
|
|
key={opt.value}
|
|
value={opt.value}
|
|
>
|
|
{opt.label}
|
|
</SelectItem>
|
|
))}
|
|
</SelectContent>
|
|
</Select>
|
|
</div>
|
|
<div className="space-y-2">
|
|
<label className="text-sm font-medium">Filename</label>
|
|
<div className="flex items-stretch">
|
|
<Input
|
|
value={filename}
|
|
onChange={(e) => setFilename(e.target.value)}
|
|
onKeyDown={handleKeyDown}
|
|
placeholder="Enter filename"
|
|
autoFocus
|
|
onFocus={(e) => e.target.select()}
|
|
className="rounded-r-none border-r-0 focus-visible:z-10"
|
|
/>
|
|
<span className="inline-flex items-center px-3 rounded-r-md border border-l-0 border-input bg-muted text-sm text-muted-foreground font-mono">
|
|
{currentFormat?.extension || ".drawio"}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<DialogFooter>
|
|
<Button
|
|
variant="outline"
|
|
onClick={() => onOpenChange(false)}
|
|
>
|
|
Cancel
|
|
</Button>
|
|
<Button onClick={handleSave}>Save</Button>
|
|
</DialogFooter>
|
|
</DialogContent>
|
|
</Dialog>
|
|
)
|
|
}
|