I can drag and drop items into the canvas

I
This commit is contained in:
2025-07-02 18:23:49 +02:00
parent 7f6a19813d
commit f4e8f7a16c
10 changed files with 555 additions and 12 deletions

View File

@@ -6,11 +6,32 @@ from core.settings_management import SettingsManager
logger = logging.getLogger("WorkflowsSettings")
# Data structures
@dataclass
class WorkflowComponent:
id: str
type: str
x: int
y: int
title: str
description: str
@dataclass
class Connection:
id: str
from_id: str
to_id: str
@dataclass
class WorkflowsDesignerSettings:
workflow_name: str
@dataclass
class WorkflowsDesignerState:
components: dict[str, WorkflowComponent] = field(default_factory=dict)
connections: list[Connection] = field(default_factory=list)
component_counter = 0
@dataclass
class WorkflowsSettings: