Tabbed Layout and openMIC application card.#846
Open
nbeatty-gpa wants to merge 38 commits intomasterfrom
Open
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR enhances the SystemCenter “Nodes” experience by adding an openMIC node tile and consolidating node “Status/Console/Connections” into a single tabbed details modal.
Changes:
- Replaces the separate Console/Status modals with a single
NodeDetailsmodal that provides tabbed Connections / Health / Console views per node type. - Adds openMIC as a first-class node tile in AppHost (controller + images) and wires an openMIC ping endpoint.
- Updates DeviceHealthReport’s
AppStatusto support condensed tooltip output via anIsCondensedprop.
Reviewed changes
Copilot reviewed 12 out of 14 changed files in this pull request and generated 14 comments.
Show a summary per file
| File | Description |
|---|---|
| Source/Applications/SystemCenter/wwwroot/Scripts/TSX/SystemCenter/AppHost/AppHost.tsx | Switches from separate stats/console modals to NodeDetails; adjusts state wiring for details modal. |
| Source/Applications/SystemCenter/wwwroot/Scripts/TSX/SystemCenter/AppHost/ApplicationCard.tsx | Replaces Status/Console buttons with a single Details button. |
| Source/Applications/SystemCenter/wwwroot/Scripts/TSX/SystemCenter/AppHost/ConsoleWindow.tsx | Refactors console UI to be embedded (no longer owns a Modal). |
| Source/Applications/SystemCenter/wwwroot/Scripts/TSX/SystemCenter/AppHost/NodeDetails.tsx | New tabbed details modal combining Connections/Health/Console. |
| Source/Applications/SystemCenter/wwwroot/Scripts/TSX/SystemCenter/AppHost/NodeConnections.tsx | New component extracting the prior connection-status behavior. |
| Source/Applications/SystemCenter/wwwroot/Scripts/TSX/SystemCenter/AppHost/NodeHealth.tsx | Reworked health view (XDA stats + openMIC health detail rendering). |
| Source/Applications/SystemCenter/wwwroot/Scripts/TSX/SystemCenter/AppHost/StatusDetails.tsx | New openMIC status detail rendering component. |
| Source/Applications/SystemCenter/wwwroot/Scripts/TSX/SystemCenter/DeviceHealthReport/AppStatus.tsx | Adds IsCondensed option for tooltip detail condensation logic. |
| Source/Applications/SystemCenter/wwwroot/Scripts/TSX/SystemCenter/DeviceHealthReport/DeviceHealthReport.tsx | Supplies the new IsCondensed prop to AppStatus. |
| Source/Applications/SystemCenter/Controllers/SystemCenter/AppHostController.cs | Adds openMIC host + ping route and base URL lookup. |
| Source/Applications/SystemCenter/wwwroot/Images/NodeTiles/openMIC.png | Adds openMIC tile image. |
| Source/Applications/SystemCenter/SystemCenter.csproj | Ensures openMIC images + new TSX files are included in build output / TS compile list. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
elwills
requested changes
Apr 9, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 12 out of 15 changed files in this pull request and generated 3 comments.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
…ter/DeviceHealthReport/DeviceHealthReport.tsx Co-authored-by: Erika Wills <elwills@gridprotectionalliance.org> Signed-off-by: nbeatty-gpa <nbeatty@gridprotectionalliance.org>
…ter/AppHost/NodeConnections.tsx Co-authored-by: Erika Wills <elwills@gridprotectionalliance.org> Signed-off-by: nbeatty-gpa <nbeatty@gridprotectionalliance.org>
…ter/AppHost/NodeConnections.tsx Co-authored-by: Erika Wills <elwills@gridprotectionalliance.org> Signed-off-by: nbeatty-gpa <nbeatty@gridprotectionalliance.org>
…ter/AppHost/NodeConnections.tsx Co-authored-by: Erika Wills <elwills@gridprotectionalliance.org> Signed-off-by: nbeatty-gpa <nbeatty@gridprotectionalliance.org>
…ter/AppHost/NodeConnections.tsx Co-authored-by: Erika Wills <elwills@gridprotectionalliance.org> Signed-off-by: nbeatty-gpa <nbeatty@gridprotectionalliance.org>
…ter/AppHost/NodeConnections.tsx Co-authored-by: Erika Wills <elwills@gridprotectionalliance.org> Signed-off-by: nbeatty-gpa <nbeatty@gridprotectionalliance.org>
…ter/AppHost/NodeConnections.tsx Co-authored-by: Erika Wills <elwills@gridprotectionalliance.org> Signed-off-by: nbeatty-gpa <nbeatty@gridprotectionalliance.org>
…ter/AppHost/NodeHealth.tsx Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: Erika Wills <elwills@gridprotectionalliance.org>
…ctions configured
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Jira Issue(s)
SC-380
Description
Collect Node Health, Connections, and Console into a tabbed modal, accessible through one details button.
How/Where to test OR Detail how it was tested