From 49a80e8d91f23ec208351759966232acb0a9b861 Mon Sep 17 00:00:00 2001 From: dtoro Date: Thu, 12 Mar 2026 11:29:26 +0100 Subject: [PATCH] fix: imports --- frontend/src/app/canvas/CanvasRoute.tsx | 2 +- frontend/src/app/kosmos/KosmosContext.tsx | 4 ++-- frontend/src/app/kosmos/KosmosSidebar.tsx | 2 +- frontend/src/app/kosmos/NewProjectDialog.tsx | 2 +- frontend/src/app/pleroma/PleromaPage.tsx | 8 ++++---- frontend/src/components/graph/AnimatedEdge.tsx | 6 +++--- .../src/components/graph/NodeFooterEdgeIndicators.tsx | 6 +++--- frontend/src/components/graph/NodeHeaderTitle.tsx | 6 +++--- frontend/src/components/graph/NodeHelpPopover.tsx | 6 +++--- frontend/src/components/graph/NodeMenubar.tsx | 6 +++--- frontend/src/components/nodes/config/ConfigNode.tsx | 8 +++++--- frontend/src/lib/iconMap.tsx | 2 +- 12 files changed, 30 insertions(+), 28 deletions(-) diff --git a/frontend/src/app/canvas/CanvasRoute.tsx b/frontend/src/app/canvas/CanvasRoute.tsx index 6c96c87..8ce9438 100644 --- a/frontend/src/app/canvas/CanvasRoute.tsx +++ b/frontend/src/app/canvas/CanvasRoute.tsx @@ -5,7 +5,7 @@ import React, { useEffect } from 'react' import { useParams } from 'react-router-dom' import { CanvasPage } from './CanvasPage' -import { usePlatform } from '../kosmos/KosmosContext' +import { usePlatform } from '@/app/kosmos/KosmosContext' export function CanvasRoute() { const { projectId } = useParams<{ projectId: string }>() diff --git a/frontend/src/app/kosmos/KosmosContext.tsx b/frontend/src/app/kosmos/KosmosContext.tsx index 8be216b..da1fd7e 100644 --- a/frontend/src/app/kosmos/KosmosContext.tsx +++ b/frontend/src/app/kosmos/KosmosContext.tsx @@ -5,8 +5,8 @@ import React, { createContext, useCallback, useContext, useMemo, useState } from 'react' import type { Project } from './types' -import { saveGraphToStorage } from '../pleroma/projectGraphStorage' -import { PROJECT_VERSION } from '../pleroma/projectGraphStorage' +import { saveGraphToStorage } from '@/app/pleroma/projectGraphStorage' +import { PROJECT_VERSION } from '@/app/pleroma/projectGraphStorage' const STORAGE_KEY = 'zui_platform_projects' const ORDER_STORAGE_KEY = 'zui_platform_project_order' diff --git a/frontend/src/app/kosmos/KosmosSidebar.tsx b/frontend/src/app/kosmos/KosmosSidebar.tsx index 894c557..05ffa80 100644 --- a/frontend/src/app/kosmos/KosmosSidebar.tsx +++ b/frontend/src/app/kosmos/KosmosSidebar.tsx @@ -21,7 +21,7 @@ import { Plus, Settings, Triangle } from 'lucide-react' import { Tooltip, TooltipContent, TooltipTrigger } from '@/components/ui/tooltip' import { useSidebar } from '@/components/ui/sidebar' import { usePlatform } from './KosmosContext' -import { getProjectIcon } from '../../lib/iconMap' +import { getProjectIcon } from '@/lib/iconMap' import { NewProjectDialog } from './NewProjectDialog' import { SettingsDialog } from './SettingsDialog' import type { Project } from './types' diff --git a/frontend/src/app/kosmos/NewProjectDialog.tsx b/frontend/src/app/kosmos/NewProjectDialog.tsx index ef033ee..bd9e12c 100644 --- a/frontend/src/app/kosmos/NewProjectDialog.tsx +++ b/frontend/src/app/kosmos/NewProjectDialog.tsx @@ -17,7 +17,7 @@ import { Input } from '@/components/ui/input' import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from '@/components/ui/select' import { Plus } from 'lucide-react' import { PROJECT_ICON_IDS, type Project, type ProjectIconId } from './types' -import { getProjectIcon } from '../../lib/iconMap' +import { getProjectIcon } from '@/lib/iconMap' type NewProjectDialogProps = { onCreate: (project: Project) => void diff --git a/frontend/src/app/pleroma/PleromaPage.tsx b/frontend/src/app/pleroma/PleromaPage.tsx index 7f2017f..43d7b64 100644 --- a/frontend/src/app/pleroma/PleromaPage.tsx +++ b/frontend/src/app/pleroma/PleromaPage.tsx @@ -55,8 +55,8 @@ import { Copy, } from 'lucide-react' import { Checkbox } from '@/components/ui/checkbox' -import { usePlatform } from '../kosmos/KosmosContext' -import { getProjectIcon } from '../../lib/iconMap' +import { usePlatform } from '@/app/kosmos/KosmosContext' +import { getProjectIcon } from '@/lib/iconMap' import { loadGraphFromStorage, saveGraphToStorage, @@ -65,9 +65,9 @@ import { PROJECT_VERSION, } from './projectGraphStorage' import { toast } from 'sonner' -import { NewProjectDialog } from '../kosmos/NewProjectDialog' +import { NewProjectDialog } from '@/app/kosmos/NewProjectDialog' import { ProjectsPageBackground } from './ProjectsPageBackground' -import type { Project } from '../kosmos/types' +import type { Project } from '@/app/kosmos/types' const PAGE_SIZE_OPTIONS = [10, 25, 50] as const type SortKey = 'lastEdited' | 'name' | 'created' diff --git a/frontend/src/components/graph/AnimatedEdge.tsx b/frontend/src/components/graph/AnimatedEdge.tsx index 40a69fa..0ce9beb 100644 --- a/frontend/src/components/graph/AnimatedEdge.tsx +++ b/frontend/src/components/graph/AnimatedEdge.tsx @@ -4,9 +4,9 @@ import { getBezierPath, type EdgeProps, } from '@xyflow/react' -import FlowContext from '../../lib/graph/flowContext' -import { getConnectionStatus, CONNECTION_STATUS_CLASS } from '../../lib/connectionStatus' -import { getConnectionLabelForTarget } from '../../lib/graph/nodeRegistry' +import FlowContext from '@/lib/graph/flowContext' +import { getConnectionStatus, CONNECTION_STATUS_CLASS } from '@/lib/graph/connectionStatus' +import { getConnectionLabelForTarget } from '@/lib/graph/nodeRegistry' const EDGE_STROKE_WIDTH = 2 const DOT_MARKER_R = 1.5 diff --git a/frontend/src/components/graph/NodeFooterEdgeIndicators.tsx b/frontend/src/components/graph/NodeFooterEdgeIndicators.tsx index 29e3acd..53ca0be 100644 --- a/frontend/src/components/graph/NodeFooterEdgeIndicators.tsx +++ b/frontend/src/components/graph/NodeFooterEdgeIndicators.tsx @@ -1,8 +1,8 @@ import React, { useContext, useMemo } from 'react' -import FlowContext from '../../lib/graph/flowContext' +import FlowContext from '@/lib/graph/flowContext' import { ArrowDownLeft, ArrowUpRight } from 'lucide-react' -import { NodeHelpPopover } from './NodeHelpPopover' -import { getNodeType, getNodeClassificationLabel } from '../../lib/graph/nodeRegistry' +import { NodeHelpPopover } from '@/components/graph/NodeHelpPopover' +import { getNodeType, getNodeClassificationLabel } from '@/lib/graph/nodeRegistry' type Props = { nodeId: string diff --git a/frontend/src/components/graph/NodeHeaderTitle.tsx b/frontend/src/components/graph/NodeHeaderTitle.tsx index b5b30a5..ec9e084 100644 --- a/frontend/src/components/graph/NodeHeaderTitle.tsx +++ b/frontend/src/components/graph/NodeHeaderTitle.tsx @@ -1,7 +1,7 @@ import React, { useCallback, useContext, useEffect, useRef, useState } from 'react' -import FlowContext from '../../lib/graph/flowContext' -import type { AppNode } from '../../lib/graph/nodeTypes' -import { replaceNodeIdInGraph } from '../../lib/graph/flowUtils' +import FlowContext from '@/lib/graph/flowContext' +import type { AppNode } from '@/lib/graph/nodeTypes' +import { replaceNodeIdInGraph } from '@/lib/graph/flowUtils' type Props = { nodeId: string diff --git a/frontend/src/components/graph/NodeHelpPopover.tsx b/frontend/src/components/graph/NodeHelpPopover.tsx index 6cfe196..4024e64 100644 --- a/frontend/src/components/graph/NodeHelpPopover.tsx +++ b/frontend/src/components/graph/NodeHelpPopover.tsx @@ -1,8 +1,8 @@ import React from 'react' import { HelpCircle } from 'lucide-react' -import { Popover, PopoverContent, PopoverTrigger } from '../ui/popover' -import { getNodeHelp } from '../../lib/graph/nodeRegistry' -import { cn } from '../../lib/utils' +import { Popover, PopoverContent, PopoverTrigger } from '@/components/ui/popover' +import { getNodeHelp } from '@/lib/graph/nodeRegistry' +import { cn } from '@/lib/utils' type Props = { nodeType: string diff --git a/frontend/src/components/graph/NodeMenubar.tsx b/frontend/src/components/graph/NodeMenubar.tsx index 86a801f..99626cc 100644 --- a/frontend/src/components/graph/NodeMenubar.tsx +++ b/frontend/src/components/graph/NodeMenubar.tsx @@ -1,5 +1,5 @@ import React, { useCallback, useContext } from 'react' -import FlowContext from '../../lib/graph/flowContext' +import FlowContext from '@/lib/graph/flowContext' import { Menubar, MenubarContent, @@ -11,8 +11,8 @@ import { MenubarSubContent, MenubarSubTrigger, MenubarTrigger, -} from '../ui/menubar' -import { Kbd } from '../ui/kbd' +} from '@/components/ui/menubar' +import { Kbd } from '@/components/ui/kbd' type Props = { nodeId: string nodeType: string diff --git a/frontend/src/components/nodes/config/ConfigNode.tsx b/frontend/src/components/nodes/config/ConfigNode.tsx index 202a73d..8a05871 100644 --- a/frontend/src/components/nodes/config/ConfigNode.tsx +++ b/frontend/src/components/nodes/config/ConfigNode.tsx @@ -20,6 +20,8 @@ import { getConfigTypeId, isGroup, type ConfigTypeId, + type InsertBlockGroup, + type InsertBlock, } from '@/lib/graph/configTypes' import { BaseNode, @@ -192,13 +194,13 @@ function ConfigNodeComponent({ id, data, width, height, selected }: Props) { const insertBlocksContent = useMemo(() => { const templatingGroup = configType.insertBlocks.find( - (b): b is import('../../lib/configTypes').InsertBlockGroup => isGroup(b) && b.label === 'Templating' + (b): b is InsertBlockGroup => isGroup(b) && b.label === 'Templating' ) const typeBlocks = configType.insertBlocks.filter((b) => !(isGroup(b) && b.label === 'Templating')) const insertShortcut = Insert const typeItems = typeBlocks.flatMap((block) => isGroup(block) - ? block.items.map(({ label, snippet }) => ( + ? block.items.map(({ label, snippet }: InsertBlock) => ( ( + templatingGroup?.items.map(({ label, snippet }: InsertBlock) => ( = { bird: Bird,