fix: imports

This commit is contained in:
2026-03-12 11:29:26 +01:00
parent 7a6a4a43c5
commit 49a80e8d91
12 changed files with 30 additions and 28 deletions

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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 = <MenubarShortcut className="opacity-0 group-hover:opacity-100 transition-opacity"><Kbd>Insert</Kbd></MenubarShortcut>
const typeItems = typeBlocks.flatMap((block) =>
isGroup(block)
? block.items.map(({ label, snippet }) => (
? block.items.map(({ label, snippet }: InsertBlock) => (
<MenubarItem
key={label}
className="text-xs flex items-center group"
@@ -220,7 +222,7 @@ function ConfigNodeComponent({ id, data, width, height, selected }: Props) {
]
)
const templatingItems =
templatingGroup?.items.map(({ label, snippet }) => (
templatingGroup?.items.map(({ label, snippet }: InsertBlock) => (
<MenubarItem
key={label}
className="text-xs flex items-center group"