"use client"; import { useEffect, useMemo, useRef, useState } from "react"; import { Handle, Position, type Node, type NodeProps } from "@xyflow/react"; import { useMutation } from "convex/react"; import { Focus } from "lucide-react"; import { api } from "@/convex/_generated/api"; import type { Id } from "@/convex/_generated/dataModel"; import { useAuthQuery } from "@/hooks/use-auth-query"; import { useDebouncedCallback } from "@/hooks/use-debounced-callback"; import { useCanvasSync } from "@/components/canvas/canvas-sync-context"; import BaseNodeWrapper from "@/components/canvas/nodes/base-node-wrapper"; import AdjustmentPreview from "@/components/canvas/nodes/adjustment-preview"; import { ParameterSlider, type SliderConfig, type SliderValue, } from "@/src/components/tool-ui/parameter-slider"; import { cloneAdjustmentData, DEFAULT_DETAIL_ADJUST_DATA, normalizeDetailAdjustData, type DetailAdjustData, } from "@/lib/image-pipeline/adjustment-types"; import { DETAIL_PRESETS } from "@/lib/image-pipeline/presets"; import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "@/components/ui/select"; import { toast } from "@/lib/toast"; type DetailAdjustNodeData = DetailAdjustData & { _status?: string; _statusMessage?: string; }; export type DetailAdjustNodeType = Node; type PresetDoc = { _id: Id<"adjustmentPresets">; name: string; params: unknown; }; export default function DetailAdjustNode({ id, data, selected, width }: NodeProps) { const { queueNodeDataUpdate } = useCanvasSync(); const savePreset = useMutation(api.presets.save); const userPresets = (useAuthQuery(api.presets.list, { nodeType: "detail-adjust" }) ?? []) as PresetDoc[]; const [localData, setLocalData] = useState(() => normalizeDetailAdjustData({ ...cloneAdjustmentData(DEFAULT_DETAIL_ADJUST_DATA), ...data }), ); const [presetSelection, setPresetSelection] = useState("custom"); const localDataRef = useRef(localData); useEffect(() => { localDataRef.current = localData; }, [localData]); useEffect(() => { const timer = window.setTimeout(() => { setLocalData( normalizeDetailAdjustData({ ...cloneAdjustmentData(DEFAULT_DETAIL_ADJUST_DATA), ...data }), ); }, 0); return () => { window.clearTimeout(timer); }; }, [data]); const queueSave = useDebouncedCallback(() => { void queueNodeDataUpdate({ nodeId: id as Id<"nodes">, data: localDataRef.current, }); }, 16); const updateData = (updater: (draft: DetailAdjustData) => DetailAdjustData) => { setPresetSelection("custom"); setLocalData((current) => { const next = updater(current); localDataRef.current = next; queueSave(); return next; }); }; const builtinOptions = useMemo(() => Object.entries(DETAIL_PRESETS), []); const sliderConfigs = useMemo( () => [ { id: "sharpen-amount", label: "Sharpen", min: 0, max: 500, value: DEFAULT_DETAIL_ADJUST_DATA.sharpen.amount, }, { id: "sharpen-radius", label: "Radius", min: 0.5, max: 5, step: 0.01, precision: 2, value: DEFAULT_DETAIL_ADJUST_DATA.sharpen.radius, }, { id: "sharpen-threshold", label: "Threshold", min: 0, max: 255, value: DEFAULT_DETAIL_ADJUST_DATA.sharpen.threshold, }, { id: "clarity", label: "Clarity", min: -100, max: 100, value: DEFAULT_DETAIL_ADJUST_DATA.clarity, }, { id: "denoise-luminance", label: "Denoise Luma", min: 0, max: 100, value: DEFAULT_DETAIL_ADJUST_DATA.denoise.luminance, }, { id: "denoise-color", label: "Denoise Color", min: 0, max: 100, value: DEFAULT_DETAIL_ADJUST_DATA.denoise.color, }, { id: "grain-amount", label: "Grain", min: 0, max: 100, value: DEFAULT_DETAIL_ADJUST_DATA.grain.amount, }, ], [], ); const sliderValues = useMemo( () => [ { id: "sharpen-amount", value: localData.sharpen.amount }, { id: "sharpen-radius", value: localData.sharpen.radius }, { id: "sharpen-threshold", value: localData.sharpen.threshold }, { id: "clarity", value: localData.clarity }, { id: "denoise-luminance", value: localData.denoise.luminance }, { id: "denoise-color", value: localData.denoise.color }, { id: "grain-amount", value: localData.grain.amount }, ], [ localData.clarity, localData.denoise.color, localData.denoise.luminance, localData.grain.amount, localData.sharpen.amount, localData.sharpen.radius, localData.sharpen.threshold, ], ); const applyPresetValue = (value: string) => { if (value === "custom") { setPresetSelection("custom"); return; } if (value.startsWith("builtin:")) { const key = value.replace("builtin:", ""); const preset = DETAIL_PRESETS[key]; if (!preset) return; const next = cloneAdjustmentData(preset); setPresetSelection(value); setLocalData(next); localDataRef.current = next; queueSave(); return; } if (value.startsWith("user:")) { const presetId = value.replace("user:", "") as Id<"adjustmentPresets">; const preset = userPresets.find((entry) => entry._id === presetId); if (!preset) return; const next = normalizeDetailAdjustData(preset.params); setPresetSelection(value); setLocalData(next); localDataRef.current = next; queueSave(); } }; const handleSavePreset = async () => { const name = window.prompt("Preset-Name"); if (!name) return; await savePreset({ name, nodeType: "detail-adjust", params: localData, }); toast.success("Preset gespeichert"); }; return (
Detail
{ const valueById = new Map(values.map((entry) => [entry.id, entry.value])); updateData((current) => ({ ...current, sharpen: { ...current.sharpen, amount: valueById.get("sharpen-amount") ?? current.sharpen.amount, radius: valueById.get("sharpen-radius") ?? current.sharpen.radius, threshold: valueById.get("sharpen-threshold") ?? current.sharpen.threshold, }, clarity: valueById.get("clarity") ?? current.clarity, denoise: { ...current.denoise, luminance: valueById.get("denoise-luminance") ?? current.denoise.luminance, color: valueById.get("denoise-color") ?? current.denoise.color, }, grain: { ...current.grain, amount: valueById.get("grain-amount") ?? current.grain.amount, }, preset: null, })); }} onAction={async (actionId) => { if (actionId === "apply") { queueSave(); } }} />
); }