Conversation
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.
This pull request introduces a comprehensive user feedback overlay for Quasar restarts and updates, improving the user experience during worker restarts triggered by plugin changes or UI/Bootstrap updates. It adds a browser-side progress overlay with step-by-step status, integrates this overlay into relevant Blazor pages, and updates documentation to describe the new behavior. Additionally, it refines table row highlighting and ensures robust feedback clearing in error scenarios.
User Feedback Overlay for Restarts and Updates:
.quasar-restart-feedback) that displays restart progress, step-by-step status, and messages during worker restarts or updates. This overlay is invoked via thequasarConfigs.reloadWhenHealthyJavaScript function with detailed options for titles, messages, and step tracking. (Quasar/wwwroot/quasar-configs.js,Quasar/wwwroot/app.css) [1] [2]Quasar/Components/Pages/UiPlugins.razor,Quasar/Components/Pages/Updates.razor) [1] [2] [3] [4]Blazor Integration and State Handling:
MainLayout.razorandUiPlugins.razorto pass detailed overlay options to the JS interop, disable the restart button during an active request, and show error notifications if the restart fails. (Quasar/Components/Layout/MainLayout.razor,Quasar/Components/Pages/UiPlugins.razor) [1] [2] [3] [4]Documentation Updates:
Docs/LinuxDeploymentAndUpdates.md,Docs/WindowsDeploymentAndUpdates.md,Docs/QuasarPluginSystem.md) [1] [2] [3] [4]UI/UX Improvements:
Quasar/wwwroot/app.css)These changes collectively provide a more transparent and user-friendly experience when the Quasar web worker is restarted or updated, reducing confusion and improving perceived reliability.