Migrated the cloudbuild plugin from Material UI (MUI) to Backstage UI#9393
Open
AmbrishRamachandiran wants to merge 2 commits into
Open
Migrated the cloudbuild plugin from Material UI (MUI) to Backstage UI#9393AmbrishRamachandiran wants to merge 2 commits into
AmbrishRamachandiran wants to merge 2 commits into
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Note
Copilot was unable to run its full agentic suite in this review.
Migrates the Cloudbuild plugin UI components from Material UI (MUI) to Backstage UI (BUI), adopting BUI primitives, Remix Icons, and CSS Modules.
Changes:
- Replaced MUI layout/typography/components with
@backstage/uiequivalents and@remixicon/reacticons. - Introduced CSS Modules using BUI design tokens for component styling.
- Updated
package.jsondependencies and added a changeset documenting the migration.
Reviewed changes
Copilot reviewed 8 out of 8 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| workspaces/cloudbuild/plugins/cloudbuild/src/components/WorkflowRunsTable/WorkflowRunsTable.tsx | Migrates table rendering and actions to BUI components and Remix icons; adds CSS module styling. |
| workspaces/cloudbuild/plugins/cloudbuild/src/components/WorkflowRunsTable/WorkflowRunsTable.module.css | Adds CSS module styles for the table title row/icon using BUI tokens. |
| workspaces/cloudbuild/plugins/cloudbuild/src/components/WorkflowRunDetails/WorkflowRunDetails.tsx | Migrates details view from MUI table components to BUI + HTML table structure with CSS modules. |
| workspaces/cloudbuild/plugins/cloudbuild/src/components/WorkflowRunDetails/WorkflowRunDetails.module.css | Adds CSS module styles for the details layout/table using BUI tokens. |
| workspaces/cloudbuild/plugins/cloudbuild/src/components/Cards/Cards.tsx | Replaces MUI progress/icon styling with BUI Skeleton + Remix icon and CSS module. |
| workspaces/cloudbuild/plugins/cloudbuild/src/components/Cards/Cards.module.css | Adds CSS module style for external link icon alignment. |
| workspaces/cloudbuild/plugins/cloudbuild/package.json | Swaps MUI dependencies for @backstage/ui and @remixicon/react. |
| workspaces/cloudbuild/.changeset/cloudbuild-mui-to-bui.md | Documents the MUI → BUI migration as a patch changeset. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Contributor
Changed Packages
|
c14e785 to
b909654
Compare
… (BUI) Signed-off-by: AmbrishRamachandiran <ambrish.r@infosys.com>
b909654 to
4705846
Compare
…ve icons Signed-off-by: AmbrishRamachandiran <ambrish.r@infosys.com>
Author
|
@backstage/community-plugins-maintainers @vinzscam please review |
Author
|
please review |
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.
Summary
Migrates the
@backstage-community/plugin-cloudbuildplugin from Material UI (@material-ui/core,@material-ui/icons) to Backstage UI (@backstage/ui) following the MUI-to-BUI migration guide.