@polderlabs/bizar 3.23.1 → 4.2.0
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/README.md +83 -16
- package/bizar-dash/.bizar/activity.log +3 -0
- package/bizar-dash/.bizar/graph/.graphify_analysis.json +1540 -0
- package/bizar-dash/.bizar/graph/.graphify_labels.json +1 -0
- package/bizar-dash/.bizar/graph/GRAPH_REPORT.md +404 -0
- package/bizar-dash/.bizar/graph/cache/ast/v0.8.46/0661b816358db84dfdb7f10443db8a61152fd20b3fee950caf8fbf32920a1790.json +1 -0
- package/bizar-dash/.bizar/graph/cache/ast/v0.8.46/16da06d774142a6e5d74829ad982531286a6193ef798de8f593db029e123ec32.json +1 -0
- package/bizar-dash/.bizar/graph/cache/ast/v0.8.46/27e5697c01254c69c64c5a33896669073b40afb5ba88375102ae77fa5404136d.json +1 -0
- package/bizar-dash/.bizar/graph/cache/ast/v0.8.46/532997898027254aa4c0932243dc71d2f55888181232b65974961934997dc85b.json +1 -0
- package/bizar-dash/.bizar/graph/cache/ast/v0.8.46/84e3451a64c7f99f0cd6a88b0748d7426780486f53ab4935b7476b28c08f8293.json +1 -0
- package/bizar-dash/.bizar/graph/cache/ast/v0.8.46/88e5ea5f3e78fa69353fe9e6a8d1a05391d54605e25600cb125531eb5a6432ff.json +1 -0
- package/bizar-dash/.bizar/graph/cache/stat-index.json +1 -0
- package/bizar-dash/.bizar/graph/graph.html +307 -0
- package/bizar-dash/.bizar/graph/graph.json +40267 -0
- package/bizar-dash/.bizar/graph/manifest.json +762 -0
- package/bizar-dash/.graphifyignore +40 -0
- package/bizar-dash/.obsidian/README.md +14 -0
- package/bizar-dash/.obsidian/daily/2026-06-25.md +9 -0
- package/bizar-dash/.obsidian/vault.json +7 -0
- package/bizar-dash/.od-skills/web-prototype-e1429c1737/SKILL.md +103 -0
- package/bizar-dash/.od-skills/web-prototype-e1429c1737/assets/template.html +338 -0
- package/bizar-dash/.od-skills/web-prototype-e1429c1737/example.html +81 -0
- package/bizar-dash/.od-skills/web-prototype-e1429c1737/open-design.json +172 -0
- package/bizar-dash/.od-skills/web-prototype-e1429c1737/references/checklist.md +44 -0
- package/bizar-dash/.od-skills/web-prototype-e1429c1737/references/layouts.md +247 -0
- package/bizar-dash/CHANGELOG.md +474 -0
- package/bizar-dash/DESIGN.md +136 -0
- package/bizar-dash/dist/assets/main-B3RgW6FS.js +331 -0
- package/bizar-dash/dist/assets/main-B3RgW6FS.js.map +1 -0
- package/bizar-dash/dist/assets/main-DlJ8wgLR.css +1 -0
- package/bizar-dash/dist/assets/mobile-CsZQAswA.css +1 -0
- package/bizar-dash/dist/assets/mobile-DbxIw8BG.js +2 -0
- package/bizar-dash/dist/assets/mobile-DbxIw8BG.js.map +1 -0
- package/bizar-dash/dist/assets/mobile-Dvq2d53Y.js +354 -0
- package/bizar-dash/dist/assets/mobile-Dvq2d53Y.js.map +1 -0
- package/bizar-dash/dist/index.html +40 -0
- package/bizar-dash/dist/mobile.html +22 -0
- package/bizar-dash/plans/debug-plan/comments.json +1 -0
- package/bizar-dash/plans/debug-plan/meta.json +10 -0
- package/bizar-dash/plans/debug-plan/plan.json +174 -0
- package/bizar-dash/scripts/smoke-bg-retry.mjs +246 -0
- package/bizar-dash/src/cli/dashboard-ports.mjs +488 -0
- package/bizar-dash/src/cli.mjs +522 -0
- package/bizar-dash/src/server/activity-log.mjs +174 -0
- package/bizar-dash/src/server/agents-store.mjs +465 -0
- package/bizar-dash/src/server/api.mjs +138 -0
- package/bizar-dash/src/server/artifact-template.html +810 -0
- package/bizar-dash/src/server/artifacts-store.mjs +733 -0
- package/bizar-dash/src/server/auth.mjs +381 -0
- package/bizar-dash/src/server/background-store.mjs +447 -0
- package/bizar-dash/src/server/bg-poller.mjs +305 -0
- package/bizar-dash/src/server/bg-retry.mjs +574 -0
- package/bizar-dash/src/server/browser.mjs +40 -0
- package/bizar-dash/src/server/diagnostics-store.mjs +148 -0
- package/bizar-dash/src/server/dialog-poller.mjs +105 -0
- package/bizar-dash/src/server/dialog-store.mjs +177 -0
- package/bizar-dash/src/server/glyphs/mdx-compiler.mjs +583 -0
- package/bizar-dash/src/server/lib/path-safe.mjs +283 -0
- package/bizar-dash/src/server/memory-git.mjs +329 -0
- package/bizar-dash/src/server/memory-lightrag.mjs +767 -0
- package/bizar-dash/src/server/memory-schema.mjs +145 -0
- package/bizar-dash/src/server/memory-secrets.mjs +84 -0
- package/bizar-dash/src/server/memory-store.mjs +471 -0
- package/bizar-dash/src/server/mod-security.mjs +398 -0
- package/bizar-dash/src/server/mods-loader.mjs +1067 -0
- package/bizar-dash/src/server/notifications-store.mjs +243 -0
- package/bizar-dash/src/server/obsidian-store.mjs +318 -0
- package/bizar-dash/src/server/opencode-runner.mjs +279 -0
- package/bizar-dash/src/server/pair-store.mjs +138 -0
- package/bizar-dash/src/server/projects-store.mjs +364 -0
- package/bizar-dash/src/server/providers-store.mjs +789 -0
- package/bizar-dash/src/server/routes/_shared.mjs +415 -0
- package/bizar-dash/src/server/routes/activity.mjs +110 -0
- package/bizar-dash/src/server/routes/agents.mjs +134 -0
- package/bizar-dash/src/server/routes/artifacts.mjs +279 -0
- package/bizar-dash/src/server/routes/auth.mjs +69 -0
- package/bizar-dash/src/server/routes/background.mjs +165 -0
- package/bizar-dash/src/server/routes/chat.mjs +485 -0
- package/bizar-dash/src/server/routes/config.mjs +129 -0
- package/bizar-dash/src/server/routes/diagnostics.mjs +50 -0
- package/bizar-dash/src/server/routes/dialogs.mjs +86 -0
- package/bizar-dash/src/server/routes/fs.mjs +429 -0
- package/bizar-dash/src/server/routes/history.mjs +78 -0
- package/bizar-dash/src/server/routes/memory.mjs +658 -0
- package/bizar-dash/src/server/routes/misc.mjs +89 -0
- package/bizar-dash/src/server/routes/mods.mjs +359 -0
- package/bizar-dash/src/server/routes/notifications.mjs +54 -0
- package/bizar-dash/src/server/routes/obsidian.mjs +239 -0
- package/bizar-dash/src/server/routes/opencode-sessions.mjs +55 -0
- package/bizar-dash/src/server/routes/overview.mjs +91 -0
- package/bizar-dash/src/server/routes/pair.mjs +67 -0
- package/bizar-dash/src/server/routes/projects.mjs +175 -0
- package/bizar-dash/src/server/routes/providers.mjs +47 -0
- package/bizar-dash/src/server/routes/schedules.mjs +104 -0
- package/bizar-dash/src/server/routes/settings.mjs +51 -0
- package/bizar-dash/src/server/routes/skills.mjs +76 -0
- package/bizar-dash/src/server/routes/tasks.mjs +468 -0
- package/bizar-dash/src/server/routes/themes.mjs +51 -0
- package/bizar-dash/src/server/routes-v2/auth.mjs +59 -0
- package/bizar-dash/src/server/routes-v2/events.mjs +107 -0
- package/bizar-dash/src/server/routes-v2/health.mjs +21 -0
- package/bizar-dash/src/server/routes-v2/index.mjs +90 -0
- package/bizar-dash/src/server/routes-v2/sessions.mjs +111 -0
- package/bizar-dash/src/server/schedules-runner.mjs +369 -0
- package/bizar-dash/src/server/schedules-store.mjs +268 -0
- package/bizar-dash/src/server/search-store.mjs +220 -0
- package/bizar-dash/src/server/serve-info.mjs +684 -0
- package/bizar-dash/src/server/server.mjs +796 -0
- package/bizar-dash/src/server/settings-store.mjs +45 -0
- package/bizar-dash/src/server/skills-store.mjs +300 -0
- package/bizar-dash/src/server/state.mjs +437 -0
- package/bizar-dash/src/server/tailscale-store.mjs +113 -0
- package/bizar-dash/src/server/task-delegator.mjs +824 -0
- package/bizar-dash/src/server/tasks-store.mjs +508 -0
- package/bizar-dash/src/server/tui.mjs +923 -0
- package/bizar-dash/src/server/update-store.mjs +168 -0
- package/bizar-dash/src/server/v2-auth-file.mjs +99 -0
- package/bizar-dash/src/server/v2-event-bus.mjs +128 -0
- package/bizar-dash/src/server/watcher.mjs +81 -0
- package/bizar-dash/src/server/yaml.mjs +238 -0
- package/bizar-dash/src/web/App.tsx +718 -0
- package/bizar-dash/src/web/MobileApp.tsx +408 -0
- package/bizar-dash/src/web/components/ArtifactCreateDialog.tsx +95 -0
- package/bizar-dash/src/web/components/ArtifactListDialog.tsx +55 -0
- package/bizar-dash/src/web/components/ArtifactViewer.tsx +143 -0
- package/bizar-dash/src/web/components/AuditDialog.tsx +79 -0
- package/bizar-dash/src/web/components/BgStatusBadge.tsx +32 -0
- package/bizar-dash/src/web/components/Button.tsx +56 -0
- package/bizar-dash/src/web/components/CanvasContextMenu.tsx +68 -0
- package/bizar-dash/src/web/components/Card.tsx +40 -0
- package/bizar-dash/src/web/components/CollapsibleSection.tsx +72 -0
- package/bizar-dash/src/web/components/CommandDialog.tsx +66 -0
- package/bizar-dash/src/web/components/EmptyState.tsx +30 -0
- package/bizar-dash/src/web/components/FileBrowser.tsx +633 -0
- package/bizar-dash/src/web/components/HelpDialog.tsx +55 -0
- package/bizar-dash/src/web/components/KillConfirmDialog.tsx +88 -0
- package/bizar-dash/src/web/components/Modal.tsx +215 -0
- package/bizar-dash/src/web/components/Notifications.tsx +241 -0
- package/bizar-dash/src/web/components/SearchModal.tsx +224 -0
- package/bizar-dash/src/web/components/Sidebar.tsx +66 -0
- package/bizar-dash/src/web/components/Spinner.tsx +19 -0
- package/bizar-dash/src/web/components/StatusBadge.tsx +25 -0
- package/bizar-dash/src/web/components/Tag.tsx +28 -0
- package/bizar-dash/src/web/components/Toast.tsx +150 -0
- package/bizar-dash/src/web/components/Topbar.tsx +368 -0
- package/bizar-dash/src/web/components/VisualPlanDialog.tsx +58 -0
- package/bizar-dash/src/web/components/chat/AgentChip.tsx +68 -0
- package/bizar-dash/src/web/components/chat/ChatBubble.tsx +60 -0
- package/bizar-dash/src/web/components/chat/ChatThread.tsx +88 -0
- package/bizar-dash/src/web/components/chat/ChatTopBar.tsx +50 -0
- package/bizar-dash/src/web/components/chat/Composer.tsx +164 -0
- package/bizar-dash/src/web/components/chat/ConfirmModal.tsx +54 -0
- package/bizar-dash/src/web/components/chat/EmptyState.tsx +21 -0
- package/bizar-dash/src/web/components/chat/FirstRunGreeting.tsx +18 -0
- package/bizar-dash/src/web/components/chat/FloatingComposer.tsx +32 -0
- package/bizar-dash/src/web/components/chat/InfoPanel.tsx +119 -0
- package/bizar-dash/src/web/components/chat/LoadingSkeleton.tsx +19 -0
- package/bizar-dash/src/web/components/chat/MessageBubble.tsx +60 -0
- package/bizar-dash/src/web/components/chat/SessionList.tsx +153 -0
- package/bizar-dash/src/web/components/chat/StreamingIndicator.tsx +9 -0
- package/bizar-dash/src/web/components/chat/SuggestionCards.tsx +55 -0
- package/bizar-dash/src/web/components/chat/WelcomeScreen.tsx +36 -0
- package/bizar-dash/src/web/components/chat/index.ts +20 -0
- package/bizar-dash/src/web/components/chat/useAutoGrowTextarea.ts +18 -0
- package/bizar-dash/src/web/components/chat/useChat.ts +219 -0
- package/bizar-dash/src/web/components/chat/useSlashCommands.ts +47 -0
- package/bizar-dash/src/web/index.html +37 -0
- package/bizar-dash/src/web/lib/api.ts +193 -0
- package/bizar-dash/src/web/lib/markdown.tsx +59 -0
- package/bizar-dash/src/web/lib/types.ts +668 -0
- package/bizar-dash/src/web/lib/utils.ts +114 -0
- package/bizar-dash/src/web/lib/ws.ts +176 -0
- package/bizar-dash/src/web/main.tsx +34 -0
- package/bizar-dash/src/web/mobile/MobileApp.tsx +278 -0
- package/bizar-dash/src/web/mobile/MobileBottomNav.tsx +38 -0
- package/bizar-dash/src/web/mobile/MobileTopbar.tsx +115 -0
- package/bizar-dash/src/web/mobile/components/MobileBottomSheet.tsx +182 -0
- package/bizar-dash/src/web/mobile/components/MobileListItem.tsx +64 -0
- package/bizar-dash/src/web/mobile/components/MobileModal.tsx +123 -0
- package/bizar-dash/src/web/mobile/views/MobileActivity.tsx +273 -0
- package/bizar-dash/src/web/mobile/views/MobileAgents.tsx +374 -0
- package/bizar-dash/src/web/mobile/views/MobileArtifactCanvas.tsx +439 -0
- package/bizar-dash/src/web/mobile/views/MobileArtifacts.tsx +143 -0
- package/bizar-dash/src/web/mobile/views/MobileChat.tsx +180 -0
- package/bizar-dash/src/web/mobile/views/MobileConfig.tsx +175 -0
- package/bizar-dash/src/web/mobile/views/MobileHistory.tsx +191 -0
- package/bizar-dash/src/web/mobile/views/MobileMods.tsx +149 -0
- package/bizar-dash/src/web/mobile/views/MobileMore.tsx +121 -0
- package/bizar-dash/src/web/mobile/views/MobileNotifications.tsx +137 -0
- package/bizar-dash/src/web/mobile/views/MobilePlans.tsx +26 -0
- package/bizar-dash/src/web/mobile/views/MobileSchedules.tsx +685 -0
- package/bizar-dash/src/web/mobile/views/MobileSearchModal.tsx +172 -0
- package/bizar-dash/src/web/mobile/views/MobileSettings.tsx +388 -0
- package/bizar-dash/src/web/mobile/views/MobileSkills.tsx +153 -0
- package/bizar-dash/src/web/mobile/views/MobileTasks.tsx +564 -0
- package/bizar-dash/src/web/mobile.html +20 -0
- package/bizar-dash/src/web/mobile.tsx +13 -0
- package/bizar-dash/src/web/styles/chat.css +198 -0
- package/bizar-dash/src/web/styles/glyphs.css +960 -0
- package/bizar-dash/src/web/styles/main.css +8855 -0
- package/bizar-dash/src/web/styles/mobile-chat.css +5 -0
- package/bizar-dash/src/web/styles/mobile.css +1960 -0
- package/bizar-dash/src/web/views/Activity.tsx +1203 -0
- package/bizar-dash/src/web/views/Agents.tsx +701 -0
- package/bizar-dash/src/web/views/Artifacts.tsx +1480 -0
- package/bizar-dash/src/web/views/BackgroundAgents.tsx +450 -0
- package/bizar-dash/src/web/views/Chat.tsx +190 -0
- package/bizar-dash/src/web/views/Config.tsx +2063 -0
- package/bizar-dash/src/web/views/History.tsx +335 -0
- package/bizar-dash/src/web/views/ModView.tsx +207 -0
- package/bizar-dash/src/web/views/Mods.tsx +693 -0
- package/bizar-dash/src/web/views/Overview.tsx +812 -0
- package/bizar-dash/src/web/views/Providers.tsx +302 -0
- package/bizar-dash/src/web/views/Schedules.tsx +802 -0
- package/bizar-dash/src/web/views/Settings.tsx +1787 -0
- package/bizar-dash/src/web/views/Skills.tsx +431 -0
- package/bizar-dash/src/web/views/Tasks.tsx +1523 -0
- package/bizar-dash/src/web/views/glyphs/GlyphRenderer.tsx +613 -0
- package/bizar-dash/src/web/views/glyphs/components.tsx +1098 -0
- package/bizar-dash/templates/mod/FORMAT.md +76 -0
- package/bizar-dash/templates/mod/hello-mod/README.md +19 -0
- package/bizar-dash/templates/mod/hello-mod/agents/greeter.md +8 -0
- package/bizar-dash/templates/mod/hello-mod/commands/hello.md +6 -0
- package/bizar-dash/templates/mod/hello-mod/mod.json +20 -0
- package/bizar-dash/templates/mod/hello-mod/routes/ping.mjs +9 -0
- package/bizar-dash/templates/mod/hello-mod/views/HelloView.tsx +10 -0
- package/bizar-dash/tests/dashboard-ports.test.mjs +138 -0
- package/bizar-dash/tests/graphify-mod-spawn.node.test.mjs +90 -0
- package/bizar-dash/tests/memory-cli.test.mjs +542 -0
- package/bizar-dash/tests/memory-config.test.mjs +422 -0
- package/bizar-dash/tests/memory-git.test.mjs +246 -0
- package/bizar-dash/tests/memory-lightrag.test.mjs +153 -0
- package/bizar-dash/tests/memory-protocol-drift.test.mjs +45 -0
- package/bizar-dash/tests/memory-schema.test.mjs +198 -0
- package/bizar-dash/tests/memory-secrets.test.mjs +121 -0
- package/bizar-dash/tests/memory-store.test.mjs +390 -0
- package/bizar-dash/tests/memory-sync.test.mjs +141 -0
- package/bizar-dash/tests/mod-instructions.node.test.mjs +188 -0
- package/bizar-dash/tests/mod-security.test.mjs +273 -0
- package/bizar-dash/tests/mod-upgrade.node.test.mjs +357 -0
- package/bizar-dash/tests/no-agent-browser.node.test.mjs +98 -0
- package/bizar-dash/tests/obsidian-back-compat.test.mjs +199 -0
- package/bizar-dash/tests/opencode-runner.test.mjs +172 -0
- package/bizar-dash/tests/path-safe.test.mjs +108 -0
- package/bizar-dash/tests/providers-store-backup-keys.node.test.mjs +333 -0
- package/bizar-dash/tests/smoke-v2.mjs +212 -0
- package/bizar-dash/tests/strip-thinking.test.mjs +175 -0
- package/bizar-dash/tests/submit-feedback.test.mjs +353 -0
- package/bizar-dash/tests/tmux-wrap.test.mjs +145 -0
- package/bizar-dash/tests/yaml.test.mjs +128 -0
- package/bizar-dash/tsconfig.json +23 -0
- package/bizar-dash/vite.config.ts +27 -0
- package/cli/atomic.mjs +73 -0
- package/cli/banner.mjs +1 -1
- package/cli/bin.mjs +44 -47
- package/cli/bootstrap.mjs +1 -1
- package/cli/copy.mjs +25 -16
- package/cli/dev-link.mjs +17 -1
- package/cli/doctor.mjs +4 -4
- package/cli/doctor.test.mjs +2 -2
- package/cli/init.mjs +135 -1
- package/cli/install.mjs +31 -39
- package/cli/memory-constants.mjs +59 -0
- package/cli/memory.mjs +1436 -0
- package/cli/service.mjs +5 -6
- package/cli/utils.mjs +6 -3
- package/config/AGENTS.md +7 -7
- package/config/agents/_shared/AGENT_BASELINE.md +59 -61
- package/config/opencode.json +13 -38
- package/config/skills/memory-protocol/SKILL.md +105 -0
- package/config/skills/obsidian/SKILL.md +270 -65
- package/install.sh +59 -19
- package/package.json +49 -14
- package/packages/sdk/LICENSE +21 -0
- package/packages/sdk/README.md +80 -0
- package/packages/sdk/src/client.ts +183 -0
- package/packages/sdk/src/errors.ts +120 -0
- package/packages/sdk/src/events.ts +153 -0
- package/packages/sdk/src/index.ts +63 -0
- package/packages/sdk/src/types.ts +176 -0
- package/packages/sdk/src/version.ts +4 -0
- package/packages/sdk/tests/client.test.ts +217 -0
- package/packages/sdk/tests/errors.test.ts +108 -0
- package/packages/sdk/tests/events.test.ts +139 -0
- package/packages/sdk/tests/fixtures/fetch-mock.ts +152 -0
- package/packages/sdk/tests/fixtures/sse-mock.ts +30 -0
- package/packages/sdk/tsconfig.json +25 -0
- package/packages/sdk/vitest.config.ts +9 -0
- package/plugins/bizar/LICENSE +21 -0
- package/plugins/bizar/README.md +448 -0
- package/plugins/bizar/dist/index.js +29901 -0
- package/plugins/bizar/index.ts +1491 -0
- package/plugins/bizar/scripts/check-forbidden-imports.sh +33 -0
- package/plugins/bizar/src/background-state.ts +551 -0
- package/plugins/bizar/src/background.ts +1250 -0
- package/plugins/bizar/src/commands-impl.ts +464 -0
- package/plugins/bizar/src/commands.ts +1168 -0
- package/plugins/bizar/src/dashboard-client.ts +233 -0
- package/plugins/bizar/src/event-stream.ts +606 -0
- package/plugins/bizar/src/fingerprint.ts +120 -0
- package/plugins/bizar/src/handoff.ts +79 -0
- package/plugins/bizar/src/http-client.ts +467 -0
- package/plugins/bizar/src/key-rotation.ts +218 -0
- package/plugins/bizar/src/logger.ts +144 -0
- package/plugins/bizar/src/loop.ts +176 -0
- package/plugins/bizar/src/opencode-runner.ts +390 -0
- package/plugins/bizar/src/options.ts +421 -0
- package/plugins/bizar/src/plan-fs.ts +323 -0
- package/plugins/bizar/src/reasoning-clean.ts +454 -0
- package/plugins/bizar/src/report.ts +178 -0
- package/plugins/bizar/src/research-prompt.ts +35 -0
- package/plugins/bizar/src/serve-info.ts +228 -0
- package/plugins/bizar/src/serve.ts +496 -0
- package/plugins/bizar/src/settings.ts +349 -0
- package/plugins/bizar/src/state.ts +298 -0
- package/plugins/bizar/src/tools/bg-collect.ts +104 -0
- package/plugins/bizar/src/tools/bg-get-comments.ts +239 -0
- package/plugins/bizar/src/tools/bg-kill.ts +87 -0
- package/plugins/bizar/src/tools/bg-spawn.ts +401 -0
- package/plugins/bizar/src/tools/bg-status.ts +99 -0
- package/plugins/bizar/src/tools/open-kb.ts +191 -0
- package/plugins/bizar/src/tools/plan-action.ts +767 -0
- package/plugins/bizar/src/tools/read-glyph-feedback.ts +170 -0
- package/plugins/bizar/src/tools/wait-for-feedback.ts +402 -0
- package/plugins/bizar/tests/attach-handler-bug.test.ts +169 -0
- package/plugins/bizar/tests/background-state.test.ts +277 -0
- package/plugins/bizar/tests/background.test.ts +402 -0
- package/plugins/bizar/tests/block.test.ts +195 -0
- package/plugins/bizar/tests/canonical-key-order.test.ts +75 -0
- package/plugins/bizar/tests/commands-impl.test.ts +442 -0
- package/plugins/bizar/tests/commands.test.ts +584 -0
- package/plugins/bizar/tests/config.test.ts +122 -0
- package/plugins/bizar/tests/dashboard-client.test.ts +159 -0
- package/plugins/bizar/tests/dispose.test.ts +336 -0
- package/plugins/bizar/tests/event-stream.test.ts +409 -0
- package/plugins/bizar/tests/event.test.ts +262 -0
- package/plugins/bizar/tests/fingerprint.test.ts +162 -0
- package/plugins/bizar/tests/http-client.test.ts +404 -0
- package/plugins/bizar/tests/init-helpers.test.ts +203 -0
- package/plugins/bizar/tests/integration/slash-command.test.ts +348 -0
- package/plugins/bizar/tests/integration/tool-routing.test.ts +314 -0
- package/plugins/bizar/tests/key-rotation.test.ts +396 -0
- package/plugins/bizar/tests/loop.test.ts +397 -0
- package/plugins/bizar/tests/options.test.ts +276 -0
- package/plugins/bizar/tests/reasoning-clean.test.ts +422 -0
- package/plugins/bizar/tests/serve.test.ts +339 -0
- package/plugins/bizar/tests/settings.test.ts +351 -0
- package/plugins/bizar/tests/stall-think.test.ts +750 -0
- package/plugins/bizar/tests/state.test.ts +276 -0
- package/plugins/bizar/tests/tools/bg-collect.test.ts +337 -0
- package/plugins/bizar/tests/tools/bg-get-comments.test.ts +485 -0
- package/plugins/bizar/tests/tools/bg-kill.test.ts +235 -0
- package/plugins/bizar/tests/tools/bg-spawn-delegation.test.ts +147 -0
- package/plugins/bizar/tests/tools/bg-spawn.test.ts +311 -0
- package/plugins/bizar/tests/tools/bg-status.test.ts +217 -0
- package/plugins/bizar/tests/tools/opencode-runner.test.ts +115 -0
- package/plugins/bizar/tests/tools/plan-action.test.ts +599 -0
- package/plugins/bizar/tests/tools/read-glyph-feedback.test.ts +253 -0
- package/plugins/bizar/tests/tools/wait-for-feedback.test.ts +390 -0
- package/plugins/bizar/tests/update-deadlock.test.ts +145 -0
- package/plugins/bizar/tsconfig.json +29 -0
|
@@ -0,0 +1,1098 @@
|
|
|
1
|
+
// Glyphs block vocabulary — renders MDX blocks from plan.mdx
|
|
2
|
+
|
|
3
|
+
import { useMemo, useState } from 'react';
|
|
4
|
+
import ReactMarkdown from 'react-markdown';
|
|
5
|
+
import remarkGfm from 'remark-gfm';
|
|
6
|
+
import {
|
|
7
|
+
AlertTriangle,
|
|
8
|
+
Check,
|
|
9
|
+
CheckCircle2,
|
|
10
|
+
ChevronDown,
|
|
11
|
+
Diamond,
|
|
12
|
+
FileCode2,
|
|
13
|
+
Info,
|
|
14
|
+
Minus,
|
|
15
|
+
StickyNote,
|
|
16
|
+
XCircle,
|
|
17
|
+
} from 'lucide-react';
|
|
18
|
+
import { cn } from '../../lib/utils';
|
|
19
|
+
|
|
20
|
+
export interface RichTextProps {
|
|
21
|
+
id: string;
|
|
22
|
+
children: string;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
export function RichText({ id, children }: RichTextProps) {
|
|
26
|
+
return (
|
|
27
|
+
<div
|
|
28
|
+
id={id}
|
|
29
|
+
data-block-id={id}
|
|
30
|
+
className={cn('glyph-richtext')}
|
|
31
|
+
style={proseStyle}
|
|
32
|
+
>
|
|
33
|
+
<ReactMarkdown remarkPlugins={[remarkGfm]}>{children}</ReactMarkdown>
|
|
34
|
+
</div>
|
|
35
|
+
);
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
export interface CalloutProps {
|
|
39
|
+
id: string;
|
|
40
|
+
tone?: 'info' | 'warn' | 'success' | 'danger';
|
|
41
|
+
children: string;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
const CALLOUT_TONE: Record<NonNullable<CalloutProps['tone']>, {
|
|
45
|
+
bg: string; border: string; fg: string; icon: typeof Info; label: string;
|
|
46
|
+
}> = {
|
|
47
|
+
info: { bg: 'var(--info-soft, rgba(96, 165, 250, 0.12))', border: 'var(--info)', fg: 'var(--info)', icon: Info, label: 'Note' },
|
|
48
|
+
warn: { bg: 'var(--warning-soft, rgba(251, 191, 36, 0.15))', border: 'var(--warning)', fg: 'var(--warning)', icon: AlertTriangle, label: 'Warning' },
|
|
49
|
+
success: { bg: 'var(--success-soft, rgba(52, 211, 153, 0.15))', border: 'var(--success)', fg: 'var(--success)', icon: CheckCircle2, label: 'Success' },
|
|
50
|
+
danger: { bg: 'var(--error-soft, rgba(248, 113, 113, 0.12))', border: 'var(--error)', fg: 'var(--error)', icon: XCircle, label: 'Danger' },
|
|
51
|
+
};
|
|
52
|
+
|
|
53
|
+
export function Callout({ id, tone = 'info', children }: CalloutProps) {
|
|
54
|
+
const t = CALLOUT_TONE[tone];
|
|
55
|
+
const Icon = t.icon;
|
|
56
|
+
return (
|
|
57
|
+
<div
|
|
58
|
+
id={id}
|
|
59
|
+
data-block-id={id}
|
|
60
|
+
className={cn('glyph-callout', `glyph-callout-${tone}`)}
|
|
61
|
+
style={{
|
|
62
|
+
display: 'flex',
|
|
63
|
+
gap: 12,
|
|
64
|
+
padding: '12px 16px',
|
|
65
|
+
margin: '12px 0',
|
|
66
|
+
borderLeft: `3px solid ${t.border}`,
|
|
67
|
+
background: t.bg,
|
|
68
|
+
borderRadius: 8,
|
|
69
|
+
color: 'var(--text)',
|
|
70
|
+
}}
|
|
71
|
+
role={tone === 'danger' || tone === 'warn' ? 'alert' : undefined}
|
|
72
|
+
>
|
|
73
|
+
<div style={{ flexShrink: 0, color: t.fg, paddingTop: 2 }}>
|
|
74
|
+
<Icon size={18} />
|
|
75
|
+
</div>
|
|
76
|
+
<div style={{ flex: 1, minWidth: 0 }}>
|
|
77
|
+
<div style={{ fontWeight: 600, fontSize: 13, color: t.fg, marginBottom: 4 }}>
|
|
78
|
+
{t.label}
|
|
79
|
+
</div>
|
|
80
|
+
<div className="glyph-richtext" style={{ ...proseStyle, fontSize: 14 }}>
|
|
81
|
+
<ReactMarkdown remarkPlugins={[remarkGfm]}>{children}</ReactMarkdown>
|
|
82
|
+
</div>
|
|
83
|
+
</div>
|
|
84
|
+
</div>
|
|
85
|
+
);
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
export interface ChecklistItem {
|
|
89
|
+
id: string;
|
|
90
|
+
label: string;
|
|
91
|
+
checked: boolean;
|
|
92
|
+
}
|
|
93
|
+
export interface ChecklistProps {
|
|
94
|
+
id: string;
|
|
95
|
+
items: ChecklistItem[];
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
export function Checklist({ id, items }: ChecklistProps) {
|
|
99
|
+
return (
|
|
100
|
+
<ul
|
|
101
|
+
id={id}
|
|
102
|
+
data-block-id={id}
|
|
103
|
+
className="glyph-checklist"
|
|
104
|
+
style={{
|
|
105
|
+
listStyle: 'none',
|
|
106
|
+
padding: 0,
|
|
107
|
+
margin: '12px 0',
|
|
108
|
+
display: 'flex',
|
|
109
|
+
flexDirection: 'column',
|
|
110
|
+
gap: 6,
|
|
111
|
+
}}
|
|
112
|
+
>
|
|
113
|
+
{items.map((item) => (
|
|
114
|
+
<li
|
|
115
|
+
key={item.id}
|
|
116
|
+
style={{
|
|
117
|
+
display: 'flex',
|
|
118
|
+
alignItems: 'flex-start',
|
|
119
|
+
gap: 10,
|
|
120
|
+
padding: '6px 10px',
|
|
121
|
+
borderRadius: 6,
|
|
122
|
+
background: 'var(--bg-elev)',
|
|
123
|
+
border: '1px solid var(--border)',
|
|
124
|
+
fontSize: 14,
|
|
125
|
+
}}
|
|
126
|
+
>
|
|
127
|
+
<span
|
|
128
|
+
aria-hidden
|
|
129
|
+
style={{
|
|
130
|
+
flexShrink: 0,
|
|
131
|
+
marginTop: 1,
|
|
132
|
+
width: 16,
|
|
133
|
+
height: 16,
|
|
134
|
+
borderRadius: 4,
|
|
135
|
+
border: `1.5px solid ${item.checked ? 'var(--success)' : 'var(--border-strong)'}`,
|
|
136
|
+
background: item.checked ? 'var(--success)' : 'transparent',
|
|
137
|
+
color: 'var(--bg)',
|
|
138
|
+
display: 'inline-flex',
|
|
139
|
+
alignItems: 'center',
|
|
140
|
+
justifyContent: 'center',
|
|
141
|
+
}}
|
|
142
|
+
>
|
|
143
|
+
{item.checked ? <Check size={12} strokeWidth={3} /> : null}
|
|
144
|
+
</span>
|
|
145
|
+
<span style={{
|
|
146
|
+
color: item.checked ? 'var(--text-dim)' : 'var(--text)',
|
|
147
|
+
textDecoration: item.checked ? 'line-through' : 'none',
|
|
148
|
+
wordBreak: 'break-word',
|
|
149
|
+
}}>
|
|
150
|
+
{item.label}
|
|
151
|
+
</span>
|
|
152
|
+
</li>
|
|
153
|
+
))}
|
|
154
|
+
</ul>
|
|
155
|
+
);
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
export interface TableProps {
|
|
159
|
+
id: string;
|
|
160
|
+
columns: string[];
|
|
161
|
+
rows: string[][];
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
export function Table({ id, columns, rows }: TableProps) {
|
|
165
|
+
return (
|
|
166
|
+
<div
|
|
167
|
+
id={id}
|
|
168
|
+
data-block-id={id}
|
|
169
|
+
className="glyph-table-wrap"
|
|
170
|
+
style={{
|
|
171
|
+
margin: '12px 0',
|
|
172
|
+
border: '1px solid var(--border)',
|
|
173
|
+
borderRadius: 8,
|
|
174
|
+
overflow: 'auto',
|
|
175
|
+
background: 'var(--bg-elev)',
|
|
176
|
+
}}
|
|
177
|
+
>
|
|
178
|
+
<table
|
|
179
|
+
style={{
|
|
180
|
+
width: '100%',
|
|
181
|
+
borderCollapse: 'collapse',
|
|
182
|
+
fontSize: 13,
|
|
183
|
+
}}
|
|
184
|
+
>
|
|
185
|
+
<thead>
|
|
186
|
+
<tr>
|
|
187
|
+
{columns.map((c, i) => (
|
|
188
|
+
<th
|
|
189
|
+
key={i}
|
|
190
|
+
style={{
|
|
191
|
+
textAlign: 'left',
|
|
192
|
+
padding: '8px 12px',
|
|
193
|
+
borderBottom: '1px solid var(--border-strong)',
|
|
194
|
+
background: 'var(--bg)',
|
|
195
|
+
color: 'var(--text-dim)',
|
|
196
|
+
fontWeight: 600,
|
|
197
|
+
fontSize: 12,
|
|
198
|
+
textTransform: 'uppercase',
|
|
199
|
+
letterSpacing: 0.3,
|
|
200
|
+
whiteSpace: 'nowrap',
|
|
201
|
+
}}
|
|
202
|
+
>
|
|
203
|
+
{c}
|
|
204
|
+
</th>
|
|
205
|
+
))}
|
|
206
|
+
</tr>
|
|
207
|
+
</thead>
|
|
208
|
+
<tbody>
|
|
209
|
+
{rows.map((row, ri) => (
|
|
210
|
+
<tr key={ri} style={{ borderTop: ri === 0 ? 'none' : '1px solid var(--border)' }}>
|
|
211
|
+
{row.map((cell, ci) => (
|
|
212
|
+
<td
|
|
213
|
+
key={ci}
|
|
214
|
+
style={{
|
|
215
|
+
padding: '8px 12px',
|
|
216
|
+
color: 'var(--text)',
|
|
217
|
+
verticalAlign: 'top',
|
|
218
|
+
wordBreak: 'break-word',
|
|
219
|
+
}}
|
|
220
|
+
>
|
|
221
|
+
{cell}
|
|
222
|
+
</td>
|
|
223
|
+
))}
|
|
224
|
+
</tr>
|
|
225
|
+
))}
|
|
226
|
+
</tbody>
|
|
227
|
+
</table>
|
|
228
|
+
</div>
|
|
229
|
+
);
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
export interface CodeTab {
|
|
233
|
+
id: string;
|
|
234
|
+
label: string;
|
|
235
|
+
language: string;
|
|
236
|
+
code: string;
|
|
237
|
+
caption?: string;
|
|
238
|
+
}
|
|
239
|
+
export interface CodeTabsProps {
|
|
240
|
+
id: string;
|
|
241
|
+
tabs: CodeTab[];
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
export function CodeTabs({ id, tabs }: CodeTabsProps) {
|
|
245
|
+
const [activeId, setActiveId] = useState<string>(tabs[0]?.id ?? '');
|
|
246
|
+
const active = useMemo(
|
|
247
|
+
() => tabs.find((t) => t.id === activeId) ?? tabs[0],
|
|
248
|
+
[tabs, activeId],
|
|
249
|
+
);
|
|
250
|
+
|
|
251
|
+
return (
|
|
252
|
+
<div
|
|
253
|
+
id={id}
|
|
254
|
+
data-block-id={id}
|
|
255
|
+
className="glyph-codetabs"
|
|
256
|
+
style={{
|
|
257
|
+
margin: '12px 0',
|
|
258
|
+
border: '1px solid var(--border)',
|
|
259
|
+
borderRadius: 8,
|
|
260
|
+
overflow: 'hidden',
|
|
261
|
+
background: 'var(--bg-elev)',
|
|
262
|
+
}}
|
|
263
|
+
>
|
|
264
|
+
<div
|
|
265
|
+
role="tablist"
|
|
266
|
+
style={{
|
|
267
|
+
display: 'flex',
|
|
268
|
+
gap: 2,
|
|
269
|
+
padding: 4,
|
|
270
|
+
background: 'var(--bg)',
|
|
271
|
+
borderBottom: '1px solid var(--border)',
|
|
272
|
+
overflowX: 'auto',
|
|
273
|
+
}}
|
|
274
|
+
>
|
|
275
|
+
{tabs.map((t) => {
|
|
276
|
+
const selected = t.id === active?.id;
|
|
277
|
+
return (
|
|
278
|
+
<button
|
|
279
|
+
key={t.id}
|
|
280
|
+
type="button"
|
|
281
|
+
role="tab"
|
|
282
|
+
aria-selected={selected}
|
|
283
|
+
onClick={() => setActiveId(t.id)}
|
|
284
|
+
style={{
|
|
285
|
+
padding: '6px 12px',
|
|
286
|
+
fontSize: 12,
|
|
287
|
+
fontFamily: 'var(--font-mono)',
|
|
288
|
+
borderRadius: 6,
|
|
289
|
+
border: 'none',
|
|
290
|
+
cursor: 'pointer',
|
|
291
|
+
background: selected ? 'var(--bg-elev)' : 'transparent',
|
|
292
|
+
color: selected ? 'var(--text-strong)' : 'var(--text-dim)',
|
|
293
|
+
boxShadow: selected ? '0 0 0 1px var(--border)' : 'none',
|
|
294
|
+
whiteSpace: 'nowrap',
|
|
295
|
+
}}
|
|
296
|
+
>
|
|
297
|
+
<span>{t.label}</span>
|
|
298
|
+
{t.language && (
|
|
299
|
+
<span style={{ marginLeft: 6, color: 'var(--text-dim)', fontSize: 11 }}>
|
|
300
|
+
{t.language}
|
|
301
|
+
</span>
|
|
302
|
+
)}
|
|
303
|
+
</button>
|
|
304
|
+
);
|
|
305
|
+
})}
|
|
306
|
+
</div>
|
|
307
|
+
{active && (
|
|
308
|
+
<>
|
|
309
|
+
<pre
|
|
310
|
+
style={{
|
|
311
|
+
margin: 0,
|
|
312
|
+
padding: 14,
|
|
313
|
+
overflowX: 'auto',
|
|
314
|
+
fontFamily: 'var(--font-mono)',
|
|
315
|
+
fontSize: 12.5,
|
|
316
|
+
lineHeight: 1.55,
|
|
317
|
+
color: 'var(--text)',
|
|
318
|
+
background: 'var(--bg-elev)',
|
|
319
|
+
}}
|
|
320
|
+
>
|
|
321
|
+
<code>{active.code}</code>
|
|
322
|
+
</pre>
|
|
323
|
+
{active.caption && (
|
|
324
|
+
<div
|
|
325
|
+
style={{
|
|
326
|
+
padding: '8px 14px',
|
|
327
|
+
borderTop: '1px solid var(--border)',
|
|
328
|
+
fontSize: 12,
|
|
329
|
+
color: 'var(--text-dim)',
|
|
330
|
+
background: 'var(--bg)',
|
|
331
|
+
}}
|
|
332
|
+
>
|
|
333
|
+
{active.caption}
|
|
334
|
+
</div>
|
|
335
|
+
)}
|
|
336
|
+
</>
|
|
337
|
+
)}
|
|
338
|
+
</div>
|
|
339
|
+
);
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
export interface DecisionOption {
|
|
343
|
+
id: string;
|
|
344
|
+
label: string;
|
|
345
|
+
detail: string;
|
|
346
|
+
recommended?: boolean;
|
|
347
|
+
}
|
|
348
|
+
export interface DecisionProps {
|
|
349
|
+
id: string;
|
|
350
|
+
title?: string;
|
|
351
|
+
question?: string;
|
|
352
|
+
options: DecisionOption[];
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
export function Decision({ id, title, question, options }: DecisionProps) {
|
|
356
|
+
return (
|
|
357
|
+
<div
|
|
358
|
+
id={id}
|
|
359
|
+
data-block-id={id}
|
|
360
|
+
className="glyph-decision"
|
|
361
|
+
style={{
|
|
362
|
+
margin: '16px 0',
|
|
363
|
+
padding: 16,
|
|
364
|
+
border: '1px solid var(--border)',
|
|
365
|
+
borderRadius: 10,
|
|
366
|
+
background: 'var(--bg-elev)',
|
|
367
|
+
}}
|
|
368
|
+
>
|
|
369
|
+
{title && (
|
|
370
|
+
<h3 style={{ margin: 0, marginBottom: 4, fontSize: 15, fontWeight: 600, color: 'var(--text-strong)' }}>
|
|
371
|
+
{title}
|
|
372
|
+
</h3>
|
|
373
|
+
)}
|
|
374
|
+
{question && (
|
|
375
|
+
<p style={{ margin: 0, marginBottom: 12, fontSize: 13, color: 'var(--text-dim)' }}>
|
|
376
|
+
{question}
|
|
377
|
+
</p>
|
|
378
|
+
)}
|
|
379
|
+
<div style={{ display: 'grid', gap: 10, gridTemplateColumns: 'repeat(auto-fit, minmax(220px, 1fr))' }}>
|
|
380
|
+
{options.map((opt) => {
|
|
381
|
+
const isRec = !!opt.recommended;
|
|
382
|
+
return (
|
|
383
|
+
<div
|
|
384
|
+
key={opt.id}
|
|
385
|
+
style={{
|
|
386
|
+
position: 'relative',
|
|
387
|
+
padding: 12,
|
|
388
|
+
borderRadius: 8,
|
|
389
|
+
border: isRec ? '2px solid var(--success)' : '1px solid var(--border)',
|
|
390
|
+
background: isRec ? 'var(--success-soft)' : 'var(--bg)',
|
|
391
|
+
}}
|
|
392
|
+
>
|
|
393
|
+
{isRec && (
|
|
394
|
+
<span
|
|
395
|
+
style={{
|
|
396
|
+
position: 'absolute',
|
|
397
|
+
top: -10,
|
|
398
|
+
right: 10,
|
|
399
|
+
padding: '2px 8px',
|
|
400
|
+
fontSize: 11,
|
|
401
|
+
fontWeight: 600,
|
|
402
|
+
color: 'var(--bg)',
|
|
403
|
+
background: 'var(--success)',
|
|
404
|
+
borderRadius: 999,
|
|
405
|
+
}}
|
|
406
|
+
>
|
|
407
|
+
Recommended
|
|
408
|
+
</span>
|
|
409
|
+
)}
|
|
410
|
+
<div style={{ fontWeight: 600, fontSize: 14, color: 'var(--text-strong)', marginBottom: 4 }}>
|
|
411
|
+
{opt.label}
|
|
412
|
+
</div>
|
|
413
|
+
<div style={{ fontSize: 13, color: 'var(--text)' }}>
|
|
414
|
+
{opt.detail}
|
|
415
|
+
</div>
|
|
416
|
+
</div>
|
|
417
|
+
);
|
|
418
|
+
})}
|
|
419
|
+
</div>
|
|
420
|
+
</div>
|
|
421
|
+
);
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
export interface OpenQuestion {
|
|
425
|
+
id: string;
|
|
426
|
+
label: string;
|
|
427
|
+
kind: 'choice' | 'text' | 'multi';
|
|
428
|
+
options?: string[];
|
|
429
|
+
}
|
|
430
|
+
export interface OpenQuestionsProps {
|
|
431
|
+
id: string;
|
|
432
|
+
questions: OpenQuestion[];
|
|
433
|
+
}
|
|
434
|
+
|
|
435
|
+
export function OpenQuestions({ id, questions }: OpenQuestionsProps) {
|
|
436
|
+
const [answers, setAnswers] = useState<Record<string, string | string[]>>({});
|
|
437
|
+
|
|
438
|
+
function setAnswer(qid: string, value: string | string[]) {
|
|
439
|
+
setAnswers((prev) => ({ ...prev, [qid]: value }));
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
return (
|
|
443
|
+
<div
|
|
444
|
+
id={id}
|
|
445
|
+
data-block-id={id}
|
|
446
|
+
className="glyph-openquestions"
|
|
447
|
+
style={{
|
|
448
|
+
margin: '16px 0',
|
|
449
|
+
padding: 16,
|
|
450
|
+
border: '1px solid var(--border)',
|
|
451
|
+
borderRadius: 10,
|
|
452
|
+
background: 'var(--bg-elev)',
|
|
453
|
+
display: 'flex',
|
|
454
|
+
flexDirection: 'column',
|
|
455
|
+
gap: 14,
|
|
456
|
+
}}
|
|
457
|
+
>
|
|
458
|
+
<div style={{ fontSize: 13, fontWeight: 600, color: 'var(--text-strong)' }}>
|
|
459
|
+
Open questions
|
|
460
|
+
</div>
|
|
461
|
+
{questions.map((q) => (
|
|
462
|
+
<div key={q.id} style={{ display: 'flex', flexDirection: 'column', gap: 6 }}>
|
|
463
|
+
<label
|
|
464
|
+
htmlFor={`oq-${q.id}`}
|
|
465
|
+
style={{ fontSize: 13, color: 'var(--text)', fontWeight: 500 }}
|
|
466
|
+
>
|
|
467
|
+
{q.label}
|
|
468
|
+
</label>
|
|
469
|
+
{q.kind === 'choice' && (
|
|
470
|
+
<select
|
|
471
|
+
id={`oq-${q.id}`}
|
|
472
|
+
value={(answers[q.id] as string) ?? ''}
|
|
473
|
+
onChange={(e) => setAnswer(q.id, e.target.value)}
|
|
474
|
+
style={inputStyle}
|
|
475
|
+
>
|
|
476
|
+
<option value="">— select —</option>
|
|
477
|
+
{(q.options ?? []).map((opt) => (
|
|
478
|
+
<option key={opt} value={opt}>{opt}</option>
|
|
479
|
+
))}
|
|
480
|
+
</select>
|
|
481
|
+
)}
|
|
482
|
+
{q.kind === 'text' && (
|
|
483
|
+
<input
|
|
484
|
+
id={`oq-${q.id}`}
|
|
485
|
+
type="text"
|
|
486
|
+
value={(answers[q.id] as string) ?? ''}
|
|
487
|
+
onChange={(e) => setAnswer(q.id, e.target.value)}
|
|
488
|
+
style={inputStyle}
|
|
489
|
+
/>
|
|
490
|
+
)}
|
|
491
|
+
{q.kind === 'multi' && (
|
|
492
|
+
<div style={{ display: 'flex', flexDirection: 'column', gap: 4 }}>
|
|
493
|
+
{(q.options ?? []).map((opt) => {
|
|
494
|
+
const current = (answers[q.id] as string[]) ?? [];
|
|
495
|
+
const checked = current.includes(opt);
|
|
496
|
+
return (
|
|
497
|
+
<label
|
|
498
|
+
key={opt}
|
|
499
|
+
style={{
|
|
500
|
+
display: 'flex',
|
|
501
|
+
alignItems: 'center',
|
|
502
|
+
gap: 8,
|
|
503
|
+
fontSize: 13,
|
|
504
|
+
color: 'var(--text)',
|
|
505
|
+
cursor: 'pointer',
|
|
506
|
+
}}
|
|
507
|
+
>
|
|
508
|
+
<input
|
|
509
|
+
type="checkbox"
|
|
510
|
+
checked={checked}
|
|
511
|
+
onChange={() => {
|
|
512
|
+
const next = checked
|
|
513
|
+
? current.filter((o) => o !== opt)
|
|
514
|
+
: [...current, opt];
|
|
515
|
+
setAnswer(q.id, next);
|
|
516
|
+
}}
|
|
517
|
+
/>
|
|
518
|
+
<span>{opt}</span>
|
|
519
|
+
</label>
|
|
520
|
+
);
|
|
521
|
+
})}
|
|
522
|
+
</div>
|
|
523
|
+
)}
|
|
524
|
+
</div>
|
|
525
|
+
))}
|
|
526
|
+
</div>
|
|
527
|
+
);
|
|
528
|
+
}
|
|
529
|
+
|
|
530
|
+
const inputStyle: React.CSSProperties = {
|
|
531
|
+
padding: '6px 10px',
|
|
532
|
+
fontSize: 13,
|
|
533
|
+
borderRadius: 6,
|
|
534
|
+
border: '1px solid var(--border-strong)',
|
|
535
|
+
background: 'var(--bg)',
|
|
536
|
+
color: 'var(--text)',
|
|
537
|
+
fontFamily: 'inherit',
|
|
538
|
+
};
|
|
539
|
+
|
|
540
|
+
export interface FileTreeEntry {
|
|
541
|
+
path: string;
|
|
542
|
+
change: 'added' | 'modified' | 'removed' | 'renamed';
|
|
543
|
+
note?: string;
|
|
544
|
+
}
|
|
545
|
+
export interface FileTreeProps {
|
|
546
|
+
id: string;
|
|
547
|
+
title?: string;
|
|
548
|
+
entries: FileTreeEntry[];
|
|
549
|
+
}
|
|
550
|
+
|
|
551
|
+
const FILE_CHANGE: Record<FileTreeEntry['change'], { bg: string; fg: string; label: string }> = {
|
|
552
|
+
added: { bg: 'var(--success-soft)', fg: 'var(--success)', label: 'A' },
|
|
553
|
+
modified: { bg: 'var(--info-soft, rgba(96, 165, 250, 0.12))', fg: 'var(--info)', label: 'M' },
|
|
554
|
+
removed: { bg: 'var(--error-soft)', fg: 'var(--error)', label: 'D' },
|
|
555
|
+
renamed: { bg: 'rgba(139, 92, 246, 0.15)', fg: 'var(--accent)', label: 'R' },
|
|
556
|
+
};
|
|
557
|
+
|
|
558
|
+
export function FileTree({ id, title, entries }: FileTreeProps) {
|
|
559
|
+
return (
|
|
560
|
+
<div
|
|
561
|
+
id={id}
|
|
562
|
+
data-block-id={id}
|
|
563
|
+
className="glyph-filetree"
|
|
564
|
+
style={{
|
|
565
|
+
margin: '12px 0',
|
|
566
|
+
padding: title ? 14 : 8,
|
|
567
|
+
border: '1px solid var(--border)',
|
|
568
|
+
borderRadius: 8,
|
|
569
|
+
background: 'var(--bg-elev)',
|
|
570
|
+
}}
|
|
571
|
+
>
|
|
572
|
+
{title && (
|
|
573
|
+
<div
|
|
574
|
+
style={{
|
|
575
|
+
fontSize: 12,
|
|
576
|
+
fontWeight: 600,
|
|
577
|
+
color: 'var(--text-dim)',
|
|
578
|
+
textTransform: 'uppercase',
|
|
579
|
+
letterSpacing: 0.4,
|
|
580
|
+
marginBottom: 8,
|
|
581
|
+
}}
|
|
582
|
+
>
|
|
583
|
+
{title}
|
|
584
|
+
</div>
|
|
585
|
+
)}
|
|
586
|
+
<ul style={{ listStyle: 'none', padding: 0, margin: 0, display: 'flex', flexDirection: 'column', gap: 2 }}>
|
|
587
|
+
{entries.map((e) => {
|
|
588
|
+
const t = FILE_CHANGE[e.change];
|
|
589
|
+
return (
|
|
590
|
+
<li
|
|
591
|
+
key={e.path}
|
|
592
|
+
style={{
|
|
593
|
+
display: 'flex',
|
|
594
|
+
alignItems: 'center',
|
|
595
|
+
gap: 10,
|
|
596
|
+
padding: '5px 8px',
|
|
597
|
+
borderRadius: 5,
|
|
598
|
+
fontSize: 13,
|
|
599
|
+
}}
|
|
600
|
+
>
|
|
601
|
+
<span
|
|
602
|
+
aria-label={e.change}
|
|
603
|
+
title={e.change}
|
|
604
|
+
style={{
|
|
605
|
+
flexShrink: 0,
|
|
606
|
+
width: 22,
|
|
607
|
+
height: 18,
|
|
608
|
+
borderRadius: 4,
|
|
609
|
+
background: t.bg,
|
|
610
|
+
color: t.fg,
|
|
611
|
+
display: 'inline-flex',
|
|
612
|
+
alignItems: 'center',
|
|
613
|
+
justifyContent: 'center',
|
|
614
|
+
fontSize: 10,
|
|
615
|
+
fontWeight: 700,
|
|
616
|
+
fontFamily: 'var(--font-mono)',
|
|
617
|
+
}}
|
|
618
|
+
>
|
|
619
|
+
{t.label}
|
|
620
|
+
</span>
|
|
621
|
+
<span
|
|
622
|
+
style={{
|
|
623
|
+
fontFamily: 'var(--font-mono)',
|
|
624
|
+
color: 'var(--text)',
|
|
625
|
+
wordBreak: 'break-all',
|
|
626
|
+
flex: 1,
|
|
627
|
+
}}
|
|
628
|
+
>
|
|
629
|
+
{e.path}
|
|
630
|
+
</span>
|
|
631
|
+
{e.note && (
|
|
632
|
+
<span style={{ fontSize: 12, color: 'var(--text-dim)' }}>
|
|
633
|
+
{e.note}
|
|
634
|
+
</span>
|
|
635
|
+
)}
|
|
636
|
+
</li>
|
|
637
|
+
);
|
|
638
|
+
})}
|
|
639
|
+
</ul>
|
|
640
|
+
</div>
|
|
641
|
+
);
|
|
642
|
+
}
|
|
643
|
+
|
|
644
|
+
export interface DiffProps {
|
|
645
|
+
id: string;
|
|
646
|
+
filename?: string;
|
|
647
|
+
language?: string;
|
|
648
|
+
mode?: 'split' | 'unified';
|
|
649
|
+
before: string;
|
|
650
|
+
after: string;
|
|
651
|
+
}
|
|
652
|
+
|
|
653
|
+
export function Diff({ id, filename, language, mode = 'unified', before, after }: DiffProps) {
|
|
654
|
+
const beforeLines = before.split('\n');
|
|
655
|
+
const afterLines = after.split('\n');
|
|
656
|
+
|
|
657
|
+
const header = (
|
|
658
|
+
<div
|
|
659
|
+
style={{
|
|
660
|
+
display: 'flex',
|
|
661
|
+
alignItems: 'center',
|
|
662
|
+
gap: 8,
|
|
663
|
+
padding: '6px 12px',
|
|
664
|
+
background: 'var(--bg)',
|
|
665
|
+
borderBottom: '1px solid var(--border)',
|
|
666
|
+
fontSize: 12,
|
|
667
|
+
color: 'var(--text-dim)',
|
|
668
|
+
fontFamily: 'var(--font-mono)',
|
|
669
|
+
}}
|
|
670
|
+
>
|
|
671
|
+
<FileCode2 size={14} />
|
|
672
|
+
<span style={{ color: 'var(--text)' }}>{filename ?? 'diff'}</span>
|
|
673
|
+
{language && <span>· {language}</span>}
|
|
674
|
+
<span style={{ marginLeft: 'auto', textTransform: 'uppercase', letterSpacing: 0.3 }}>
|
|
675
|
+
{mode}
|
|
676
|
+
</span>
|
|
677
|
+
</div>
|
|
678
|
+
);
|
|
679
|
+
|
|
680
|
+
const codeStyle: React.CSSProperties = {
|
|
681
|
+
margin: 0,
|
|
682
|
+
padding: 0,
|
|
683
|
+
fontFamily: 'var(--font-mono)',
|
|
684
|
+
fontSize: 12.5,
|
|
685
|
+
lineHeight: 1.55,
|
|
686
|
+
color: 'var(--text)',
|
|
687
|
+
background: 'var(--bg-elev)',
|
|
688
|
+
};
|
|
689
|
+
|
|
690
|
+
const lineRow = (sign: string, content: string, kind: 'del' | 'add' | 'ctx') => {
|
|
691
|
+
const colors: Record<typeof kind, string> = {
|
|
692
|
+
del: 'var(--error-soft)',
|
|
693
|
+
add: 'var(--success-soft)',
|
|
694
|
+
ctx: 'transparent',
|
|
695
|
+
};
|
|
696
|
+
const signColor: Record<typeof kind, string> = {
|
|
697
|
+
del: 'var(--error)',
|
|
698
|
+
add: 'var(--success)',
|
|
699
|
+
ctx: 'var(--text-dim)',
|
|
700
|
+
};
|
|
701
|
+
return (
|
|
702
|
+
<div
|
|
703
|
+
style={{
|
|
704
|
+
display: 'flex',
|
|
705
|
+
padding: '0 12px',
|
|
706
|
+
background: colors[kind],
|
|
707
|
+
}}
|
|
708
|
+
>
|
|
709
|
+
<span style={{ width: 18, color: signColor[kind], userSelect: 'none', flexShrink: 0 }}>{sign}</span>
|
|
710
|
+
<span style={{ whiteSpace: 'pre', flex: 1, overflowX: 'auto' }}>{content || ' '}</span>
|
|
711
|
+
</div>
|
|
712
|
+
);
|
|
713
|
+
};
|
|
714
|
+
|
|
715
|
+
return (
|
|
716
|
+
<div
|
|
717
|
+
id={id}
|
|
718
|
+
data-block-id={id}
|
|
719
|
+
className="glyph-diff"
|
|
720
|
+
style={{
|
|
721
|
+
margin: '12px 0',
|
|
722
|
+
border: '1px solid var(--border)',
|
|
723
|
+
borderRadius: 8,
|
|
724
|
+
overflow: 'hidden',
|
|
725
|
+
background: 'var(--bg-elev)',
|
|
726
|
+
}}
|
|
727
|
+
>
|
|
728
|
+
{header}
|
|
729
|
+
{mode === 'unified' ? (
|
|
730
|
+
<pre style={codeStyle}>
|
|
731
|
+
{beforeLines.map((l, i) => (
|
|
732
|
+
<div key={`b${i}`}>{lineRow('-', l, 'del')}</div>
|
|
733
|
+
))}
|
|
734
|
+
{afterLines.map((l, i) => (
|
|
735
|
+
<div key={`a${i}`}>{lineRow('+', l, 'add')}</div>
|
|
736
|
+
))}
|
|
737
|
+
</pre>
|
|
738
|
+
) : (
|
|
739
|
+
<div style={{ display: 'grid', gridTemplateColumns: '1fr 1fr' }}>
|
|
740
|
+
<pre style={{ ...codeStyle, borderRight: '1px solid var(--border)' }}>
|
|
741
|
+
{beforeLines.map((l, i) => (
|
|
742
|
+
<div key={i}>{lineRow('-', l, 'del')}</div>
|
|
743
|
+
))}
|
|
744
|
+
</pre>
|
|
745
|
+
<pre style={codeStyle}>
|
|
746
|
+
{afterLines.map((l, i) => (
|
|
747
|
+
<div key={i}>{lineRow('+', l, 'add')}</div>
|
|
748
|
+
))}
|
|
749
|
+
</pre>
|
|
750
|
+
</div>
|
|
751
|
+
)}
|
|
752
|
+
</div>
|
|
753
|
+
);
|
|
754
|
+
}
|
|
755
|
+
|
|
756
|
+
export interface StatProps {
|
|
757
|
+
id: string;
|
|
758
|
+
label: string;
|
|
759
|
+
value: string | number;
|
|
760
|
+
trend?: 'up' | 'down' | 'flat';
|
|
761
|
+
hint?: string;
|
|
762
|
+
}
|
|
763
|
+
|
|
764
|
+
const TREND_STYLE: Record<NonNullable<StatProps['trend']>, { fg: string; Icon: typeof Minus; label: string }> = {
|
|
765
|
+
up: { fg: 'var(--success)', Icon: ChevronDown, label: 'trending up' },
|
|
766
|
+
down: { fg: 'var(--error)', Icon: ChevronDown, label: 'trending down' },
|
|
767
|
+
flat: { fg: 'var(--text-dim)', Icon: Minus, label: 'flat' },
|
|
768
|
+
};
|
|
769
|
+
|
|
770
|
+
export function Stat({ id, label, value, trend, hint }: StatProps) {
|
|
771
|
+
const t = trend ? TREND_STYLE[trend] : null;
|
|
772
|
+
return (
|
|
773
|
+
<div
|
|
774
|
+
id={id}
|
|
775
|
+
data-block-id={id}
|
|
776
|
+
className="glyph-stat"
|
|
777
|
+
style={{
|
|
778
|
+
padding: 14,
|
|
779
|
+
border: '1px solid var(--border)',
|
|
780
|
+
borderRadius: 10,
|
|
781
|
+
background: 'var(--bg-elev)',
|
|
782
|
+
display: 'flex',
|
|
783
|
+
flexDirection: 'column',
|
|
784
|
+
gap: 4,
|
|
785
|
+
minWidth: 140,
|
|
786
|
+
}}
|
|
787
|
+
>
|
|
788
|
+
<div style={{ fontSize: 12, color: 'var(--text-dim)', textTransform: 'uppercase', letterSpacing: 0.4 }}>
|
|
789
|
+
{label}
|
|
790
|
+
</div>
|
|
791
|
+
<div style={{ display: 'flex', alignItems: 'baseline', gap: 8 }}>
|
|
792
|
+
<span style={{ fontSize: 24, fontWeight: 700, color: 'var(--text-strong)' }}>
|
|
793
|
+
{value}
|
|
794
|
+
</span>
|
|
795
|
+
{t && (
|
|
796
|
+
<span
|
|
797
|
+
aria-label={t.label}
|
|
798
|
+
style={{
|
|
799
|
+
display: 'inline-flex',
|
|
800
|
+
alignItems: 'center',
|
|
801
|
+
color: t.fg,
|
|
802
|
+
transform: t.Icon === ChevronDown && trend === 'up' ? 'rotate(180deg)' : undefined,
|
|
803
|
+
}}
|
|
804
|
+
>
|
|
805
|
+
<t.Icon size={14} />
|
|
806
|
+
</span>
|
|
807
|
+
)}
|
|
808
|
+
</div>
|
|
809
|
+
{hint && (
|
|
810
|
+
<div style={{ fontSize: 12, color: 'var(--text-dim)' }}>
|
|
811
|
+
{hint}
|
|
812
|
+
</div>
|
|
813
|
+
)}
|
|
814
|
+
</div>
|
|
815
|
+
);
|
|
816
|
+
}
|
|
817
|
+
|
|
818
|
+
export interface WorkflowStep {
|
|
819
|
+
id: string;
|
|
820
|
+
label: string;
|
|
821
|
+
type: 'task' | 'decision' | 'note';
|
|
822
|
+
}
|
|
823
|
+
export interface WorkflowConnection {
|
|
824
|
+
from: string;
|
|
825
|
+
to: string;
|
|
826
|
+
label?: string;
|
|
827
|
+
}
|
|
828
|
+
export interface WorkflowProps {
|
|
829
|
+
id: string;
|
|
830
|
+
steps: WorkflowStep[];
|
|
831
|
+
connections?: WorkflowConnection[];
|
|
832
|
+
}
|
|
833
|
+
|
|
834
|
+
const STEP_COLORS: Record<WorkflowStep['type'], { stroke: string; fill: string; fg: string }> = {
|
|
835
|
+
task: { stroke: 'var(--info)', fill: 'var(--bg-elev)', fg: 'var(--text)' },
|
|
836
|
+
decision: { stroke: 'var(--warning)', fill: 'var(--bg-elev)', fg: 'var(--text)' },
|
|
837
|
+
note: { stroke: 'var(--border-strong)', fill: 'var(--bg)', fg: 'var(--text-dim)' },
|
|
838
|
+
};
|
|
839
|
+
|
|
840
|
+
const BOX_W = 160;
|
|
841
|
+
const BOX_H = 56;
|
|
842
|
+
const GAP_X = 60;
|
|
843
|
+
const GAP_Y = 80;
|
|
844
|
+
|
|
845
|
+
export function Workflow({ id, steps, connections = [] }: WorkflowProps) {
|
|
846
|
+
if (steps.length === 0) {
|
|
847
|
+
return (
|
|
848
|
+
<div id={id} data-block-id={id} className="glyph-workflow">
|
|
849
|
+
<Empty id={id} />
|
|
850
|
+
</div>
|
|
851
|
+
);
|
|
852
|
+
}
|
|
853
|
+
|
|
854
|
+
const byId = new Map(steps.map((s) => [s.id, s] as const));
|
|
855
|
+
const layout = layoutSteps(steps);
|
|
856
|
+
|
|
857
|
+
const cols = Math.max(...layout.map((p) => p.col)) + 1;
|
|
858
|
+
const rows = Math.max(...layout.map((p) => p.row)) + 1;
|
|
859
|
+
const width = cols * (BOX_W + GAP_X) + GAP_X;
|
|
860
|
+
const height = rows * (BOX_H + GAP_Y) + GAP_Y;
|
|
861
|
+
|
|
862
|
+
function nodeCenter(stepId: string): { x: number; y: number } | null {
|
|
863
|
+
const step = byId.get(stepId);
|
|
864
|
+
if (!step) return null;
|
|
865
|
+
const pos = layout.find((p) => p.id === stepId);
|
|
866
|
+
if (!pos) return null;
|
|
867
|
+
return {
|
|
868
|
+
x: GAP_X + pos.col * (BOX_W + GAP_X) + BOX_W / 2,
|
|
869
|
+
y: GAP_Y + pos.row * (BOX_H + GAP_Y) + BOX_H / 2,
|
|
870
|
+
};
|
|
871
|
+
}
|
|
872
|
+
|
|
873
|
+
return (
|
|
874
|
+
<div
|
|
875
|
+
id={id}
|
|
876
|
+
data-block-id={id}
|
|
877
|
+
className="glyph-workflow"
|
|
878
|
+
style={{
|
|
879
|
+
margin: '12px 0',
|
|
880
|
+
padding: 12,
|
|
881
|
+
border: '1px solid var(--border)',
|
|
882
|
+
borderRadius: 10,
|
|
883
|
+
background: 'var(--bg-elev)',
|
|
884
|
+
overflow: 'auto',
|
|
885
|
+
}}
|
|
886
|
+
>
|
|
887
|
+
<svg
|
|
888
|
+
role="img"
|
|
889
|
+
aria-label="Workflow diagram"
|
|
890
|
+
width={width}
|
|
891
|
+
height={height}
|
|
892
|
+
style={{ display: 'block', maxWidth: '100%' }}
|
|
893
|
+
>
|
|
894
|
+
<defs>
|
|
895
|
+
<marker
|
|
896
|
+
id={`arrow-${id}`}
|
|
897
|
+
viewBox="0 0 10 10"
|
|
898
|
+
refX="9"
|
|
899
|
+
refY="5"
|
|
900
|
+
markerWidth="6"
|
|
901
|
+
markerHeight="6"
|
|
902
|
+
orient="auto-start-reverse"
|
|
903
|
+
>
|
|
904
|
+
<path d="M 0 0 L 10 5 L 0 10 z" fill="var(--text-dim)" />
|
|
905
|
+
</marker>
|
|
906
|
+
</defs>
|
|
907
|
+
|
|
908
|
+
{connections.map((c, i) => {
|
|
909
|
+
const from = nodeCenter(c.from);
|
|
910
|
+
const to = nodeCenter(c.to);
|
|
911
|
+
if (!from || !to) return null;
|
|
912
|
+
const dx = to.x - from.x;
|
|
913
|
+
const dy = to.y - from.y;
|
|
914
|
+
const fromX = dx >= 0 ? from.x + BOX_W / 2 : from.x - BOX_W / 2;
|
|
915
|
+
const toX = dx >= 0 ? to.x - BOX_W / 2 : to.x + BOX_W / 2;
|
|
916
|
+
const fromY = dy >= 0 ? from.y + BOX_H / 2 : from.y - BOX_H / 2;
|
|
917
|
+
const toY = dy >= 0 ? to.y - BOX_H / 2 : to.y + BOX_H / 2;
|
|
918
|
+
const midX = (fromX + toX) / 2;
|
|
919
|
+
const midY = (fromY + toY) / 2;
|
|
920
|
+
return (
|
|
921
|
+
<g key={i}>
|
|
922
|
+
<line
|
|
923
|
+
x1={fromX}
|
|
924
|
+
y1={fromY}
|
|
925
|
+
x2={toX}
|
|
926
|
+
y2={toY}
|
|
927
|
+
stroke="var(--text-dim)"
|
|
928
|
+
strokeWidth={1.5}
|
|
929
|
+
markerEnd={`url(#arrow-${id})`}
|
|
930
|
+
/>
|
|
931
|
+
{c.label && (
|
|
932
|
+
<text
|
|
933
|
+
x={midX}
|
|
934
|
+
y={midY - 4}
|
|
935
|
+
fontSize={10}
|
|
936
|
+
fill="var(--text-dim)"
|
|
937
|
+
textAnchor="middle"
|
|
938
|
+
fontFamily="var(--font-mono)"
|
|
939
|
+
>
|
|
940
|
+
{c.label}
|
|
941
|
+
</text>
|
|
942
|
+
)}
|
|
943
|
+
</g>
|
|
944
|
+
);
|
|
945
|
+
})}
|
|
946
|
+
|
|
947
|
+
{steps.map((s) => {
|
|
948
|
+
const pos = layout.find((p) => p.id === s.id);
|
|
949
|
+
if (!pos) return null;
|
|
950
|
+
const x = GAP_X + pos.col * (BOX_W + GAP_X);
|
|
951
|
+
const y = GAP_Y + pos.row * (BOX_H + GAP_Y);
|
|
952
|
+
const c = STEP_COLORS[s.type];
|
|
953
|
+
if (s.type === 'decision') {
|
|
954
|
+
const cx = x + BOX_W / 2;
|
|
955
|
+
const cy = y + BOX_H / 2;
|
|
956
|
+
const points = [
|
|
957
|
+
[cx, y],
|
|
958
|
+
[x + BOX_W, cy],
|
|
959
|
+
[cx, y + BOX_H],
|
|
960
|
+
[x, cy],
|
|
961
|
+
]
|
|
962
|
+
.map((p) => p.join(','))
|
|
963
|
+
.join(' ');
|
|
964
|
+
return (
|
|
965
|
+
<g key={s.id}>
|
|
966
|
+
<polygon
|
|
967
|
+
points={points}
|
|
968
|
+
fill={c.fill}
|
|
969
|
+
stroke={c.stroke}
|
|
970
|
+
strokeWidth={2}
|
|
971
|
+
/>
|
|
972
|
+
<foreignObject x={x + 8} y={cy - 14} width={BOX_W - 16} height={28}>
|
|
973
|
+
<div
|
|
974
|
+
style={{
|
|
975
|
+
display: 'flex',
|
|
976
|
+
alignItems: 'center',
|
|
977
|
+
justifyContent: 'center',
|
|
978
|
+
gap: 4,
|
|
979
|
+
fontSize: 12,
|
|
980
|
+
color: c.fg,
|
|
981
|
+
textAlign: 'center',
|
|
982
|
+
lineHeight: 1.2,
|
|
983
|
+
fontStyle: 'italic',
|
|
984
|
+
height: '100%',
|
|
985
|
+
}}
|
|
986
|
+
>
|
|
987
|
+
<Diamond size={11} />
|
|
988
|
+
{s.label}
|
|
989
|
+
</div>
|
|
990
|
+
</foreignObject>
|
|
991
|
+
</g>
|
|
992
|
+
);
|
|
993
|
+
}
|
|
994
|
+
const isNote = s.type === 'note';
|
|
995
|
+
return (
|
|
996
|
+
<g key={s.id}>
|
|
997
|
+
<rect
|
|
998
|
+
x={x}
|
|
999
|
+
y={y}
|
|
1000
|
+
width={BOX_W}
|
|
1001
|
+
height={BOX_H}
|
|
1002
|
+
rx={8}
|
|
1003
|
+
fill={c.fill}
|
|
1004
|
+
stroke={c.stroke}
|
|
1005
|
+
strokeWidth={isNote ? 1 : 2}
|
|
1006
|
+
strokeDasharray={isNote ? '4 3' : undefined}
|
|
1007
|
+
/>
|
|
1008
|
+
<foreignObject x={x + 6} y={y + 6} width={BOX_W - 12} height={BOX_H - 12}>
|
|
1009
|
+
<div
|
|
1010
|
+
style={{
|
|
1011
|
+
display: 'flex',
|
|
1012
|
+
alignItems: 'center',
|
|
1013
|
+
justifyContent: 'center',
|
|
1014
|
+
gap: 6,
|
|
1015
|
+
fontSize: 12,
|
|
1016
|
+
color: c.fg,
|
|
1017
|
+
textAlign: 'center',
|
|
1018
|
+
lineHeight: 1.25,
|
|
1019
|
+
fontStyle: isNote ? 'italic' : 'normal',
|
|
1020
|
+
height: '100%',
|
|
1021
|
+
}}
|
|
1022
|
+
>
|
|
1023
|
+
{isNote && <StickyNote size={11} />}
|
|
1024
|
+
{s.label}
|
|
1025
|
+
</div>
|
|
1026
|
+
</foreignObject>
|
|
1027
|
+
</g>
|
|
1028
|
+
);
|
|
1029
|
+
})}
|
|
1030
|
+
</svg>
|
|
1031
|
+
</div>
|
|
1032
|
+
);
|
|
1033
|
+
}
|
|
1034
|
+
|
|
1035
|
+
function Empty({ id }: { id: string }) {
|
|
1036
|
+
return (
|
|
1037
|
+
<div
|
|
1038
|
+
id={id}
|
|
1039
|
+
style={{
|
|
1040
|
+
padding: 20,
|
|
1041
|
+
textAlign: 'center',
|
|
1042
|
+
color: 'var(--text-dim)',
|
|
1043
|
+
fontSize: 13,
|
|
1044
|
+
}}
|
|
1045
|
+
>
|
|
1046
|
+
No workflow steps.
|
|
1047
|
+
</div>
|
|
1048
|
+
);
|
|
1049
|
+
}
|
|
1050
|
+
|
|
1051
|
+
type LayoutPos = { id: string; col: number; row: number };
|
|
1052
|
+
|
|
1053
|
+
function layoutSteps(steps: WorkflowStep[]): LayoutPos[] {
|
|
1054
|
+
if (steps.length === 0) return [];
|
|
1055
|
+
return steps.map((s, i) => ({ id: s.id, col: i, row: 0 }));
|
|
1056
|
+
}
|
|
1057
|
+
|
|
1058
|
+
const proseStyle: React.CSSProperties = {
|
|
1059
|
+
fontSize: 14,
|
|
1060
|
+
lineHeight: 1.6,
|
|
1061
|
+
color: 'var(--text)',
|
|
1062
|
+
};
|
|
1063
|
+
|
|
1064
|
+
// ─── Mockup ─────────────────────────────────────────────────────────────────
|
|
1065
|
+
|
|
1066
|
+
export interface MockupProps {
|
|
1067
|
+
id: string;
|
|
1068
|
+
title?: string;
|
|
1069
|
+
x?: number;
|
|
1070
|
+
y?: number;
|
|
1071
|
+
w?: number;
|
|
1072
|
+
h?: number;
|
|
1073
|
+
html: string;
|
|
1074
|
+
}
|
|
1075
|
+
|
|
1076
|
+
export function Mockup({ id, title, x, y, w, h, html }: MockupProps) {
|
|
1077
|
+
return (
|
|
1078
|
+
<figure
|
|
1079
|
+
id={id}
|
|
1080
|
+
data-block-id={id}
|
|
1081
|
+
className="glyph-mockup"
|
|
1082
|
+
style={{ width: w, minHeight: h }}
|
|
1083
|
+
>
|
|
1084
|
+
{title && <figcaption className="glyph-mockup-title">{title}</figcaption>}
|
|
1085
|
+
<div className="glyph-mockup-frame">
|
|
1086
|
+
<div className="glyph-mockup-chrome">
|
|
1087
|
+
<span />
|
|
1088
|
+
<span />
|
|
1089
|
+
<span />
|
|
1090
|
+
</div>
|
|
1091
|
+
<div
|
|
1092
|
+
className="glyph-mockup-body"
|
|
1093
|
+
dangerouslySetInnerHTML={{ __html: html }}
|
|
1094
|
+
/>
|
|
1095
|
+
</div>
|
|
1096
|
+
</figure>
|
|
1097
|
+
);
|
|
1098
|
+
}
|