Clean up demo artifacts: replace unprofessional placeholders with polished UI#505
Merged
aurelianware merged 2 commits intomainfrom Mar 17, 2026
Merged
Conversation
…ished UI - Settings.razor: Replace "coming soon" text in General, Users, and Integrations tabs with professional admin-managed placeholders using MudAlert components. Replace JS alert() calls with MudBlazor Snackbar notifications for plan change, cancellation, and payment update actions. - Reports.razor: Wrap bare text in MudContainer/MudCard with icon and professional messaging about upcoming availability. - Workflows.razor: Same card-wrapped professional placeholder treatment. - ClaimsSubmit.razor: Professional placeholder with links to API docs and EDI integration guide as alternative submission methods. https://claude.ai/code/session_016FWjRCVfPPYHYY7vwFARZs
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the Cloud Health Office portal placeholder pages to present more polished “coming soon” experiences, and replaces browser alert() usage in Settings with MudBlazor snackbars for a more consistent in-app UX.
Changes:
- Revamps Workflows and Reports pages with consistent container/card layouts and iconography.
- Enhances Claims Submit placeholder content and adds navigation links to
/apisand/docs. - Replaces Settings plan/cancel/payment “coming soon” JS alerts with
ISnackbarnotifications and updates tab content to informationalMudAlerts.
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| src/portal/CloudHealthOffice.Portal/Pages/Workflows.razor | Replaces minimal placeholder text with a structured MudBlazor container/card layout and messaging. |
| src/portal/CloudHealthOffice.Portal/Pages/Reports.razor | Aligns Reports placeholder UI with the new card-based layout and updated copy. |
| src/portal/CloudHealthOffice.Portal/Pages/ClaimsSubmit.razor | Improves placeholder UI and adds calls-to-action linking to existing API/docs routes. |
| src/portal/CloudHealthOffice.Portal/Pages/Settings.razor | Adds ISnackbar injection and swaps JS alerts for snackbars; replaces “coming soon” text with informational alerts. |
| @@ -2,6 +2,7 @@ | |||
| @inject HttpClient Http | |||
| @inject IConfiguration Configuration | |||
| @inject IJSRuntime JSRuntime | |||
The JS runtime dependency became obsolete after replacing browser alert() calls with MudBlazor ISnackbar notifications. https://claude.ai/code/session_016FWjRCVfPPYHYY7vwFARZs
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.
Integrations tabs with professional admin-managed placeholders using
MudAlert components. Replace JS alert() calls with MudBlazor Snackbar
notifications for plan change, cancellation, and payment update actions.
professional messaging about upcoming availability.
and EDI integration guide as alternative submission methods.
https://claude.ai/code/session_016FWjRCVfPPYHYY7vwFARZs