-
Notifications
You must be signed in to change notification settings - Fork 4
Feat/dashboard refine #103
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
Feat/dashboard refine #103
Conversation
- Move project selector to sidebar header (below logo) - Sidebar now shows Experiments, Trials, Runs - Trials and Runs links disabled until parent is selected - Add TrialsPage component with Overview + List tabs - Overview shows stats: total, completed, running, failed, avg duration - Store selected experimentId and trialId in context for navigation
- Store selected experimentId and trialId in context - Sidebar Trials link enabled after selecting experiment - Sidebar Runs link enabled after selecting trial - ExperimentDetail sets experimentId in context - TrialDetail sets experimentId and trialId in context - Run IDs now clickable in TrialDetail page
- RunsPage with Overview + List tabs - Overview shows total, completed, running, pending, failed counts - List shows all runs with clickable IDs - RunDetail shows run info, status, and metadata
| @@ -0,0 +1,219 @@ | |||
| import { useState } from "react"; | |||
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.
can you use lowercase for the folders and file names?
|
For 1, understood, will change and only “Experiments” will remain in the sidebar. |
Here I guess you mean two tables, or other better layouts if you have. I'm fine with either options. |
|
I’ve cleaned up and unified some of the dashboard UI in this update:
Note: I haven’t yet created the reusable arrow/row action component, that can be done as a refinement in the future. |
… detail pages Replaced hand-written breadcrumb markup with shared <Breadcrumb /> component
|
please see latest clean up |
|
One more thing, we have logo here: https://github.com/InftyAI/alphatrion/blob/main/site/images/logo.png Let's replace the default one in the dashboard. |
|
@kerthcet |
|
Kindly remind: Alphatrion should be AlphaTrion. |
|
Is this ready for another review? @wanyingz-dis |
|
|
/lgtm Thanks @wanyingz-dis |
|
fix #102 |












What I did
Additional UI improvements