- Integrated retry logic for AI image generation to handle transient errors and improve user experience. - Updated error categorization to provide more informative feedback based on different failure scenarios. - Enhanced node components to display retry attempts and error messages, improving visibility during image generation failures. - Refactored canvas and node components to include retry count in status updates, ensuring accurate tracking of generation attempts.
121 lines
3.9 KiB
TypeScript
121 lines
3.9 KiB
TypeScript
"use client";
|
|
|
|
import { useCallback, useState } from "react";
|
|
import { Handle, NodeResizer, Position, type NodeProps } from "@xyflow/react";
|
|
import { useAction, useMutation } from "convex/react";
|
|
import { Download, Loader2 } from "lucide-react";
|
|
import { api } from "@/convex/_generated/api";
|
|
import type { Id } from "@/convex/_generated/dataModel";
|
|
import { useDebouncedCallback } from "@/hooks/use-debounced-callback";
|
|
import BaseNodeWrapper from "./base-node-wrapper";
|
|
|
|
interface FrameNodeData {
|
|
label?: string;
|
|
width?: number;
|
|
height?: number;
|
|
}
|
|
|
|
export default function FrameNode({ id, data, selected, width, height }: NodeProps) {
|
|
const nodeData = data as FrameNodeData;
|
|
const updateData = useMutation(api.nodes.updateData);
|
|
const exportFrame = useAction(api.export.exportFrame);
|
|
|
|
const [label, setLabel] = useState(nodeData.label ?? "Frame");
|
|
const [isExporting, setIsExporting] = useState(false);
|
|
const [exportError, setExportError] = useState<string | null>(null);
|
|
|
|
const debouncedSave = useDebouncedCallback((value: string) => {
|
|
void updateData({ nodeId: id as Id<"nodes">, data: { ...nodeData, label: value } });
|
|
}, 500);
|
|
|
|
const handleLabelChange = useCallback(
|
|
(event: React.ChangeEvent<HTMLInputElement>) => {
|
|
setLabel(event.target.value);
|
|
debouncedSave(event.target.value);
|
|
},
|
|
[debouncedSave],
|
|
);
|
|
|
|
const handleExport = useCallback(async () => {
|
|
if (isExporting) return;
|
|
setIsExporting(true);
|
|
setExportError(null);
|
|
|
|
try {
|
|
const result = await exportFrame({ frameNodeId: id as Id<"nodes"> });
|
|
const a = document.createElement("a");
|
|
a.href = result.url;
|
|
a.download = result.filename;
|
|
a.click();
|
|
} catch (error) {
|
|
setExportError(error instanceof Error ? error.message : "Export failed");
|
|
} finally {
|
|
setIsExporting(false);
|
|
}
|
|
}, [exportFrame, id, isExporting]);
|
|
|
|
const frameW = Math.round(width ?? 400);
|
|
const frameH = Math.round(height ?? 300);
|
|
|
|
return (
|
|
<BaseNodeWrapper
|
|
nodeType="frame"
|
|
selected={selected}
|
|
className="relative h-full w-full border-2 border-dashed border-muted-foreground/40 !bg-transparent p-0 shadow-none"
|
|
>
|
|
<NodeResizer isVisible={selected} minWidth={200} minHeight={150} />
|
|
|
|
<div className="absolute -top-8 left-0 flex items-center gap-2">
|
|
<input
|
|
value={label}
|
|
onChange={handleLabelChange}
|
|
onKeyDown={(event) => {
|
|
if (event.key === "Enter") {
|
|
(event.target as HTMLInputElement).blur();
|
|
}
|
|
}}
|
|
className="nodrag nowheel w-40 border-none bg-transparent text-sm font-medium text-muted-foreground outline-none focus:text-foreground"
|
|
/>
|
|
|
|
<span className="text-xs text-muted-foreground/60">
|
|
{frameW}x{frameH}
|
|
</span>
|
|
|
|
<button
|
|
onClick={() => void handleExport()}
|
|
disabled={isExporting}
|
|
title="Export as PNG"
|
|
className="nodrag flex items-center gap-1 rounded-md border border-border bg-background px-2 py-1 text-xs font-medium transition-colors hover:bg-accent disabled:cursor-not-allowed disabled:opacity-50"
|
|
type="button"
|
|
>
|
|
{isExporting ? (
|
|
<Loader2 className="h-3 w-3 animate-spin" />
|
|
) : (
|
|
<Download className="h-3 w-3" />
|
|
)}
|
|
{isExporting ? "Exporting..." : "Export PNG"}
|
|
</button>
|
|
</div>
|
|
|
|
{exportError && (
|
|
<div className="absolute -bottom-6 left-0 text-xs text-destructive">{exportError}</div>
|
|
)}
|
|
|
|
<div className="nodrag h-full w-full" />
|
|
|
|
<Handle
|
|
type="target"
|
|
position={Position.Left}
|
|
id="frame-in"
|
|
className="!h-3 !w-3 !border-2 !border-background !bg-orange-500"
|
|
/>
|
|
<Handle
|
|
type="source"
|
|
position={Position.Right}
|
|
id="frame-out"
|
|
className="!h-3 !w-3 !border-2 !border-background !bg-orange-500"
|
|
/>
|
|
</BaseNodeWrapper>
|
|
);
|
|
}
|