-
Notifications
You must be signed in to change notification settings - Fork 392
fix(elements): Display assertIsDefined
errors during development
#3517
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
LekoArts
merged 3 commits into
main
from
lekoarts/sdk-1470-handle-assertisdefined-better
Jun 5, 2024
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'@clerk/elements': patch | ||
--- | ||
|
||
Display hard to catch errors inside the sign-in verification step during development (when `NODE_ENV` is set to `development`). |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -142,6 +142,16 @@ const SignInVerificationMachine = setup({ | |
}; | ||
}, | ||
), | ||
setConsoleError: ({ event }) => { | ||
if (process.env.NODE_ENV === 'development') { | ||
assertActorEventError(event); | ||
|
||
throw new ClerkElementsRuntimeError(`Unable to fulfill the prepare or attempt request for the sign-in verification. | ||
Error: ${event.error.message} | ||
|
||
Please open an issue if you continue to run into this issue.`); | ||
} | ||
}, | ||
}, | ||
guards: { | ||
isResendable: ({ context }) => context.resendable || context.resendableAfter === 0, | ||
|
@@ -218,7 +228,7 @@ const SignInVerificationMachine = setup({ | |
target: 'Pending', | ||
}, | ||
onError: { | ||
actions: 'setFormErrors', | ||
actions: ['setFormErrors', 'setConsoleError'], | ||
target: 'Pending', | ||
}, | ||
}, | ||
|
@@ -316,7 +326,7 @@ const SignInVerificationMachine = setup({ | |
actions: ['sendToNext', 'sendToLoading'], | ||
}, | ||
onError: { | ||
actions: ['setFormErrors', 'sendToLoading'], | ||
actions: ['setFormErrors', 'setConsoleError', 'sendToLoading'], | ||
target: 'Pending', | ||
}, | ||
}, | ||
|
@@ -352,14 +362,14 @@ export const SignInFirstFactorMachine = SignInVerificationMachine.provide({ | |
return Promise.resolve(clerk.client.signIn); | ||
} | ||
|
||
assertIsDefined(params); | ||
assertIsDefined(params, 'First factor params'); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I've added a undefined is not defined With the label it'll say First factor params is not defined 👍 |
||
|
||
return await clerk.client.signIn.prepareFirstFactor(params as PrepareFirstFactorParams); | ||
}), | ||
attempt: fromPromise(async ({ input }) => { | ||
const { currentFactor, fields, parent } = input as AttemptFirstFactorInput; | ||
|
||
assertIsDefined(currentFactor); | ||
assertIsDefined(currentFactor, 'Current factor'); | ||
|
||
let attemptParams: AttemptFirstFactorParams; | ||
|
||
|
@@ -369,7 +379,7 @@ export const SignInFirstFactorMachine = SignInVerificationMachine.provide({ | |
|
||
switch (strategy) { | ||
case 'password': { | ||
assertIsDefined(password); | ||
assertIsDefined(password, 'Password'); | ||
|
||
attemptParams = { | ||
strategy, | ||
|
@@ -380,7 +390,7 @@ export const SignInFirstFactorMachine = SignInVerificationMachine.provide({ | |
} | ||
case 'reset_password_phone_code': | ||
case 'reset_password_email_code': { | ||
assertIsDefined(code); | ||
assertIsDefined(code, 'Code for resetting phone/email'); | ||
|
||
attemptParams = { | ||
strategy, | ||
|
@@ -392,7 +402,7 @@ export const SignInFirstFactorMachine = SignInVerificationMachine.provide({ | |
} | ||
case 'phone_code': | ||
case 'email_code': { | ||
assertIsDefined(code); | ||
assertIsDefined(code, 'Code for phone/email'); | ||
|
||
attemptParams = { | ||
strategy, | ||
|
@@ -403,7 +413,7 @@ export const SignInFirstFactorMachine = SignInVerificationMachine.provide({ | |
} | ||
case 'web3_metamask_signature': { | ||
const signature = fields.get('signature')?.value as string | undefined; | ||
assertIsDefined(signature); | ||
assertIsDefined(signature, 'Web3 Metamask signature'); | ||
|
||
attemptParams = { | ||
strategy, | ||
|
@@ -438,7 +448,7 @@ export const SignInSecondFactorMachine = SignInVerificationMachine.provide({ | |
const currentVerificationExpiration = clerk.client.signIn.secondFactorVerification.expireAt; | ||
const needsPrepare = resendable || !currentVerificationExpiration || currentVerificationExpiration < new Date(); | ||
|
||
assertIsDefined(params); | ||
assertIsDefined(params, 'Second factor params'); | ||
|
||
if (params.strategy !== 'phone_code' || !needsPrepare) { | ||
return Promise.resolve(clerk.client.signIn); | ||
|
@@ -454,8 +464,8 @@ export const SignInSecondFactorMachine = SignInVerificationMachine.provide({ | |
|
||
const code = fields.get('code')?.value as string; | ||
|
||
assertIsDefined(currentFactor); | ||
assertIsDefined(code); | ||
assertIsDefined(currentFactor, 'Current factor'); | ||
assertIsDefined(code, 'Code'); | ||
|
||
return await parent.getSnapshot().context.clerk.client.signIn.attemptSecondFactor({ | ||
strategy: currentFactor.strategy, | ||
|
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.
We can say prepare/attempt here because the action is only used in those two states