fix(example): prevent overlapping auth actions and late UI updates - #1134
Open
OskarEichler wants to merge 1 commit into
Open
fix(example): prevent overlapping auth actions and late UI updates#1134OskarEichler wants to merge 1 commit into
OskarEichler wants to merge 1 commit into
Conversation
|
@OskarEichler is attempting to deploy a commit to the Nearform Team on Vercel. A member of the Team first needs to authorize it. |
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.
Fixes
Use one synchronous pending guard for login/refresh/revoke so a late refresh cannot merge tokens into another provider’s state. Disable and label pending controls, ignore results/errors after unmount, handle optional prefetch failure, preserve refresh-token rotation fallback, and simplify derived revoke visibility. Remove incompatible readonly scope assertions. Clarify that the Expo sample only clears local state rather than revoking the provider session.
Breaking / observable changes
Examples only. Library APIs are unchanged. Demo buttons cannot initiate another auth action until the current one settles; native button semantics and disabled state are exposed, with a polite pending status. No screen-reader or visual-conformance claim.
Verification
Seven actual React-rendered checks pass (four fail on the baseline), including rapid double activation, refresh/login overlap, unmount/error, recovery, token rotation fallback and revocation reset. Demo TypeScript and targeted ESLint pass; both production Metro bundles and native demo builds pass.
Each patch was applied independently to upstream commit
6f9090ce1b991c0acc2a6f5dc8bea838deaf4f7aand passed its targeted external actual-source diagnostics or standalone type/lockfile check. The combined fixes pass 75 focused diagnostics. These use synthetic values, controlled native/bridge doubles and disposable filesystem projects, not real credentials.Combined branch checks:
No checked-in test/spec files were added, changed or disabled. The source changes are supported by external reproducible diagnostics because this audit's repository policy prohibits checked-in test edits. Live OAuth providers, physical-device/browser authentication and a full Expo native build were not exercised. React Doctor reports two warnings: the discovery response is explicitly guarded by response.ok === false, and the demo pending reset is inside finally; both paths are exercised by focused checks. No rules were suppressed.
Scope
examples/demo/App.tsxexamples/expo-cng/App.tsxUnrelated audit fixes are submitted separately. The separate iOS process-global OIDURLSessionProvider request-isolation issue is not claimed fixed by these changes.