Files
lemonspace_app/components/canvas/nodes/base-node-wrapper.tsx
Matthias 5da0204163 feat: enhance canvas and node components with error handling and retry logic
- 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.
2026-03-27 11:35:18 +01:00

50 lines
1.2 KiB
TypeScript

"use client";
import type { ReactNode } from "react";
import { NodeErrorBoundary } from "./node-error-boundary";
interface BaseNodeWrapperProps {
nodeType: string;
selected?: boolean;
status?: string;
statusMessage?: string;
children: ReactNode;
className?: string;
}
export default function BaseNodeWrapper({
nodeType,
selected,
status = "idle",
statusMessage,
children,
className = "",
}: BaseNodeWrapperProps) {
const statusStyles: Record<string, string> = {
idle: "",
analyzing: "border-yellow-400 animate-pulse",
clarifying: "border-amber-400",
executing: "border-yellow-400 animate-pulse",
done: "border-green-500",
error: "border-red-500",
};
return (
<div
className={`
rounded-xl border bg-card shadow-sm transition-shadow
${selected ? "ring-2 ring-primary shadow-md" : ""}
${statusStyles[status] ?? ""}
${className}
`}
>
<NodeErrorBoundary nodeType={nodeType}>{children}</NodeErrorBoundary>
{status === "error" && statusMessage && (
<div className="px-3 pb-2 text-xs text-red-500 truncate">
{statusMessage}
</div>
)}
</div>
);
}