feat: Enhance Project Overview and Review Session pages with improved UI and functionality

- Updated ProjectOverviewPage to enhance the guidelines section with better spacing, larger icons, and improved button styles.
- Refactored ReviewSessionPage to unify filter controls, improve selection actions, and enhance the findings list with a new layout.
- Added dimension tabs and severity filters to the SessionsPage for better navigation and filtering.
- Improved SessionDetailPage to utilize a mapping for status labels, enhancing internationalization support.
- Refactored TaskListTab to remove unused priority configuration code.
- Updated store types to better reflect session metadata structure.
- Added a temporary JSON file for future use.
This commit is contained in:
catlog22
2026-02-03 20:58:03 +08:00
parent 37ba849e75
commit a8385e2ea5
18 changed files with 1621 additions and 675 deletions

View File

@@ -5,7 +5,13 @@
"critical": "Critical",
"high": "High",
"medium": "Medium",
"low": "Low"
"low": "Low",
"short": {
"critical": "Crit",
"high": "High",
"medium": "Med",
"low": "Low"
}
},
"stats": {
"total": "Total",
@@ -22,6 +28,7 @@
},
"filters": {
"severity": "Severity",
"dimension": "Dimension",
"sort": "Sort",
"reset": "Reset"
},
@@ -35,6 +42,8 @@
},
"selection": {
"count": "{count} selected",
"countSelected": "{count} selected",
"total": "{count} total",
"selectAll": "Select All",
"clearAll": "Clear All",
"clear": "Clear",
@@ -46,6 +55,23 @@
"rootCause": "Root Cause",
"impact": "Impact",
"recommendations": "Recommendations",
"findingsList": {
"count": "{count} findings"
},
"preview": {
"empty": "Click on a finding to preview details",
"emptyTitle": "Select a Finding",
"emptyTipSeverity": "Filter by severity",
"emptyTipFile": "Group by file",
"location": "Location",
"description": "Description",
"codeContext": "Code Context",
"recommendations": "Recommendations",
"rootCause": "Root Cause",
"impact": "Impact",
"selected": "Selected",
"selectForFix": "Select"
},
"fixProgress": {
"title": "Fix Progress",
"phase": {