-
Notifications
You must be signed in to change notification settings - Fork 0
Client #128: UX hardening — errors, toasts, validation, and loading states #133
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
Merged
Merged
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
a8f1b2d
feat: add a single client error adapter and shared field-validation h…
FadyGergesRezk f790d95
feat: add toast, pending-button and inline error primitives for mutat…
FadyGergesRezk 37f7edf
refactor: centralise query keys and settle mutation cache effects in …
FadyGergesRezk b518f24
fix: fan out keycloak token refreshes to every subscriber and time ou…
FadyGergesRezk 3908c2c
feat: catch route render crashes inside the app shell
FadyGergesRezk 7477f29
refactor: extract dialog form state and validation into testable edit…
FadyGergesRezk 4d30b62
style: add phone and password inputs and align primitives with the theme
FadyGergesRezk cf94d6c
feat: route query and mutation failures through the shared feedback p…
FadyGergesRezk b2ad27e
style: align the keycloak login theme with the app
FadyGergesRezk 14140b7
test: serve e2e from a built bundle and cap workers
FadyGergesRezk d9f2f51
test: add cache consistency specs and extend e2e mock server coverage
FadyGergesRezk 347179d
refactor: trim redundant comments across the web client
FadyGergesRezk d280e13
docs: rewrite the web-client readme to match the current app
FadyGergesRezk c5c2f7c
Merge remote-tracking branch 'origin/main' into client/128-ux-hardening
raphael-frank File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
Oops, something went wrong.
Oops, something went wrong.
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.
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.
📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win
Fix stylelint violations flagged in the new alert block.
Static analysis flags two real issues in this new block: missing blank line before the
border-radiusdeclaration (line 446, separating the custom-property group from regular declarations), and quoted'Poppins'font-family names at lines 453, 525, and 531 that the configuredfont-family-name-quotesrule disallows.🎨 Proposed fix
Apply the same unquoted
Poppinsfix at lines 525 and 531.🧰 Tools
🪛 Stylelint (17.14.0)
[error] 446-446: Expected empty line before declaration (declaration-empty-line-before)
(declaration-empty-line-before)
[error] 453-453: Expected no quotes around "Poppins" (font-family-name-quotes)
(font-family-name-quotes)
[error] 525-525: Expected no quotes around "Poppins" (font-family-name-quotes)
(font-family-name-quotes)
[error] 531-531: Expected no quotes around "Poppins" (font-family-name-quotes)
(font-family-name-quotes)
🤖 Prompt for AI Agents
Source: Linters/SAST tools