Files
lemonspace_app/lib/canvas-utils.ts
Matthias bc3bbf9d69 feat: enhance canvas functionality with new asset node type and improved image handling
- Introduced a new "asset" node type in the canvas sidebar for better resource management.
- Updated image node components to support dynamic image dimensions and improved resizing logic.
- Enhanced prompt and AI image nodes to utilize reference images from asset nodes, improving integration and functionality.
- Refactored canvas utilities to accommodate new asset configurations and maintain consistent media handling.
2026-03-27 20:33:20 +01:00

171 lines
5.6 KiB
TypeScript

import type { Node as RFNode, Edge as RFEdge } from "@xyflow/react";
import type { Doc } from "@/convex/_generated/dataModel";
/**
* Convex Node → React Flow Node
*
* Convex speichert positionX/positionY als separate Felder,
* React Flow erwartet position: { x, y }.
*/
export function convexNodeToRF(node: Doc<"nodes">): RFNode {
return {
id: node._id,
type: node.type,
position: { x: node.positionX, y: node.positionY },
data: {
...(node.data as Record<string, unknown>),
// Status direkt in data durchreichen, damit Node-Komponenten darauf zugreifen können
_status: node.status,
_statusMessage: node.statusMessage,
retryCount: node.retryCount,
},
parentId: node.parentId ?? undefined,
zIndex: node.zIndex,
style: {
width: node.width,
height: node.height,
},
};
}
/**
* Convex Edge → React Flow Edge
* Sanitize handles: null/undefined/"null" → undefined (ReactFlow erwartet string | null | undefined, aber nie den String "null")
*/
export function convexEdgeToRF(edge: Doc<"edges">): RFEdge {
const sanitize = (h: string | undefined): string | undefined =>
h === undefined || h === "null" ? undefined : h;
// #region agent log
fetch('http://127.0.0.1:7733/ingest/db1ec129-24cb-483b-98e2-3e7beef6d9cd',{method:'POST',headers:{'Content-Type':'application/json','X-Debug-Session-Id':'594b9f'},body:JSON.stringify({sessionId:'594b9f',runId:'run1',hypothesisId:'H1-H3-H4',location:'canvas-utils.ts:convexEdgeToRF',message:'raw edge from convex',data:{edgeId:edge._id,sourceNodeId:edge.sourceNodeId,targetNodeId:edge.targetNodeId,rawSourceHandle:edge.sourceHandle,rawTargetHandle:edge.targetHandle,typeofSourceHandle:typeof edge.sourceHandle,typeofTargetHandle:typeof edge.targetHandle,isNullSH:edge.sourceHandle===null,isNullTH:edge.targetHandle===null,isUndefinedSH:edge.sourceHandle===undefined,isUndefinedTH:edge.targetHandle===undefined,isStringNullSH:edge.sourceHandle==='null',isStringNullTH:edge.targetHandle==='null',sanitizedSH:sanitize(edge.sourceHandle),sanitizedTH:sanitize(edge.targetHandle)},timestamp:Date.now()})}).catch(()=>{});
// #endregion
return {
id: edge._id,
source: edge.sourceNodeId,
target: edge.targetNodeId,
sourceHandle: sanitize(edge.sourceHandle),
targetHandle: sanitize(edge.targetHandle),
};
}
/**
* Handle-IDs pro Node-Typ für Proximity Connect.
* `undefined` = default handle (kein explizites `id`-Attribut auf dem Handle).
* Fehlendes Feld = Node hat keinen Handle dieses Typs.
*/
export const NODE_HANDLE_MAP: Record<
string,
{ source?: string; target?: string }
> = {
image: { source: undefined, target: undefined },
text: { source: undefined, target: undefined },
prompt: { source: "prompt-out", target: "image-in" },
"ai-image": { source: "image-out", target: "prompt-in" },
group: { source: undefined, target: undefined },
frame: { source: "frame-out", target: "frame-in" },
note: { source: undefined, target: undefined },
compare: { source: "compare-out", target: "left" },
asset: { source: undefined, target: undefined },
};
/**
* Default-Größen für neue Nodes je nach Typ.
*/
export const NODE_DEFAULTS: Record<
string,
{ width: number; height: number; data: Record<string, unknown> }
> = {
image: { width: 280, height: 200, data: {} },
text: { width: 256, height: 120, data: { content: "" } },
prompt: { width: 288, height: 220, data: { prompt: "", aspectRatio: "1:1" } },
// 1:1 viewport 320 + chrome 88 ≈ äußere Höhe (siehe lib/image-formats.ts)
"ai-image": { width: 320, height: 408, data: {} },
group: { width: 400, height: 300, data: { label: "Gruppe" } },
frame: {
width: 400,
height: 300,
data: { label: "Frame", resolution: "1080x1080" },
},
note: { width: 208, height: 100, data: { content: "" } },
compare: { width: 500, height: 380, data: {} },
asset: { width: 260, height: 240, data: {} },
};
type MediaNodeKind = "asset" | "image";
const MEDIA_NODE_CONFIG: Record<
MediaNodeKind,
{
width: number;
chromeHeight: number;
minPreviewHeight: number;
maxPreviewHeight: number;
}
> = {
asset: {
width: 260,
chromeHeight: 88,
minPreviewHeight: 120,
maxPreviewHeight: 300,
},
image: {
width: 280,
chromeHeight: 52,
minPreviewHeight: 120,
maxPreviewHeight: 320,
},
};
function clamp(value: number, min: number, max: number): number {
return Math.max(min, Math.min(max, value));
}
function fallbackAspectRatio(orientation?: string): number {
if (orientation === "horizontal") return 4 / 3;
if (orientation === "vertical") return 3 / 4;
return 1;
}
export function resolveMediaAspectRatio(
intrinsicWidth?: number,
intrinsicHeight?: number,
orientation?: string,
): number {
if (
typeof intrinsicWidth === "number" &&
typeof intrinsicHeight === "number" &&
intrinsicWidth > 0 &&
intrinsicHeight > 0
) {
return intrinsicWidth / intrinsicHeight;
}
return fallbackAspectRatio(orientation);
}
export function computeMediaNodeSize(
kind: MediaNodeKind,
options?: {
intrinsicWidth?: number;
intrinsicHeight?: number;
orientation?: string;
},
): { width: number; height: number; previewHeight: number; aspectRatio: number } {
const config = MEDIA_NODE_CONFIG[kind];
const aspectRatio = resolveMediaAspectRatio(
options?.intrinsicWidth,
options?.intrinsicHeight,
options?.orientation,
);
const previewHeight = clamp(
Math.round(config.width / aspectRatio),
config.minPreviewHeight,
config.maxPreviewHeight,
);
return {
width: config.width,
height: previewHeight + config.chromeHeight,
previewHeight,
aspectRatio,
};
}