-
Notifications
You must be signed in to change notification settings - Fork 32
🎨 [Frontend] Show Runs history #7681
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
🎨 [Frontend] Show Runs history #7681
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This pull request introduces a history view for computational runs in the Activity Overview.
- Introduces a new method "fetchJobsHistory" to retrieve runs history.
- Updates table models and browser components to support configurable run filters (latest vs. historical).
- Adjusts API endpoint mappings in data resources to reflect the new history and latest active runs endpoints.
Reviewed Changes
Copilot reviewed 6 out of 6 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| services/static-webserver/client/source/class/osparc/store/Jobs.js | Added "fetchJobsHistory" and updated resource keys/endpoints. |
| services/static-webserver/client/source/class/osparc/jobs/RunsTableModel.js | Updated constructor parameters and conditional fetching of jobs based on history flag. |
| services/static-webserver/client/source/class/osparc/jobs/RunsTable.js | Modified constructor arguments to pass latestOnly and projectUuid. |
| services/static-webserver/client/source/class/osparc/jobs/RunsBrowser.js | Refactored runs-table instantiation to include latestOnly and projectUuid parameters. |
| services/static-webserver/client/source/class/osparc/jobs/ActivityOverview.js | Added layout adjustments and integrated historical runs view. |
| services/static-webserver/client/source/class/osparc/data/Resources.js | Updated endpoints and renamed keys for jobs and subJobs resource fetching. |
services/static-webserver/client/source/class/osparc/jobs/RunsTableModel.js
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
|
@Mergifyio queue |
🟠 Waiting for conditions to match
|
|



What do these changes do?
Related issue/s
/computations/{project_id}/iterations#7669How to test
Dev-ops