mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-03-01 15:03:57 +08:00
feat: add CLI Viewer Page with multi-pane layout and state management
- 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.
This commit is contained in:
@@ -8,9 +8,23 @@
|
||||
"low": "Low"
|
||||
},
|
||||
"stats": {
|
||||
"total": "Total Findings",
|
||||
"total": "Total",
|
||||
"dimensions": "Dimensions"
|
||||
},
|
||||
"progress": {
|
||||
"title": "Review Progress",
|
||||
"totalFindings": "Total Findings",
|
||||
"critical": "Critical",
|
||||
"high": "High"
|
||||
},
|
||||
"dimensionTabs": {
|
||||
"all": "All"
|
||||
},
|
||||
"filters": {
|
||||
"severity": "Severity",
|
||||
"sort": "Sort",
|
||||
"reset": "Reset"
|
||||
},
|
||||
"search": {
|
||||
"placeholder": "Search findings..."
|
||||
},
|
||||
@@ -23,16 +37,38 @@
|
||||
"count": "{count} selected",
|
||||
"selectAll": "Select All",
|
||||
"clearAll": "Clear All",
|
||||
"clear": "Clear"
|
||||
"clear": "Clear",
|
||||
"selectVisible": "Visible",
|
||||
"selectCritical": "Critical"
|
||||
},
|
||||
"export": "Export Fix JSON",
|
||||
"codeContext": "Code Context",
|
||||
"rootCause": "Root Cause",
|
||||
"impact": "Impact",
|
||||
"recommendations": "Recommendations",
|
||||
"fixProgress": {
|
||||
"title": "Fix Progress",
|
||||
"phase": {
|
||||
"planning": "PLANNING",
|
||||
"execution": "EXECUTION",
|
||||
"completion": "COMPLETION"
|
||||
},
|
||||
"stats": {
|
||||
"total": "Total",
|
||||
"fixed": "Fixed",
|
||||
"failed": "Failed",
|
||||
"pending": "Pending"
|
||||
},
|
||||
"activeAgents": "Active Agent",
|
||||
"activeAgentsPlural": "Active Agents",
|
||||
"stage": "Stage",
|
||||
"complete": "{percent}% Complete",
|
||||
"working": "Working..."
|
||||
},
|
||||
"empty": {
|
||||
"title": "No findings found",
|
||||
"message": "Try adjusting your filters or search query."
|
||||
"message": "Try adjusting your filters or search query.",
|
||||
"noFixProgress": "No fix progress data available"
|
||||
},
|
||||
"notFound": {
|
||||
"title": "Review Session Not Found",
|
||||
|
||||
Reference in New Issue
Block a user