orcheo-canvas 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +26 -0
- package/README.md +32 -0
- package/components.json +21 -0
- package/dist/assets/index-C8cjvUcR.js +772 -0
- package/dist/assets/index-D_Md8dhB.css +1 -0
- package/dist/favicon.drawio +83 -0
- package/dist/favicon.png +0 -0
- package/dist/favicon.svg +4 -0
- package/dist/index.html +19 -0
- package/eslint.config.js +28 -0
- package/index.html +18 -0
- package/package.json +165 -0
- package/postcss.config.js +6 -0
- package/public/favicon.drawio +83 -0
- package/public/favicon.png +0 -0
- package/public/favicon.svg +4 -0
- package/src/App.test.tsx +10 -0
- package/src/App.tsx +43 -0
- package/src/assets/react.svg +1 -0
- package/src/design-system/ui/accordion.tsx +57 -0
- package/src/design-system/ui/alert-dialog.tsx +141 -0
- package/src/design-system/ui/alert.tsx +59 -0
- package/src/design-system/ui/aspect-ratio.tsx +7 -0
- package/src/design-system/ui/avatar.tsx +50 -0
- package/src/design-system/ui/badge.tsx +37 -0
- package/src/design-system/ui/breadcrumb.tsx +115 -0
- package/src/design-system/ui/button.tsx +58 -0
- package/src/design-system/ui/calendar.tsx +76 -0
- package/src/design-system/ui/card.tsx +83 -0
- package/src/design-system/ui/carousel/carousel-context.ts +17 -0
- package/src/design-system/ui/carousel/carousel-navigation.tsx +65 -0
- package/src/design-system/ui/carousel/carousel-provider.tsx +18 -0
- package/src/design-system/ui/carousel/carousel-root.tsx +119 -0
- package/src/design-system/ui/carousel/carousel-slides.tsx +49 -0
- package/src/design-system/ui/carousel/types.ts +24 -0
- package/src/design-system/ui/carousel.tsx +6 -0
- package/src/design-system/ui/chart-context-shared.ts +27 -0
- package/src/design-system/ui/chart-context.tsx +81 -0
- package/src/design-system/ui/chart-legend.tsx +68 -0
- package/src/design-system/ui/chart-tooltip.tsx +164 -0
- package/src/design-system/ui/chart-utils.ts +39 -0
- package/src/design-system/ui/chart.tsx +3 -0
- package/src/design-system/ui/checkbox.tsx +30 -0
- package/src/design-system/ui/collapsible.tsx +11 -0
- package/src/design-system/ui/command.tsx +153 -0
- package/src/design-system/ui/context-menu.tsx +200 -0
- package/src/design-system/ui/dialog.tsx +122 -0
- package/src/design-system/ui/drawer.tsx +118 -0
- package/src/design-system/ui/dropdown-menu.tsx +201 -0
- package/src/design-system/ui/form.tsx +180 -0
- package/src/design-system/ui/hover-card.tsx +29 -0
- package/src/design-system/ui/input-otp.tsx +71 -0
- package/src/design-system/ui/input.tsx +22 -0
- package/src/design-system/ui/label.tsx +26 -0
- package/src/design-system/ui/menubar-content.tsx +85 -0
- package/src/design-system/ui/menubar-items.tsx +123 -0
- package/src/design-system/ui/menubar-root.tsx +60 -0
- package/src/design-system/ui/menubar.tsx +26 -0
- package/src/design-system/ui/navigation-menu.tsx +129 -0
- package/src/design-system/ui/pagination.tsx +117 -0
- package/src/design-system/ui/popover.tsx +33 -0
- package/src/design-system/ui/progress.tsx +28 -0
- package/src/design-system/ui/radio-group.tsx +44 -0
- package/src/design-system/ui/resizable.tsx +45 -0
- package/src/design-system/ui/scroll-area.tsx +48 -0
- package/src/design-system/ui/select.tsx +159 -0
- package/src/design-system/ui/separator.tsx +31 -0
- package/src/design-system/ui/sheet.tsx +140 -0
- package/src/design-system/ui/sidebar/constants.ts +6 -0
- package/src/design-system/ui/sidebar/sidebar-context.ts +15 -0
- package/src/design-system/ui/sidebar/sidebar-layout.tsx +216 -0
- package/src/design-system/ui/sidebar/sidebar-menu/index.ts +11 -0
- package/src/design-system/ui/sidebar/sidebar-menu/menu-action.tsx +35 -0
- package/src/design-system/ui/sidebar/sidebar-menu/menu-badge.tsx +28 -0
- package/src/design-system/ui/sidebar/sidebar-menu/menu-button-variants.ts +25 -0
- package/src/design-system/ui/sidebar/sidebar-menu/menu-button.tsx +73 -0
- package/src/design-system/ui/sidebar/sidebar-menu/menu-skeleton.tsx +45 -0
- package/src/design-system/ui/sidebar/sidebar-menu/menu-sub.tsx +61 -0
- package/src/design-system/ui/sidebar/sidebar-menu/menu.tsx +33 -0
- package/src/design-system/ui/sidebar/sidebar-provider.tsx +132 -0
- package/src/design-system/ui/sidebar/sidebar-structure.tsx +152 -0
- package/src/design-system/ui/sidebar/use-sidebar.ts +14 -0
- package/src/design-system/ui/sidebar.ts +35 -0
- package/src/design-system/ui/skeleton.tsx +15 -0
- package/src/design-system/ui/slider.tsx +28 -0
- package/src/design-system/ui/sonner.tsx +31 -0
- package/src/design-system/ui/switch.tsx +29 -0
- package/src/design-system/ui/table.tsx +120 -0
- package/src/design-system/ui/tabs.tsx +55 -0
- package/src/design-system/ui/textarea.tsx +22 -0
- package/src/design-system/ui/toast.tsx +129 -0
- package/src/design-system/ui/toaster.tsx +35 -0
- package/src/design-system/ui/toggle-group.tsx +61 -0
- package/src/design-system/ui/toggle.tsx +46 -0
- package/src/design-system/ui/tooltip.tsx +32 -0
- package/src/features/account/components/settings/appearance-settings-tab.tsx +70 -0
- package/src/features/account/components/settings/application-settings-tab.tsx +146 -0
- package/src/features/account/components/settings/notification-settings-tab.tsx +157 -0
- package/src/features/account/components/settings/team-billing-settings-tab.tsx +164 -0
- package/src/features/account/components/theme-settings.tsx +228 -0
- package/src/features/account/components/use-theme-preferences.ts +111 -0
- package/src/features/account/pages/profile/components/profile-api-keys-tab.tsx +59 -0
- package/src/features/account/pages/profile/components/profile-general-tab.tsx +125 -0
- package/src/features/account/pages/profile/components/profile-security-tab.tsx +114 -0
- package/src/features/account/pages/profile/types.ts +8 -0
- package/src/features/account/pages/profile.tsx +64 -0
- package/src/features/account/pages/settings.tsx +58 -0
- package/src/features/auth/components/auth-logos.tsx +61 -0
- package/src/features/auth/components/auth-page.tsx +213 -0
- package/src/features/auth/pages/login.tsx +5 -0
- package/src/features/auth/pages/signup.tsx +5 -0
- package/src/features/chatkit/components/canvas-chat-bubble.tsx +324 -0
- package/src/features/chatkit/components/chatkit-surface.tsx +18 -0
- package/src/features/chatkit/components/public-chat-error-boundary.tsx +74 -0
- package/src/features/chatkit/components/public-chat-widget.tsx +138 -0
- package/src/features/chatkit/lib/chatkit-client.test.ts +98 -0
- package/src/features/chatkit/lib/chatkit-client.ts +175 -0
- package/src/features/chatkit/lib/chatkit-theme.ts +20 -0
- package/src/features/chatkit/lib/telemetry.ts +29 -0
- package/src/features/chatkit/lib/workflow-session.ts +69 -0
- package/src/features/chatkit/pages/public-chat.tsx +391 -0
- package/src/features/shared/components/chat-input/attachment-preview.tsx +78 -0
- package/src/features/shared/components/chat-input/chat-input-types.ts +13 -0
- package/src/features/shared/components/chat-input/emoji-picker.tsx +106 -0
- package/src/features/shared/components/chat-input.tsx +234 -0
- package/src/features/shared/components/chat-interface-options.ts +305 -0
- package/src/features/shared/components/chat-interface.tsx +162 -0
- package/src/features/shared/components/chat-interface.types.ts +36 -0
- package/src/features/shared/components/chat-message-attachments.tsx +122 -0
- package/src/features/shared/components/chat-message-markdown.ts +33 -0
- package/src/features/shared/components/chat-message.tsx +128 -0
- package/src/features/shared/components/top-navigation/account-menu.tsx +101 -0
- package/src/features/shared/components/top-navigation/command-palette-button.tsx +78 -0
- package/src/features/shared/components/top-navigation/project-switcher.tsx +64 -0
- package/src/features/shared/components/top-navigation/top-navigation-types.ts +16 -0
- package/src/features/shared/components/top-navigation/use-window-width.ts +24 -0
- package/src/features/shared/components/top-navigation/workflow-breadcrumbs.tsx +107 -0
- package/src/features/shared/components/top-navigation.tsx +52 -0
- package/src/features/support/components/support-chat-callout.tsx +40 -0
- package/src/features/support/components/support-header.tsx +53 -0
- package/src/features/support/components/support-help-tabs.tsx +172 -0
- package/src/features/support/components/support-resources.tsx +157 -0
- package/src/features/support/pages/help-support.tsx +72 -0
- package/src/features/workflow/components/canvas/annotations-layer/annotation-composer.tsx +109 -0
- package/src/features/workflow/components/canvas/annotations-layer/annotation-item.tsx +141 -0
- package/src/features/workflow/components/canvas/annotations-layer/annotation-list.tsx +30 -0
- package/src/features/workflow/components/canvas/annotations-layer/types.ts +10 -0
- package/src/features/workflow/components/canvas/annotations-layer.tsx +99 -0
- package/src/features/workflow/components/canvas/breakpoints-layer.tsx +148 -0
- package/src/features/workflow/components/canvas/connection-validator.tsx +230 -0
- package/src/features/workflow/components/canvas/custom-edge.tsx +154 -0
- package/src/features/workflow/components/canvas/edge-hover-context.tsx +11 -0
- package/src/features/workflow/components/canvas/mini-map.tsx +111 -0
- package/src/features/workflow/components/canvas/split-pane.tsx +165 -0
- package/src/features/workflow/components/canvas/time-travel-debugger.tsx +164 -0
- package/src/features/workflow/components/canvas/time-travel-header.tsx +45 -0
- package/src/features/workflow/components/canvas/time-travel-playback-controls.tsx +174 -0
- package/src/features/workflow/components/canvas/time-travel-state-details.tsx +63 -0
- package/src/features/workflow/components/canvas/time-travel-timeline.tsx +80 -0
- package/src/features/workflow/components/canvas/time-travel-types.ts +18 -0
- package/src/features/workflow/components/canvas/workflow-context-menu.tsx +179 -0
- package/src/features/workflow/components/canvas/workflow-controls/action-control-group.tsx +219 -0
- package/src/features/workflow/components/canvas/workflow-controls/history-control-group.tsx +84 -0
- package/src/features/workflow/components/canvas/workflow-controls/types.ts +18 -0
- package/src/features/workflow/components/canvas/workflow-controls.tsx +50 -0
- package/src/features/workflow/components/canvas/workflow-flow.tsx +214 -0
- package/src/features/workflow/components/canvas/workflow-search.tsx +152 -0
- package/src/features/workflow/components/dialogs/add-credential-dialog.tsx +233 -0
- package/src/features/workflow/components/dialogs/add-notification-channel-dialog.tsx +230 -0
- package/src/features/workflow/components/dialogs/command-palette-items.tsx +77 -0
- package/src/features/workflow/components/dialogs/command-palette-types.ts +13 -0
- package/src/features/workflow/components/dialogs/command-palette-utils.ts +44 -0
- package/src/features/workflow/components/dialogs/command-palette.tsx +195 -0
- package/src/features/workflow/components/dialogs/credential-access-badge.tsx +44 -0
- package/src/features/workflow/components/dialogs/credential-status-badge.tsx +45 -0
- package/src/features/workflow/components/dialogs/credentials-table.tsx +234 -0
- package/src/features/workflow/components/dialogs/credentials-vault.tsx +63 -0
- package/src/features/workflow/components/dialogs/notification-channel-card.tsx +106 -0
- package/src/features/workflow/components/dialogs/notification-event-toggles.tsx +95 -0
- package/src/features/workflow/components/dialogs/notification-settings.tsx +108 -0
- package/src/features/workflow/components/dialogs/notification-settings.types.ts +34 -0
- package/src/features/workflow/components/dialogs/use-command-palette-navigation.ts +60 -0
- package/src/features/workflow/components/dialogs/user-role-management/invite-user-dialog.tsx +152 -0
- package/src/features/workflow/components/dialogs/user-role-management/role-badges.tsx +83 -0
- package/src/features/workflow/components/dialogs/user-role-management/user-role-table.tsx +188 -0
- package/src/features/workflow/components/dialogs/user-role-management/user-role-types.ts +20 -0
- package/src/features/workflow/components/dialogs/user-role-management.tsx +61 -0
- package/src/features/workflow/components/dialogs/version-control-dialog.tsx +232 -0
- package/src/features/workflow/components/layouts/sidebar-layout.tsx +208 -0
- package/src/features/workflow/components/layouts/use-sidebar-resize.ts +83 -0
- package/src/features/workflow/components/layouts/workflow-page-layout.tsx +69 -0
- package/src/features/workflow/components/nodes/chat-trigger-node.tsx +106 -0
- package/src/features/workflow/components/nodes/group-node.tsx +195 -0
- package/src/features/workflow/components/nodes/node-label.tsx +105 -0
- package/src/features/workflow/components/nodes/start-end-node.tsx +68 -0
- package/src/features/workflow/components/nodes/sticky-note-node.tsx +246 -0
- package/src/features/workflow/components/nodes/workflow-node-controls.tsx +91 -0
- package/src/features/workflow/components/nodes/workflow-node-handle-config.ts +22 -0
- package/src/features/workflow/components/nodes/workflow-node-handles.tsx +79 -0
- package/src/features/workflow/components/nodes/workflow-node-style.tsx +50 -0
- package/src/features/workflow/components/nodes/workflow-node.tsx +147 -0
- package/src/features/workflow/components/nodes/workflow-node.types.ts +32 -0
- package/src/features/workflow/components/panels/node-inspector/config-panel.tsx +130 -0
- package/src/features/workflow/components/panels/node-inspector/index.tsx +225 -0
- package/src/features/workflow/components/panels/node-inspector/input-panel.tsx +199 -0
- package/src/features/workflow/components/panels/node-inspector/live-data-unavailable.tsx +26 -0
- package/src/features/workflow/components/panels/node-inspector/node-inspector-layout.tsx +251 -0
- package/src/features/workflow/components/panels/node-inspector/output-panel.tsx +165 -0
- package/src/features/workflow/components/panels/node-inspector/schema-fields.ts +39 -0
- package/src/features/workflow/components/panels/node-inspector/types.ts +31 -0
- package/src/features/workflow/components/panels/node-inspector/use-node-tester.ts +209 -0
- package/src/features/workflow/components/panels/node-inspector/utils.ts +82 -0
- package/src/features/workflow/components/panels/rjsf-basic-widgets.tsx +21 -0
- package/src/features/workflow/components/panels/rjsf-condition-widgets.tsx +241 -0
- package/src/features/workflow/components/panels/rjsf-input-widgets.tsx +105 -0
- package/src/features/workflow/components/panels/rjsf-templates.tsx +146 -0
- package/src/features/workflow/components/panels/rjsf-text-widgets.tsx +139 -0
- package/src/features/workflow/components/panels/rjsf-theme.tsx +16 -0
- package/src/features/workflow/components/panels/schema-dnd.ts +79 -0
- package/src/features/workflow/components/panels/sidebar-node-item.tsx +42 -0
- package/src/features/workflow/components/panels/sidebar-nodes/actions.tsx +34 -0
- package/src/features/workflow/components/panels/sidebar-nodes/ai.tsx +40 -0
- package/src/features/workflow/components/panels/sidebar-nodes/data.tsx +53 -0
- package/src/features/workflow/components/panels/sidebar-nodes/index.ts +2 -0
- package/src/features/workflow/components/panels/sidebar-nodes/logic.tsx +127 -0
- package/src/features/workflow/components/panels/sidebar-nodes/node-categories.tsx +19 -0
- package/src/features/workflow/components/panels/sidebar-nodes/node-lists.ts +71 -0
- package/src/features/workflow/components/panels/sidebar-nodes/special.tsx +44 -0
- package/src/features/workflow/components/panels/sidebar-nodes/triggers.tsx +44 -0
- package/src/features/workflow/components/panels/sidebar-nodes/visualization.tsx +33 -0
- package/src/features/workflow/components/panels/sidebar-panel.tsx +243 -0
- package/src/features/workflow/components/panels/sidebar-panel.types.ts +73 -0
- package/src/features/workflow/components/panels/variable-inspector-table.tsx +99 -0
- package/src/features/workflow/components/panels/variable-inspector-tree.tsx +193 -0
- package/src/features/workflow/components/panels/variable-inspector-types.ts +3 -0
- package/src/features/workflow/components/panels/variable-inspector.tsx +189 -0
- package/src/features/workflow/components/panels/workflow-diff-dialog.tsx +207 -0
- package/src/features/workflow/components/panels/workflow-execution-details.tsx +118 -0
- package/src/features/workflow/components/panels/workflow-execution-history.hooks.ts +116 -0
- package/src/features/workflow/components/panels/workflow-execution-history.tsx +150 -0
- package/src/features/workflow/components/panels/workflow-execution-history.types.ts +53 -0
- package/src/features/workflow/components/panels/workflow-execution-history.utils.ts +195 -0
- package/src/features/workflow/components/panels/workflow-execution-sidebar.tsx +221 -0
- package/src/features/workflow/components/panels/workflow-governance-panel/subworkflow-list-card.tsx +147 -0
- package/src/features/workflow/components/panels/workflow-governance-panel/types.ts +26 -0
- package/src/features/workflow/components/panels/workflow-governance-panel/validation-section.tsx +126 -0
- package/src/features/workflow/components/panels/workflow-governance-panel.tsx +43 -0
- package/src/features/workflow/components/panels/workflow-history-filters.tsx +62 -0
- package/src/features/workflow/components/panels/workflow-history-footer.tsx +28 -0
- package/src/features/workflow/components/panels/workflow-history-header.tsx +47 -0
- package/src/features/workflow/components/panels/workflow-history-table.tsx +148 -0
- package/src/features/workflow/components/panels/workflow-history.tsx +150 -0
- package/src/features/workflow/components/panels/workflow-node-gallery-data/categories.ts +11 -0
- package/src/features/workflow/components/panels/workflow-node-gallery-data/items/actions.tsx +39 -0
- package/src/features/workflow/components/panels/workflow-node-gallery-data/items/ai.tsx +39 -0
- package/src/features/workflow/components/panels/workflow-node-gallery-data/items/data.tsx +55 -0
- package/src/features/workflow/components/panels/workflow-node-gallery-data/items/logic.tsx +39 -0
- package/src/features/workflow/components/panels/workflow-node-gallery-data/items/special.tsx +50 -0
- package/src/features/workflow/components/panels/workflow-node-gallery-data/items/triggers.tsx +71 -0
- package/src/features/workflow/components/panels/workflow-node-gallery-data/types.ts +9 -0
- package/src/features/workflow/components/panels/workflow-node-gallery-data.tsx +21 -0
- package/src/features/workflow/components/panels/workflow-node-gallery.tsx +86 -0
- package/src/features/workflow/components/panels/workflow-tabs.tsx +49 -0
- package/src/features/workflow/components/trace/agent-prism/Avatar.tsx +146 -0
- package/src/features/workflow/components/trace/agent-prism/Badge.tsx +95 -0
- package/src/features/workflow/components/trace/agent-prism/BrandLogo.tsx +102 -0
- package/src/features/workflow/components/trace/agent-prism/Button.tsx +124 -0
- package/src/features/workflow/components/trace/agent-prism/CollapseAndExpandControls.tsx +45 -0
- package/src/features/workflow/components/trace/agent-prism/CollapsibleSection.tsx +124 -0
- package/src/features/workflow/components/trace/agent-prism/CopyButton.tsx +63 -0
- package/src/features/workflow/components/trace/agent-prism/DetailsView/DetailsView.tsx +143 -0
- package/src/features/workflow/components/trace/agent-prism/DetailsView/DetailsViewAttributesTab.tsx +125 -0
- package/src/features/workflow/components/trace/agent-prism/DetailsView/DetailsViewContentViewer.tsx +51 -0
- package/src/features/workflow/components/trace/agent-prism/DetailsView/DetailsViewHeader.tsx +100 -0
- package/src/features/workflow/components/trace/agent-prism/DetailsView/DetailsViewHeaderActions.tsx +21 -0
- package/src/features/workflow/components/trace/agent-prism/DetailsView/DetailsViewInputOutputTab.tsx +126 -0
- package/src/features/workflow/components/trace/agent-prism/DetailsView/DetailsViewJsonOutput.tsx +30 -0
- package/src/features/workflow/components/trace/agent-prism/DetailsView/DetailsViewRawDataTab.tsx +31 -0
- package/src/features/workflow/components/trace/agent-prism/IconButton.tsx +75 -0
- package/src/features/workflow/components/trace/agent-prism/PriceBadge.tsx +14 -0
- package/src/features/workflow/components/trace/agent-prism/SearchInput.tsx +17 -0
- package/src/features/workflow/components/trace/agent-prism/SpanBadge.tsx +52 -0
- package/src/features/workflow/components/trace/agent-prism/SpanCard/SpanCard.tsx +480 -0
- package/src/features/workflow/components/trace/agent-prism/SpanCard/SpanCardBadges.tsx +23 -0
- package/src/features/workflow/components/trace/agent-prism/SpanCard/SpanCardConnector.tsx +36 -0
- package/src/features/workflow/components/trace/agent-prism/SpanCard/SpanCardTimeline.tsx +60 -0
- package/src/features/workflow/components/trace/agent-prism/SpanCard/SpanCardToggle.tsx +39 -0
- package/src/features/workflow/components/trace/agent-prism/SpanStatus.tsx +80 -0
- package/src/features/workflow/components/trace/agent-prism/TabSelector.tsx +35 -0
- package/src/features/workflow/components/trace/agent-prism/Tabs.tsx +140 -0
- package/src/features/workflow/components/trace/agent-prism/TextInput.tsx +143 -0
- package/src/features/workflow/components/trace/agent-prism/TimestampBadge.tsx +22 -0
- package/src/features/workflow/components/trace/agent-prism/TokensBadge.tsx +27 -0
- package/src/features/workflow/components/trace/agent-prism/TraceList/TraceList.tsx +87 -0
- package/src/features/workflow/components/trace/agent-prism/TraceList/TraceListItem.tsx +86 -0
- package/src/features/workflow/components/trace/agent-prism/TraceList/TraceListItemHeader.tsx +37 -0
- package/src/features/workflow/components/trace/agent-prism/TraceViewer/TraceViewer.test.tsx +183 -0
- package/src/features/workflow/components/trace/agent-prism/TraceViewer/TraceViewer.tsx +207 -0
- package/src/features/workflow/components/trace/agent-prism/TraceViewer/TraceViewerDesktopLayout.tsx +99 -0
- package/src/features/workflow/components/trace/agent-prism/TraceViewer/TraceViewerMobileLayout.tsx +103 -0
- package/src/features/workflow/components/trace/agent-prism/TraceViewer/TraceViewerPlaceholder.tsx +5 -0
- package/src/features/workflow/components/trace/agent-prism/TraceViewer/TraceViewerSearchAndControls.tsx +30 -0
- package/src/features/workflow/components/trace/agent-prism/TraceViewer/TraceViewerTreeViewContainer.tsx +76 -0
- package/src/features/workflow/components/trace/agent-prism/TraceViewer/useTraceSelection.ts +186 -0
- package/src/features/workflow/components/trace/agent-prism/TreeView.tsx +73 -0
- package/src/features/workflow/components/trace/agent-prism/index.ts +7 -0
- package/src/features/workflow/components/trace/agent-prism/shared.ts +170 -0
- package/src/features/workflow/components/trace/agent-prism/theme/index.js +97 -0
- package/src/features/workflow/components/trace/agent-prism/theme/index.ts +101 -0
- package/src/features/workflow/components/trace/agent-prism/theme/theme.css +247 -0
- package/src/features/workflow/data/node-types.ts +32 -0
- package/src/features/workflow/data/templates/feedly-digest.ts +120 -0
- package/src/features/workflow/data/templates/index.ts +30 -0
- package/src/features/workflow/data/templates/mongodb-session.ts +59 -0
- package/src/features/workflow/data/templates/python-task.ts +59 -0
- package/src/features/workflow/data/templates/quickstart-welcome.ts +65 -0
- package/src/features/workflow/data/templates/rss-monitor.ts +60 -0
- package/src/features/workflow/data/templates/slack-broadcast.ts +58 -0
- package/src/features/workflow/data/templates/telegram-broadcast.ts +76 -0
- package/src/features/workflow/data/templates/template-owner.ts +7 -0
- package/src/features/workflow/data/workflow-data.ts +13 -0
- package/src/features/workflow/data/workflow-types.ts +47 -0
- package/src/features/workflow/lib/graph-config/constants.ts +7 -0
- package/src/features/workflow/lib/graph-config/edge-processing.ts +147 -0
- package/src/features/workflow/lib/graph-config/name-mapping.ts +30 -0
- package/src/features/workflow/lib/graph-config/node-handlers/branching.ts +171 -0
- package/src/features/workflow/lib/graph-config/node-handlers/index.ts +16 -0
- package/src/features/workflow/lib/graph-config/node-handlers/integrations.ts +201 -0
- package/src/features/workflow/lib/graph-config/node-handlers/set-variable.ts +124 -0
- package/src/features/workflow/lib/graph-config/node-processing.ts +163 -0
- package/src/features/workflow/lib/graph-config/serialization.ts +31 -0
- package/src/features/workflow/lib/graph-config/terminal-connections.ts +37 -0
- package/src/features/workflow/lib/graph-config/types.ts +84 -0
- package/src/features/workflow/lib/graph-config/utils.ts +65 -0
- package/src/features/workflow/lib/graph-config/workload.ts +29 -0
- package/src/features/workflow/lib/graph-config.integration.logic.test.ts +168 -0
- package/src/features/workflow/lib/graph-config.integration.start-end.test.ts +68 -0
- package/src/features/workflow/lib/graph-config.integration.variables.test.ts +67 -0
- package/src/features/workflow/lib/graph-config.ts +80 -0
- package/src/features/workflow/lib/graph-utils.ts +193 -0
- package/src/features/workflow/lib/node-icons.tsx +183 -0
- package/src/features/workflow/lib/node-schemas/ai-nodes.ts +81 -0
- package/src/features/workflow/lib/node-schemas/base.ts +154 -0
- package/src/features/workflow/lib/node-schemas/condition-operators.ts +111 -0
- package/src/features/workflow/lib/node-schemas/index.ts +73 -0
- package/src/features/workflow/lib/node-schemas/integration-nodes.ts +153 -0
- package/src/features/workflow/lib/node-schemas/logic-nodes.ts +110 -0
- package/src/features/workflow/lib/node-schemas/state-nodes.ts +45 -0
- package/src/features/workflow/lib/node-schemas/trigger-nodes.ts +218 -0
- package/src/features/workflow/lib/node-schemas/ui.ts +88 -0
- package/src/features/workflow/lib/python-node.ts +23 -0
- package/src/features/workflow/lib/workflow-diff.ts +191 -0
- package/src/features/workflow/lib/workflow-execution-builders.ts +101 -0
- package/src/features/workflow/lib/workflow-execution-formatters.ts +145 -0
- package/src/features/workflow/lib/workflow-execution-storage.ts +60 -0
- package/src/features/workflow/lib/workflow-execution.types.ts +38 -0
- package/src/features/workflow/lib/workflow-storage-api.ts +122 -0
- package/src/features/workflow/lib/workflow-storage-helpers.ts +207 -0
- package/src/features/workflow/lib/workflow-storage-versioning.ts +71 -0
- package/src/features/workflow/lib/workflow-storage.constants.ts +21 -0
- package/src/features/workflow/lib/workflow-storage.list.integration.test.ts +70 -0
- package/src/features/workflow/lib/workflow-storage.sanitized-save.integration.test.ts +116 -0
- package/src/features/workflow/lib/workflow-storage.save.integration.test.ts +124 -0
- package/src/features/workflow/lib/workflow-storage.test-helpers.ts +29 -0
- package/src/features/workflow/lib/workflow-storage.ts +183 -0
- package/src/features/workflow/lib/workflow-storage.types.ts +76 -0
- package/src/features/workflow/pages/workflow-canvas/components/canvas-tab-content.tsx +157 -0
- package/src/features/workflow/pages/workflow-canvas/components/execution-tab-content.tsx +57 -0
- package/src/features/workflow/pages/workflow-canvas/components/readiness-tab-content.tsx +49 -0
- package/src/features/workflow/pages/workflow-canvas/components/settings-tab-content.tsx +160 -0
- package/src/features/workflow/pages/workflow-canvas/components/trace-tab-content.test.tsx +204 -0
- package/src/features/workflow/pages/workflow-canvas/components/trace-tab-content.tsx +202 -0
- package/src/features/workflow/pages/workflow-canvas/components/workflow-canvas-layout.tsx +179 -0
- package/src/features/workflow/pages/workflow-canvas/handlers/credentials.ts +158 -0
- package/src/features/workflow/pages/workflow-canvas/handlers/subworkflows.ts +227 -0
- package/src/features/workflow/pages/workflow-canvas/handlers/validation.ts +175 -0
- package/src/features/workflow/pages/workflow-canvas/helpers/clipboard.ts +85 -0
- package/src/features/workflow/pages/workflow-canvas/helpers/execution.ts +39 -0
- package/src/features/workflow/pages/workflow-canvas/helpers/id.ts +15 -0
- package/src/features/workflow/pages/workflow-canvas/helpers/node-identity.ts +157 -0
- package/src/features/workflow/pages/workflow-canvas/helpers/runtime-cache.ts +70 -0
- package/src/features/workflow/pages/workflow-canvas/helpers/sticky-notes.ts +52 -0
- package/src/features/workflow/pages/workflow-canvas/helpers/subworkflow-library.ts +12 -0
- package/src/features/workflow/pages/workflow-canvas/helpers/subworkflows/content-qa.ts +88 -0
- package/src/features/workflow/pages/workflow-canvas/helpers/subworkflows/customer-onboarding.ts +67 -0
- package/src/features/workflow/pages/workflow-canvas/helpers/subworkflows/incident-response.ts +88 -0
- package/src/features/workflow/pages/workflow-canvas/helpers/subworkflows/types.ts +9 -0
- package/src/features/workflow/pages/workflow-canvas/helpers/trace.ts +552 -0
- package/src/features/workflow/pages/workflow-canvas/helpers/transformers.ts +140 -0
- package/src/features/workflow/pages/workflow-canvas/helpers/types.ts +122 -0
- package/src/features/workflow/pages/workflow-canvas/helpers/validation.ts +57 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/controller/build-layout-props.ts +229 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/controller/use-workflow-canvas-controller.ts +26 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/controller/use-workflow-canvas-core.ts +188 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/controller/use-workflow-canvas-execution.ts +269 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/controller/use-workflow-canvas-lifecycle.ts +44 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/controller/use-workflow-canvas-resources.ts +92 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/execution-canvas-updater.ts +79 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/execution-log-helpers.ts +75 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/execution-node-status.ts +46 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/execution-record-updater.ts +118 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/execution-record.ts +69 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/execution-runtime-updates.ts +84 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/node-factory.ts +166 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/use-canvas-ui-state.ts +19 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/use-decorated-nodes.ts +115 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/use-execution-history-handlers.ts +187 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/use-execution-trace.ts +302 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/use-execution-updates.ts +143 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/use-initial-fit-view.ts +27 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/use-node-creation.ts +133 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/use-node-inspector-handlers.ts +194 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/use-pause-workflow.ts +95 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/use-run-workflow.ts +139 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/use-runtime-cache-sync.ts +52 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/use-subworkflow-state.ts +47 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/use-workflow-canvas-history.ts +233 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/use-workflow-chat.ts +284 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/use-workflow-clipboard.ts +218 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/use-workflow-credentials.ts +139 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/use-workflow-duplicate-nodes.ts +140 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/use-workflow-execution-state.ts +20 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/use-workflow-file-transfer.ts +203 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/use-workflow-keybindings.ts +126 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/use-workflow-loader.ts +174 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/use-workflow-metadata-state.ts +28 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/use-workflow-node-deletion.ts +167 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/use-workflow-node-state.ts +89 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/use-workflow-saver.ts +204 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/use-workflow-search.ts +167 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/use-workflow-sticky-notes.ts +89 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/use-workflow-storage-listener.ts +51 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/use-workflow-validation-state.ts +22 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/workflow-clipboard-copy.ts +96 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/workflow-clipboard-paste.ts +109 -0
- package/src/features/workflow/pages/workflow-canvas/hooks/workflow-runner-websocket.ts +146 -0
- package/src/features/workflow/pages/workflow-canvas.test.tsx +194 -0
- package/src/features/workflow/pages/workflow-canvas.tsx +23 -0
- package/src/features/workflow/pages/workflow-execution-details.tsx +194 -0
- package/src/features/workflow/pages/workflow-gallery/types.ts +21 -0
- package/src/features/workflow/pages/workflow-gallery/use-workflow-gallery-actions.ts +219 -0
- package/src/features/workflow/pages/workflow-gallery/use-workflow-gallery-state.ts +204 -0
- package/src/features/workflow/pages/workflow-gallery/use-workflow-gallery.ts +21 -0
- package/src/features/workflow/pages/workflow-gallery/workflow-card.tsx +222 -0
- package/src/features/workflow/pages/workflow-gallery/workflow-create-dialogs.tsx +114 -0
- package/src/features/workflow/pages/workflow-gallery/workflow-filter-popover.tsx +190 -0
- package/src/features/workflow/pages/workflow-gallery/workflow-gallery-header.tsx +134 -0
- package/src/features/workflow/pages/workflow-gallery/workflow-gallery-tabs.tsx +93 -0
- package/src/features/workflow/pages/workflow-gallery/workflow-thumbnail.tsx +82 -0
- package/src/features/workflow/pages/workflow-gallery.tsx +100 -0
- package/src/features/workflow/types/credential-vault.ts +36 -0
- package/src/hooks/use-color-scheme.ts +77 -0
- package/src/hooks/use-credential-vault.ts +245 -0
- package/src/hooks/use-mobile.tsx +21 -0
- package/src/hooks/use-toast.ts +182 -0
- package/src/index.css +95 -0
- package/src/lib/api.test.ts +135 -0
- package/src/lib/api.ts +45 -0
- package/src/lib/config.ts +84 -0
- package/src/lib/theme.ts +71 -0
- package/src/lib/utils.ts +6 -0
- package/src/main.tsx +24 -0
- package/src/setupTests.ts +5 -0
- package/src/test-utils/chatkit-stub.ts +15 -0
- package/src/testing/mocks/backend/credentials.ts +60 -0
- package/src/testing/mocks/backend/request-utils.ts +32 -0
- package/src/testing/mocks/backend/workflows.ts +235 -0
- package/src/testing/mocks/backend.ts +52 -0
- package/src/testing/mocks/chatkit.ts +14 -0
- package/src/vite-env.d.ts +10 -0
- package/tailwind.config.js +61 -0
- package/tsconfig.app.json +30 -0
- package/tsconfig.json +16 -0
- package/tsconfig.node.json +20 -0
- package/vite.config.ts +30 -0
|
@@ -0,0 +1,552 @@
|
|
|
1
|
+
import {
|
|
2
|
+
flattenSpans,
|
|
3
|
+
openTelemetrySpanAdapter,
|
|
4
|
+
} from "@evilmartians/agent-prism-data";
|
|
5
|
+
import type {
|
|
6
|
+
OpenTelemetryDocument,
|
|
7
|
+
OpenTelemetryEvent,
|
|
8
|
+
OpenTelemetrySpan,
|
|
9
|
+
TraceRecord,
|
|
10
|
+
TraceSpan,
|
|
11
|
+
TraceSpanAttribute,
|
|
12
|
+
TraceSpanAttributeValue,
|
|
13
|
+
} from "@evilmartians/agent-prism-types";
|
|
14
|
+
import { nanoid } from "nanoid";
|
|
15
|
+
|
|
16
|
+
import type { BadgeProps } from "@features/workflow/components/trace/agent-prism/Badge";
|
|
17
|
+
import type { TraceViewerData } from "@features/workflow/components/trace/agent-prism";
|
|
18
|
+
|
|
19
|
+
export interface TraceSpanStatusResponse {
|
|
20
|
+
code: "OK" | "ERROR" | "UNSET";
|
|
21
|
+
message?: string | null;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export interface TraceSpanEventResponse {
|
|
25
|
+
name: string;
|
|
26
|
+
time?: string | null;
|
|
27
|
+
attributes?: Record<string, unknown>;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
export interface TraceSpanResponse {
|
|
31
|
+
span_id: string;
|
|
32
|
+
parent_span_id?: string | null;
|
|
33
|
+
name?: string | null;
|
|
34
|
+
start_time?: string | null;
|
|
35
|
+
end_time?: string | null;
|
|
36
|
+
attributes: Record<string, unknown>;
|
|
37
|
+
events?: TraceSpanEventResponse[];
|
|
38
|
+
status?: TraceSpanStatusResponse;
|
|
39
|
+
links?: Array<Record<string, unknown>>;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
export interface TraceExecutionMetadataResponse {
|
|
43
|
+
id: string;
|
|
44
|
+
status: string;
|
|
45
|
+
started_at?: string | null;
|
|
46
|
+
finished_at?: string | null;
|
|
47
|
+
trace_id?: string | null;
|
|
48
|
+
token_usage?: {
|
|
49
|
+
input?: number;
|
|
50
|
+
output?: number;
|
|
51
|
+
};
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
export interface TracePageInfoResponse {
|
|
55
|
+
has_next_page: boolean;
|
|
56
|
+
cursor?: string | null;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
export interface TraceResponse {
|
|
60
|
+
execution: TraceExecutionMetadataResponse;
|
|
61
|
+
spans: TraceSpanResponse[];
|
|
62
|
+
page_info: TracePageInfoResponse;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
export interface TraceUpdateMessage {
|
|
66
|
+
type: "trace:update";
|
|
67
|
+
execution_id: string;
|
|
68
|
+
trace_id: string;
|
|
69
|
+
spans: TraceSpanResponse[];
|
|
70
|
+
complete: boolean;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
export type TraceEntryStatus = "idle" | "loading" | "ready" | "error";
|
|
74
|
+
|
|
75
|
+
export interface TraceArtifactMetadata {
|
|
76
|
+
id: string;
|
|
77
|
+
downloadUrl?: string;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
export interface TraceSpanMetadata {
|
|
81
|
+
artifacts: TraceArtifactMetadata[];
|
|
82
|
+
nodeId?: string;
|
|
83
|
+
nodeKind?: string;
|
|
84
|
+
nodeStatus?: string;
|
|
85
|
+
tokenInput?: number;
|
|
86
|
+
tokenOutput?: number;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
export interface ExecutionTraceEntry {
|
|
90
|
+
executionId: string;
|
|
91
|
+
traceId: string | null;
|
|
92
|
+
metadata?: TraceExecutionMetadataResponse;
|
|
93
|
+
spansById: Record<string, TraceSpanResponse>;
|
|
94
|
+
spanMetadata: Record<string, TraceSpanMetadata>;
|
|
95
|
+
status: TraceEntryStatus;
|
|
96
|
+
error?: string;
|
|
97
|
+
isComplete: boolean;
|
|
98
|
+
lastUpdatedAt?: string;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
export type ExecutionTraceState = Record<string, ExecutionTraceEntry>;
|
|
102
|
+
|
|
103
|
+
export interface BuildViewerDataOptions {
|
|
104
|
+
resolveArtifactUrl?: (artifactId: string) => string;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
const STATUS_CODE_MAP: Record<TraceSpanStatusResponse["code"], string> = {
|
|
108
|
+
OK: "STATUS_CODE_OK",
|
|
109
|
+
ERROR: "STATUS_CODE_ERROR",
|
|
110
|
+
UNSET: "STATUS_CODE_UNSET",
|
|
111
|
+
};
|
|
112
|
+
|
|
113
|
+
const MS_TO_NANO = BigInt(1_000_000);
|
|
114
|
+
|
|
115
|
+
const ensureDateNano = (value?: string | null): string => {
|
|
116
|
+
if (!value) {
|
|
117
|
+
return "0";
|
|
118
|
+
}
|
|
119
|
+
const ms = Date.parse(value);
|
|
120
|
+
if (Number.isNaN(ms)) {
|
|
121
|
+
return "0";
|
|
122
|
+
}
|
|
123
|
+
return (BigInt(ms) * MS_TO_NANO).toString();
|
|
124
|
+
};
|
|
125
|
+
|
|
126
|
+
const toAttributeValue = (value: unknown): TraceSpanAttributeValue => {
|
|
127
|
+
if (typeof value === "string") {
|
|
128
|
+
return { stringValue: value };
|
|
129
|
+
}
|
|
130
|
+
if (typeof value === "number" && Number.isFinite(value)) {
|
|
131
|
+
return { intValue: String(value) };
|
|
132
|
+
}
|
|
133
|
+
if (typeof value === "boolean") {
|
|
134
|
+
return { boolValue: value };
|
|
135
|
+
}
|
|
136
|
+
if (value == null) {
|
|
137
|
+
return { stringValue: "" };
|
|
138
|
+
}
|
|
139
|
+
if (typeof value === "object") {
|
|
140
|
+
return { stringValue: JSON.stringify(value) };
|
|
141
|
+
}
|
|
142
|
+
return { stringValue: String(value) };
|
|
143
|
+
};
|
|
144
|
+
|
|
145
|
+
const toAttributes = (
|
|
146
|
+
attributes: Record<string, unknown>,
|
|
147
|
+
): TraceSpanAttribute[] =>
|
|
148
|
+
Object.entries(attributes).map(([key, value]) => ({
|
|
149
|
+
key,
|
|
150
|
+
value: toAttributeValue(value),
|
|
151
|
+
}));
|
|
152
|
+
|
|
153
|
+
const toEvents = (
|
|
154
|
+
events: TraceSpanEventResponse[] | undefined,
|
|
155
|
+
): OpenTelemetryEvent[] | undefined => {
|
|
156
|
+
if (!events?.length) {
|
|
157
|
+
return undefined;
|
|
158
|
+
}
|
|
159
|
+
return events.map((event) => ({
|
|
160
|
+
name: event.name,
|
|
161
|
+
timeUnixNano: ensureDateNano(event.time),
|
|
162
|
+
attributes: event.attributes ? toAttributes(event.attributes) : undefined,
|
|
163
|
+
}));
|
|
164
|
+
};
|
|
165
|
+
|
|
166
|
+
const createSpanMetadata = (span: TraceSpanResponse): TraceSpanMetadata => {
|
|
167
|
+
const artifactsValue = span.attributes?.["orcheo.artifact.ids"];
|
|
168
|
+
const artifacts: TraceArtifactMetadata[] = Array.isArray(artifactsValue)
|
|
169
|
+
? artifactsValue
|
|
170
|
+
.map((value) => ({ id: String(value) }))
|
|
171
|
+
.filter((item) => item.id.trim().length > 0)
|
|
172
|
+
: [];
|
|
173
|
+
|
|
174
|
+
const metadata: TraceSpanMetadata = {
|
|
175
|
+
artifacts,
|
|
176
|
+
};
|
|
177
|
+
|
|
178
|
+
const nodeId = span.attributes?.["orcheo.node.id"];
|
|
179
|
+
if (nodeId) {
|
|
180
|
+
metadata.nodeId = String(nodeId);
|
|
181
|
+
}
|
|
182
|
+
const nodeKind = span.attributes?.["orcheo.node.kind"];
|
|
183
|
+
if (nodeKind) {
|
|
184
|
+
metadata.nodeKind = String(nodeKind);
|
|
185
|
+
}
|
|
186
|
+
const nodeStatus = span.attributes?.["orcheo.node.status"];
|
|
187
|
+
if (nodeStatus) {
|
|
188
|
+
metadata.nodeStatus = String(nodeStatus);
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
const input = span.attributes?.["orcheo.token.input"];
|
|
192
|
+
const output = span.attributes?.["orcheo.token.output"];
|
|
193
|
+
if (typeof input === "number" && Number.isFinite(input)) {
|
|
194
|
+
metadata.tokenInput = input;
|
|
195
|
+
}
|
|
196
|
+
if (typeof output === "number" && Number.isFinite(output)) {
|
|
197
|
+
metadata.tokenOutput = output;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
return metadata;
|
|
201
|
+
};
|
|
202
|
+
|
|
203
|
+
const mergeAttributes = (
|
|
204
|
+
existing: Record<string, unknown>,
|
|
205
|
+
incoming: Record<string, unknown>,
|
|
206
|
+
): Record<string, unknown> => ({
|
|
207
|
+
...existing,
|
|
208
|
+
...incoming,
|
|
209
|
+
});
|
|
210
|
+
|
|
211
|
+
const mergeEvents = (
|
|
212
|
+
existing: TraceSpanEventResponse[] | undefined,
|
|
213
|
+
incoming: TraceSpanEventResponse[] | undefined,
|
|
214
|
+
): TraceSpanEventResponse[] | undefined => {
|
|
215
|
+
if (!existing?.length) {
|
|
216
|
+
return incoming?.slice();
|
|
217
|
+
}
|
|
218
|
+
if (!incoming?.length) {
|
|
219
|
+
return existing;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
const combined = [...existing];
|
|
223
|
+
const seen = new Set(combined.map((event) => JSON.stringify(event)));
|
|
224
|
+
for (const event of incoming) {
|
|
225
|
+
const key = JSON.stringify(event);
|
|
226
|
+
if (!seen.has(key)) {
|
|
227
|
+
combined.push(event);
|
|
228
|
+
seen.add(key);
|
|
229
|
+
}
|
|
230
|
+
}
|
|
231
|
+
return combined;
|
|
232
|
+
};
|
|
233
|
+
|
|
234
|
+
const mergeSpan = (
|
|
235
|
+
existing: TraceSpanResponse | undefined,
|
|
236
|
+
update: TraceSpanResponse,
|
|
237
|
+
): TraceSpanResponse => {
|
|
238
|
+
if (!existing) {
|
|
239
|
+
return { ...update, attributes: { ...update.attributes } };
|
|
240
|
+
}
|
|
241
|
+
return {
|
|
242
|
+
span_id: update.span_id || existing.span_id,
|
|
243
|
+
parent_span_id:
|
|
244
|
+
update.parent_span_id !== undefined
|
|
245
|
+
? update.parent_span_id
|
|
246
|
+
: existing.parent_span_id,
|
|
247
|
+
name: update.name ?? existing.name,
|
|
248
|
+
start_time: update.start_time ?? existing.start_time,
|
|
249
|
+
end_time: update.end_time ?? existing.end_time,
|
|
250
|
+
attributes: update.attributes
|
|
251
|
+
? mergeAttributes(existing.attributes, update.attributes)
|
|
252
|
+
: existing.attributes,
|
|
253
|
+
events: mergeEvents(existing.events, update.events),
|
|
254
|
+
status: update.status ?? existing.status,
|
|
255
|
+
links: update.links ?? existing.links,
|
|
256
|
+
};
|
|
257
|
+
};
|
|
258
|
+
|
|
259
|
+
export const createEmptyTraceEntry = (
|
|
260
|
+
executionId: string,
|
|
261
|
+
): ExecutionTraceEntry => ({
|
|
262
|
+
executionId,
|
|
263
|
+
traceId: null,
|
|
264
|
+
metadata: undefined,
|
|
265
|
+
spansById: {},
|
|
266
|
+
spanMetadata: {},
|
|
267
|
+
status: "idle",
|
|
268
|
+
error: undefined,
|
|
269
|
+
isComplete: false,
|
|
270
|
+
lastUpdatedAt: undefined,
|
|
271
|
+
});
|
|
272
|
+
|
|
273
|
+
const updateEntryWithSpan = (
|
|
274
|
+
entry: ExecutionTraceEntry,
|
|
275
|
+
span: TraceSpanResponse,
|
|
276
|
+
): ExecutionTraceEntry => {
|
|
277
|
+
const merged = mergeSpan(entry.spansById[span.span_id], span);
|
|
278
|
+
return {
|
|
279
|
+
...entry,
|
|
280
|
+
spansById: {
|
|
281
|
+
...entry.spansById,
|
|
282
|
+
[merged.span_id]: merged,
|
|
283
|
+
},
|
|
284
|
+
spanMetadata: {
|
|
285
|
+
...entry.spanMetadata,
|
|
286
|
+
[merged.span_id]: createSpanMetadata(merged),
|
|
287
|
+
},
|
|
288
|
+
lastUpdatedAt: new Date().toISOString(),
|
|
289
|
+
};
|
|
290
|
+
};
|
|
291
|
+
|
|
292
|
+
export const applyTraceResponse = (
|
|
293
|
+
entry: ExecutionTraceEntry,
|
|
294
|
+
response: TraceResponse,
|
|
295
|
+
): ExecutionTraceEntry => {
|
|
296
|
+
let next = {
|
|
297
|
+
...entry,
|
|
298
|
+
status: "ready" as TraceEntryStatus,
|
|
299
|
+
metadata: response.execution,
|
|
300
|
+
traceId: response.execution.trace_id ?? entry.traceId,
|
|
301
|
+
error: undefined,
|
|
302
|
+
isComplete:
|
|
303
|
+
entry.isComplete ||
|
|
304
|
+
Boolean(response.execution.finished_at) ||
|
|
305
|
+
response.page_info.has_next_page === false,
|
|
306
|
+
};
|
|
307
|
+
|
|
308
|
+
for (const span of response.spans) {
|
|
309
|
+
next = updateEntryWithSpan(next, span);
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
return next;
|
|
313
|
+
};
|
|
314
|
+
|
|
315
|
+
export const applyTraceUpdate = (
|
|
316
|
+
entry: ExecutionTraceEntry,
|
|
317
|
+
update: TraceUpdateMessage,
|
|
318
|
+
): ExecutionTraceEntry => {
|
|
319
|
+
let next: ExecutionTraceEntry = {
|
|
320
|
+
...entry,
|
|
321
|
+
traceId: update.trace_id,
|
|
322
|
+
lastUpdatedAt: new Date().toISOString(),
|
|
323
|
+
};
|
|
324
|
+
for (const span of update.spans) {
|
|
325
|
+
next = updateEntryWithSpan(next, span);
|
|
326
|
+
}
|
|
327
|
+
if (update.complete) {
|
|
328
|
+
next = {
|
|
329
|
+
...next,
|
|
330
|
+
isComplete: true,
|
|
331
|
+
};
|
|
332
|
+
}
|
|
333
|
+
return next;
|
|
334
|
+
};
|
|
335
|
+
|
|
336
|
+
const toOpenTelemetrySpan = (
|
|
337
|
+
traceId: string,
|
|
338
|
+
span: TraceSpanResponse,
|
|
339
|
+
): OpenTelemetrySpan => ({
|
|
340
|
+
traceId,
|
|
341
|
+
spanId: span.span_id,
|
|
342
|
+
parentSpanId: span.parent_span_id ?? undefined,
|
|
343
|
+
name: span.name ?? "span",
|
|
344
|
+
kind: "SPAN_KIND_INTERNAL",
|
|
345
|
+
startTimeUnixNano: ensureDateNano(span.start_time),
|
|
346
|
+
endTimeUnixNano: ensureDateNano(span.end_time ?? span.start_time),
|
|
347
|
+
attributes: toAttributes(span.attributes ?? {}),
|
|
348
|
+
status: {
|
|
349
|
+
code: STATUS_CODE_MAP[span.status?.code ?? "UNSET"],
|
|
350
|
+
message: span.status?.message ?? undefined,
|
|
351
|
+
},
|
|
352
|
+
flags: 0,
|
|
353
|
+
events: toEvents(span.events),
|
|
354
|
+
links: undefined,
|
|
355
|
+
});
|
|
356
|
+
|
|
357
|
+
const buildTraceRecord = (
|
|
358
|
+
entry: ExecutionTraceEntry,
|
|
359
|
+
spans: TraceSpan[],
|
|
360
|
+
): TraceRecord => {
|
|
361
|
+
const startedAt = entry.metadata?.started_at
|
|
362
|
+
? Date.parse(entry.metadata.started_at)
|
|
363
|
+
: undefined;
|
|
364
|
+
const finishedAt = entry.metadata?.finished_at
|
|
365
|
+
? Date.parse(entry.metadata.finished_at)
|
|
366
|
+
: undefined;
|
|
367
|
+
const durationMs =
|
|
368
|
+
startedAt && finishedAt ? Math.max(finishedAt - startedAt, 0) : 0;
|
|
369
|
+
const totalTokens =
|
|
370
|
+
(entry.metadata?.token_usage?.input ?? 0) +
|
|
371
|
+
(entry.metadata?.token_usage?.output ?? 0);
|
|
372
|
+
|
|
373
|
+
return {
|
|
374
|
+
id: entry.executionId,
|
|
375
|
+
name: entry.metadata?.trace_id ?? entry.executionId,
|
|
376
|
+
spansCount: spans.length,
|
|
377
|
+
durationMs,
|
|
378
|
+
agentDescription: entry.metadata?.status ?? "unknown",
|
|
379
|
+
totalTokens,
|
|
380
|
+
startTime: startedAt,
|
|
381
|
+
};
|
|
382
|
+
};
|
|
383
|
+
|
|
384
|
+
const attachMetadataToSpan = (
|
|
385
|
+
span: TraceSpan,
|
|
386
|
+
metadata: Record<string, TraceSpanMetadata>,
|
|
387
|
+
resolver?: (artifactId: string) => string,
|
|
388
|
+
): TraceSpan => {
|
|
389
|
+
const meta = metadata[span.id];
|
|
390
|
+
if (meta) {
|
|
391
|
+
span.metadata = {
|
|
392
|
+
...meta,
|
|
393
|
+
artifacts: meta.artifacts.map((artifact) => {
|
|
394
|
+
if (!resolver) {
|
|
395
|
+
return { id: artifact.id };
|
|
396
|
+
}
|
|
397
|
+
try {
|
|
398
|
+
return {
|
|
399
|
+
id: artifact.id,
|
|
400
|
+
downloadUrl: resolver(artifact.id),
|
|
401
|
+
};
|
|
402
|
+
} catch {
|
|
403
|
+
return { id: artifact.id };
|
|
404
|
+
}
|
|
405
|
+
}),
|
|
406
|
+
};
|
|
407
|
+
}
|
|
408
|
+
if (span.children?.length) {
|
|
409
|
+
span.children = span.children.map((child) =>
|
|
410
|
+
attachMetadataToSpan(child, metadata, resolver),
|
|
411
|
+
);
|
|
412
|
+
}
|
|
413
|
+
return span;
|
|
414
|
+
};
|
|
415
|
+
|
|
416
|
+
const sortChildrenByStart = (span: TraceSpan): TraceSpan => {
|
|
417
|
+
if (span.children?.length) {
|
|
418
|
+
span.children = span.children
|
|
419
|
+
.map((child) => sortChildrenByStart(child))
|
|
420
|
+
.sort((a, b) => a.startTime.getTime() - b.startTime.getTime());
|
|
421
|
+
}
|
|
422
|
+
return span;
|
|
423
|
+
};
|
|
424
|
+
|
|
425
|
+
export const buildTraceViewerData = (
|
|
426
|
+
entry: ExecutionTraceEntry,
|
|
427
|
+
options: BuildViewerDataOptions = {},
|
|
428
|
+
): TraceViewerData | undefined => {
|
|
429
|
+
const traceId = entry.traceId ?? entry.metadata?.trace_id;
|
|
430
|
+
if (!traceId) {
|
|
431
|
+
return undefined;
|
|
432
|
+
}
|
|
433
|
+
const spans = Object.values(entry.spansById);
|
|
434
|
+
if (spans.length === 0) {
|
|
435
|
+
return undefined;
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
const document: OpenTelemetryDocument = {
|
|
439
|
+
resourceSpans: [
|
|
440
|
+
{
|
|
441
|
+
resource: { attributes: [] },
|
|
442
|
+
scopeSpans: [
|
|
443
|
+
{
|
|
444
|
+
scope: { name: "orcheo.trace" },
|
|
445
|
+
spans: spans.map((span) => toOpenTelemetrySpan(traceId, span)),
|
|
446
|
+
},
|
|
447
|
+
],
|
|
448
|
+
},
|
|
449
|
+
],
|
|
450
|
+
};
|
|
451
|
+
|
|
452
|
+
const spanTree =
|
|
453
|
+
openTelemetrySpanAdapter.convertRawDocumentsToSpans(document);
|
|
454
|
+
|
|
455
|
+
const enrichedTree = spanTree
|
|
456
|
+
.map((span) =>
|
|
457
|
+
attachMetadataToSpan(
|
|
458
|
+
span,
|
|
459
|
+
entry.spanMetadata,
|
|
460
|
+
options.resolveArtifactUrl,
|
|
461
|
+
),
|
|
462
|
+
)
|
|
463
|
+
.map((span) => sortChildrenByStart(span));
|
|
464
|
+
|
|
465
|
+
const flattened = flattenSpans(enrichedTree);
|
|
466
|
+
const traceRecord = buildTraceRecord(entry, flattened);
|
|
467
|
+
|
|
468
|
+
const badges: BadgeProps[] = [];
|
|
469
|
+
if (entry.metadata?.status) {
|
|
470
|
+
badges.push({ label: `Status: ${entry.metadata.status}` });
|
|
471
|
+
}
|
|
472
|
+
const inputTokens = entry.metadata?.token_usage?.input ?? 0;
|
|
473
|
+
const outputTokens = entry.metadata?.token_usage?.output ?? 0;
|
|
474
|
+
if (inputTokens || outputTokens) {
|
|
475
|
+
badges.push({
|
|
476
|
+
label: `Tokens in/out: ${inputTokens}/${outputTokens}`,
|
|
477
|
+
});
|
|
478
|
+
}
|
|
479
|
+
if (!entry.isComplete) {
|
|
480
|
+
badges.push({
|
|
481
|
+
label: "Live",
|
|
482
|
+
className:
|
|
483
|
+
"bg-agentprism-warning text-agentprism-warning-muted-foreground",
|
|
484
|
+
});
|
|
485
|
+
}
|
|
486
|
+
|
|
487
|
+
return {
|
|
488
|
+
traceRecord,
|
|
489
|
+
spans: enrichedTree,
|
|
490
|
+
badges,
|
|
491
|
+
};
|
|
492
|
+
};
|
|
493
|
+
|
|
494
|
+
export const getEntryStatus = (
|
|
495
|
+
entry: ExecutionTraceEntry | undefined,
|
|
496
|
+
): TraceEntryStatus => entry?.status ?? "idle";
|
|
497
|
+
|
|
498
|
+
export const getEntryError = (
|
|
499
|
+
entry: ExecutionTraceEntry | undefined,
|
|
500
|
+
): string | undefined => entry?.error;
|
|
501
|
+
|
|
502
|
+
export const summarizeTrace = (entry: ExecutionTraceEntry) => {
|
|
503
|
+
const spanCount = Object.keys(entry.spansById).length;
|
|
504
|
+
const totalTokens =
|
|
505
|
+
(entry.metadata?.token_usage?.input ?? 0) +
|
|
506
|
+
(entry.metadata?.token_usage?.output ?? 0);
|
|
507
|
+
return {
|
|
508
|
+
spanCount,
|
|
509
|
+
totalTokens,
|
|
510
|
+
};
|
|
511
|
+
};
|
|
512
|
+
|
|
513
|
+
export const upsertTraceError = (
|
|
514
|
+
entry: ExecutionTraceEntry,
|
|
515
|
+
error: string,
|
|
516
|
+
): ExecutionTraceEntry => ({
|
|
517
|
+
...entry,
|
|
518
|
+
status: "error",
|
|
519
|
+
error,
|
|
520
|
+
});
|
|
521
|
+
|
|
522
|
+
export const markTraceLoading = (
|
|
523
|
+
entry: ExecutionTraceEntry,
|
|
524
|
+
): ExecutionTraceEntry => ({
|
|
525
|
+
...entry,
|
|
526
|
+
status: "loading",
|
|
527
|
+
error: undefined,
|
|
528
|
+
});
|
|
529
|
+
|
|
530
|
+
export const markTraceReady = (
|
|
531
|
+
entry: ExecutionTraceEntry,
|
|
532
|
+
): ExecutionTraceEntry => ({
|
|
533
|
+
...entry,
|
|
534
|
+
status: "ready",
|
|
535
|
+
});
|
|
536
|
+
|
|
537
|
+
export const deriveViewerDataList = (
|
|
538
|
+
state: ExecutionTraceState,
|
|
539
|
+
options: BuildViewerDataOptions = {},
|
|
540
|
+
): TraceViewerData[] =>
|
|
541
|
+
Object.values(state)
|
|
542
|
+
.map((entry) => buildTraceViewerData(entry, options))
|
|
543
|
+
.filter((value): value is TraceViewerData => Boolean(value))
|
|
544
|
+
.sort((a, b) => {
|
|
545
|
+
const aStart = a.traceRecord.startTime ?? 0;
|
|
546
|
+
const bStart = b.traceRecord.startTime ?? 0;
|
|
547
|
+
return bStart - aStart;
|
|
548
|
+
});
|
|
549
|
+
|
|
550
|
+
export const DEFAULT_TRACE_BADGES: BadgeProps[] = [{ label: "Trace" }];
|
|
551
|
+
|
|
552
|
+
export const ensureTraceId = (): string => nanoid();
|
|
@@ -0,0 +1,140 @@
|
|
|
1
|
+
import { MarkerType } from "@xyflow/react";
|
|
2
|
+
|
|
3
|
+
import {
|
|
4
|
+
getNodeIcon,
|
|
5
|
+
inferNodeIconKey,
|
|
6
|
+
} from "@features/workflow/lib/node-icons";
|
|
7
|
+
import type {
|
|
8
|
+
WorkflowEdge as PersistedWorkflowEdge,
|
|
9
|
+
WorkflowNode as PersistedWorkflowNode,
|
|
10
|
+
} from "@features/workflow/data/workflow-data";
|
|
11
|
+
|
|
12
|
+
import type { CanvasEdge, CanvasNode, NodeData, NodeStatus } from "./types";
|
|
13
|
+
import { sanitizeNodeDataForPersist } from "./node-identity";
|
|
14
|
+
|
|
15
|
+
export const defaultNodeStyle = {
|
|
16
|
+
background: "none",
|
|
17
|
+
border: "none",
|
|
18
|
+
padding: 0,
|
|
19
|
+
borderRadius: 0,
|
|
20
|
+
width: "auto",
|
|
21
|
+
boxShadow: "none",
|
|
22
|
+
} as const;
|
|
23
|
+
|
|
24
|
+
export const toPersistedNode = (node: CanvasNode): PersistedWorkflowNode => ({
|
|
25
|
+
id: node.id,
|
|
26
|
+
type:
|
|
27
|
+
typeof node.data?.type === "string"
|
|
28
|
+
? node.data.type
|
|
29
|
+
: (node.type ?? "default"),
|
|
30
|
+
position: {
|
|
31
|
+
x: node.position?.x ?? 0,
|
|
32
|
+
y: node.position?.y ?? 0,
|
|
33
|
+
},
|
|
34
|
+
data: sanitizeNodeDataForPersist(node.data),
|
|
35
|
+
});
|
|
36
|
+
|
|
37
|
+
export const toPersistedEdge = (edge: CanvasEdge): PersistedWorkflowEdge => ({
|
|
38
|
+
id: edge.id,
|
|
39
|
+
source: edge.source,
|
|
40
|
+
target: edge.target,
|
|
41
|
+
sourceHandle: edge.sourceHandle,
|
|
42
|
+
targetHandle: edge.targetHandle,
|
|
43
|
+
label: edge.label,
|
|
44
|
+
type: edge.type,
|
|
45
|
+
animated: edge.animated,
|
|
46
|
+
style: edge.style,
|
|
47
|
+
});
|
|
48
|
+
|
|
49
|
+
export const resolveReactFlowType = (
|
|
50
|
+
persistedType?: string,
|
|
51
|
+
): "default" | "chatTrigger" | "startEnd" | "stickyNote" => {
|
|
52
|
+
if (!persistedType) {
|
|
53
|
+
return "default";
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
if (persistedType === "chatTrigger") {
|
|
57
|
+
return "chatTrigger";
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
if (persistedType === "stickyNote" || persistedType === "annotation") {
|
|
61
|
+
return "stickyNote";
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
if (
|
|
65
|
+
persistedType === "start" ||
|
|
66
|
+
persistedType === "end" ||
|
|
67
|
+
persistedType === "startEnd"
|
|
68
|
+
) {
|
|
69
|
+
return "startEnd";
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
return "default";
|
|
73
|
+
};
|
|
74
|
+
|
|
75
|
+
export const toCanvasNodeBase = (node: PersistedWorkflowNode): CanvasNode => {
|
|
76
|
+
const extraEntries = Object.entries(node.data ?? {}).filter(
|
|
77
|
+
([key]) => !["label", "description", "type", "isDisabled"].includes(key),
|
|
78
|
+
);
|
|
79
|
+
|
|
80
|
+
const extraData = Object.fromEntries(extraEntries);
|
|
81
|
+
const semanticType = node.data?.type ?? node.type ?? "default";
|
|
82
|
+
const extraDataRecord = { ...extraData } as Record<string, unknown>;
|
|
83
|
+
const storedIconKeyRaw = extraDataRecord.iconKey;
|
|
84
|
+
delete extraDataRecord.iconKey;
|
|
85
|
+
delete extraDataRecord.icon;
|
|
86
|
+
const otherExtraData = extraDataRecord;
|
|
87
|
+
|
|
88
|
+
const label =
|
|
89
|
+
typeof node.data?.label === "string" ? node.data.label : "New Node";
|
|
90
|
+
const description =
|
|
91
|
+
typeof node.data?.description === "string" ? node.data.description : "";
|
|
92
|
+
|
|
93
|
+
const storedIconKey =
|
|
94
|
+
typeof storedIconKeyRaw === "string" ? storedIconKeyRaw : undefined;
|
|
95
|
+
const resolvedIconKey =
|
|
96
|
+
inferNodeIconKey({
|
|
97
|
+
iconKey: storedIconKey,
|
|
98
|
+
label,
|
|
99
|
+
type: semanticType,
|
|
100
|
+
}) ?? storedIconKey;
|
|
101
|
+
const icon = getNodeIcon(resolvedIconKey);
|
|
102
|
+
|
|
103
|
+
return {
|
|
104
|
+
id: node.id,
|
|
105
|
+
type: resolveReactFlowType(node.type),
|
|
106
|
+
position: node.position ?? { x: 0, y: 0 },
|
|
107
|
+
style: defaultNodeStyle,
|
|
108
|
+
data: {
|
|
109
|
+
type: semanticType,
|
|
110
|
+
label,
|
|
111
|
+
description,
|
|
112
|
+
status: (node.data?.status ?? "idle") as NodeStatus,
|
|
113
|
+
isDisabled: node.data?.isDisabled,
|
|
114
|
+
iconKey: resolvedIconKey,
|
|
115
|
+
icon,
|
|
116
|
+
...otherExtraData,
|
|
117
|
+
} as NodeData,
|
|
118
|
+
draggable: true,
|
|
119
|
+
};
|
|
120
|
+
};
|
|
121
|
+
|
|
122
|
+
export const toCanvasEdge = (edge: PersistedWorkflowEdge): CanvasEdge => ({
|
|
123
|
+
id: edge.id ?? `edge-${edge.source}-${edge.target}`,
|
|
124
|
+
source: edge.source,
|
|
125
|
+
target: edge.target,
|
|
126
|
+
sourceHandle: edge.sourceHandle,
|
|
127
|
+
targetHandle: edge.targetHandle,
|
|
128
|
+
label: edge.label,
|
|
129
|
+
type: edge.type ?? "default",
|
|
130
|
+
animated: edge.animated ?? false,
|
|
131
|
+
markerEnd: {
|
|
132
|
+
type: MarkerType.ArrowClosed,
|
|
133
|
+
width: 12,
|
|
134
|
+
height: 12,
|
|
135
|
+
},
|
|
136
|
+
style: edge.style ?? { stroke: "#99a1b3", strokeWidth: 2 },
|
|
137
|
+
});
|
|
138
|
+
|
|
139
|
+
export const convertPersistedEdgesToCanvas = (edges: PersistedWorkflowEdge[]) =>
|
|
140
|
+
edges.map(toCanvasEdge);
|