mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-03-01 12:53:49 +08:00
- Implemented the CliViewerPage component for displaying CLI outputs in a configurable multi-pane layout. - Integrated Zustand for state management, allowing for dynamic layout changes and tab management. - Added layout options: single, split horizontal, split vertical, and 2x2 grid. - Created viewerStore for managing layout, panes, and tabs, including actions for adding/removing panes and tabs. - Added CoordinatorPage barrel export for easier imports.
55 lines
1.3 KiB
JSON
55 lines
1.3 KiB
JSON
{
|
|
"page": {
|
|
"title": "Execution Monitor",
|
|
"subtitle": "View real-time execution status and history"
|
|
},
|
|
"actions": {
|
|
"openCliViewer": "CLI Monitor"
|
|
},
|
|
"currentExecution": {
|
|
"title": "Current Execution",
|
|
"noExecution": "No workflow is currently executing",
|
|
"expand": "Expand",
|
|
"collapse": "Collapse"
|
|
},
|
|
"stats": {
|
|
"title": "Statistics",
|
|
"totalExecutions": "Total Executions",
|
|
"successRate": "Success Rate",
|
|
"avgDuration": "Avg Duration",
|
|
"nodeSuccessRate": "Node Success Rate"
|
|
},
|
|
"history": {
|
|
"title": "Execution History",
|
|
"empty": "No execution history",
|
|
"tabs": {
|
|
"byWorkflow": "By Workflow",
|
|
"timeline": "Timeline",
|
|
"list": "List View"
|
|
}
|
|
},
|
|
"filters": {
|
|
"workflow": "Workflow",
|
|
"status": "Status",
|
|
"dateRange": "Date Range",
|
|
"all": "All Workflows",
|
|
"allStatus": "All Status"
|
|
},
|
|
"execution": {
|
|
"status": {
|
|
"pending": "Pending",
|
|
"running": "Running",
|
|
"paused": "Paused",
|
|
"completed": "Completed",
|
|
"failed": "Failed"
|
|
},
|
|
"duration": "Duration",
|
|
"startedAt": "Started",
|
|
"completedAt": "Completed",
|
|
"nodes": "Nodes",
|
|
"progress": "Progress",
|
|
"logs": "Logs",
|
|
"viewDetails": "View Details"
|
|
}
|
|
}
|