feat: add support for running status in account run history and UI

- Enhanced account run history to include 'running' status with appropriate translations and summaries.
- Updated logging status to handle new error message format.
- Introduced new properties for task progress in create-plus-checkout step.
- Modified fill-plus-checkout step to handle additional error details.
- Updated account records manager to display running status and summary correctly.
- Added CSS styles for running status in account records.
- Implemented logic to refresh account run history based on auto-run state changes.
- Added tests for running status and idle log restart functionality in auto-run steps.
- Improved account records manager tests to validate running state display and failure details.
This commit is contained in:
QLHazyCoder
2026-05-10 18:36:34 +08:00
parent 6bd00dbd5b
commit 48d3d5fc12
14 changed files with 727 additions and 35 deletions
+20 -2
View File
@@ -2985,6 +2985,12 @@ header {
border-color: color-mix(in srgb, var(--green) 16%, var(--border));
}
.account-records-stat.is-running {
color: var(--blue);
background: var(--blue-soft);
border-color: color-mix(in srgb, var(--blue) 16%, var(--border));
}
.account-records-stat.is-failed {
color: var(--red);
background: var(--red-soft);
@@ -3158,8 +3164,11 @@ header {
min-width: 0;
flex: 1;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow-wrap: anywhere;
white-space: normal;
color: var(--text-secondary);
font-size: 11px;
line-height: 1.4;
@@ -3186,6 +3195,15 @@ header {
color: var(--green);
}
.account-record-item.is-running {
border-color: color-mix(in srgb, var(--blue) 14%, var(--border-subtle));
}
.account-record-item.is-running .account-record-item-status {
background: var(--blue-soft);
color: var(--blue);
}
.account-record-item.is-failed {
border-color: color-mix(in srgb, var(--red) 14%, var(--border-subtle));
}