@proveanything/smartlinks-auth-ui 0.4.7 → 0.4.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api.d.ts +10 -0
- package/dist/api.d.ts.map +1 -1
- package/dist/components/MagicLinkForm.d.ts +2 -1
- package/dist/components/MagicLinkForm.d.ts.map +1 -1
- package/dist/components/PhoneAuthForm.d.ts +2 -1
- package/dist/components/PhoneAuthForm.d.ts.map +1 -1
- package/dist/components/SmartlinksAuthUI.d.ts.map +1 -1
- package/dist/index.esm.js +290 -258
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +289 -257
- package/dist/index.js.map +1 -1
- package/dist/types.d.ts +6 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsx, jsxs, Fragment } from 'react/jsx-runtime';
|
|
2
2
|
import React, { useEffect, useState, useMemo, useRef, useCallback, createContext, useContext } from 'react';
|
|
3
3
|
import * as smartlinks from '@proveanything/smartlinks';
|
|
4
|
-
import {
|
|
4
|
+
import { SmartlinksApiError, iframe } from '@proveanything/smartlinks';
|
|
5
5
|
import { post, getApiHeaders, isProxyEnabled } from '@proveanything/smartlinks/dist/http';
|
|
6
6
|
|
|
7
7
|
const AuthContainer = ({ children, theme = 'light', className = '', config, minimal = false, }) => {
|
|
@@ -10759,7 +10759,8 @@ const PhoneInput = ({ value, onChange, disabled = false, }) => {
|
|
|
10759
10759
|
return (jsx(PhoneInputComponent, { international: true, defaultCountry: defaultCountry, value: value, onChange: (value) => onChange(value || ''), disabled: disabled, className: "phone-input-wrapper" }));
|
|
10760
10760
|
};
|
|
10761
10761
|
|
|
10762
|
-
const PhoneAuthForm = ({ onSubmit, onBack, loading, error, }) => {
|
|
10762
|
+
const PhoneAuthForm = ({ onSubmit, onBack, loading, error, collectName = false, }) => {
|
|
10763
|
+
const [displayName, setDisplayName] = useState('');
|
|
10763
10764
|
const [phoneNumber, setPhoneNumber] = useState('');
|
|
10764
10765
|
const [verificationCode, setVerificationCode] = useState('');
|
|
10765
10766
|
const [codeSent, setCodeSent] = useState(false);
|
|
@@ -10776,7 +10777,7 @@ const PhoneAuthForm = ({ onSubmit, onBack, loading, error, }) => {
|
|
|
10776
10777
|
const handleSendCode = async (e) => {
|
|
10777
10778
|
e.preventDefault();
|
|
10778
10779
|
try {
|
|
10779
|
-
await onSubmit(phoneNumber);
|
|
10780
|
+
await onSubmit(phoneNumber, undefined, collectName ? displayName || undefined : undefined);
|
|
10780
10781
|
// Only transition to code entry UI AFTER successful send
|
|
10781
10782
|
setCodeSent(true);
|
|
10782
10783
|
setResendCooldown(60); // 60 second cooldown
|
|
@@ -10803,7 +10804,7 @@ const PhoneAuthForm = ({ onSubmit, onBack, loading, error, }) => {
|
|
|
10803
10804
|
};
|
|
10804
10805
|
return (jsxs("form", { className: "auth-form", onSubmit: codeSent ? handleVerifyCode : handleSendCode, children: [jsxs("div", { className: "auth-form-header", children: [jsx("h2", { className: "auth-form-title", children: "Phone Authentication" }), jsx("p", { className: "auth-form-subtitle", children: codeSent
|
|
10805
10806
|
? 'Enter the verification code sent to your phone.'
|
|
10806
|
-
: 'Enter your phone number to receive a verification code.' })] }), error && (jsxs("div", { className: "auth-error", role: "alert", children: [jsx("svg", { width: "16", height: "16", viewBox: "0 0 16 16", fill: "currentColor", children: jsx("path", { d: "M8 0C3.58 0 0 3.58 0 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm1 13H7v-2h2v2zm0-3H7V4h2v6z" }) }), error] })), !codeSent ? (jsxs("div", { className: "auth-form-group", children: [jsx("label", { htmlFor: "phoneNumber", className: "auth-label", children: "Phone Number" }), jsx(PhoneInput, { value: phoneNumber, onChange: setPhoneNumber, disabled: loading })] })) : (jsxs(Fragment, { children: [jsxs("div", { className: "auth-form-group", children: [jsx("label", { htmlFor: "verificationCode", className: "auth-label", children: "Verification Code" }), jsx(OTPInput, { length: 6, value: verificationCode, onChange: setVerificationCode, disabled: loading })] }), jsx("div", { style: { marginTop: '0.5rem', textAlign: 'center' }, children: jsx("button", { type: "button", className: "auth-link", onClick: handleResendCode, disabled: loading || resendCooldown > 0, style: {
|
|
10807
|
+
: 'Enter your phone number to receive a verification code.' })] }), error && (jsxs("div", { className: "auth-error", role: "alert", children: [jsx("svg", { width: "16", height: "16", viewBox: "0 0 16 16", fill: "currentColor", children: jsx("path", { d: "M8 0C3.58 0 0 3.58 0 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm1 13H7v-2h2v2zm0-3H7V4h2v6z" }) }), error] })), !codeSent ? (jsxs(Fragment, { children: [collectName && (jsxs("div", { className: "auth-form-group", children: [jsx("label", { htmlFor: "phoneName", className: "auth-label", children: "Name" }), jsx("input", { id: "phoneName", type: "text", value: displayName, onChange: (e) => setDisplayName(e.target.value), className: "auth-input", placeholder: "John Smith", disabled: loading, autoComplete: "name" })] })), jsxs("div", { className: "auth-form-group", children: [jsx("label", { htmlFor: "phoneNumber", className: "auth-label", children: "Phone Number" }), jsx(PhoneInput, { value: phoneNumber, onChange: setPhoneNumber, disabled: loading })] })] })) : (jsxs(Fragment, { children: [jsxs("div", { className: "auth-form-group", children: [jsx("label", { htmlFor: "verificationCode", className: "auth-label", children: "Verification Code" }), jsx(OTPInput, { length: 6, value: verificationCode, onChange: setVerificationCode, disabled: loading })] }), jsx("div", { style: { marginTop: '0.5rem', textAlign: 'center' }, children: jsx("button", { type: "button", className: "auth-link", onClick: handleResendCode, disabled: loading || resendCooldown > 0, style: {
|
|
10807
10808
|
cursor: resendCooldown > 0 ? 'not-allowed' : 'pointer',
|
|
10808
10809
|
opacity: resendCooldown > 0 ? 0.5 : 1,
|
|
10809
10810
|
}, children: resendCooldown > 0
|
|
@@ -10846,13 +10847,14 @@ const PasswordResetForm = ({ onSubmit, onBack, loading, error, success, successM
|
|
|
10846
10847
|
: "Enter your email address and we'll send you instructions to reset your password." })] }), (error || passwordError) && (jsxs("div", { className: "auth-error", role: "alert", children: [jsx("svg", { width: "16", height: "16", viewBox: "0 0 16 16", fill: "currentColor", children: jsx("path", { d: "M8 0C3.58 0 0 3.58 0 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm1 13H7v-2h2v2zm0-3H7V4h2v6z" }) }), error || passwordError] })), token ? (jsxs(Fragment, { children: [resetEmail && (jsx("input", { type: "email", value: resetEmail, readOnly: true, autoComplete: "username", style: { position: 'absolute', opacity: 0, height: 0, width: 0, overflow: 'hidden', pointerEvents: 'none' }, tabIndex: -1, "aria-hidden": "true" })), jsxs("div", { className: "auth-form-group", children: [jsx("label", { htmlFor: "password", className: "auth-label", children: "New Password" }), jsx("input", { type: "password", id: "password", className: "auth-input", value: password, onChange: (e) => setPassword(e.target.value), required: true, disabled: loading, placeholder: "Enter new password", autoComplete: "new-password", minLength: 6 })] }), jsxs("div", { className: "auth-form-group", children: [jsx("label", { htmlFor: "confirmPassword", className: "auth-label", children: "Confirm Password" }), jsx("input", { type: "password", id: "confirmPassword", className: "auth-input", value: confirmPassword, onChange: (e) => setConfirmPassword(e.target.value), required: true, disabled: loading, placeholder: "Confirm new password", autoComplete: "new-password", minLength: 6 })] })] })) : (jsxs("div", { className: "auth-form-group", children: [jsx("label", { htmlFor: "email", className: "auth-label", children: "Email address" }), jsx("input", { type: "email", id: "email", className: "auth-input", value: email, onChange: (e) => setEmail(e.target.value), required: true, disabled: loading, placeholder: "you@example.com", autoComplete: "email" })] })), jsx("button", { type: "submit", className: "auth-button auth-button-primary", disabled: loading, children: loading ? (jsx("span", { className: "auth-spinner" })) : token ? ('Reset password') : ('Send reset instructions') }), jsx("div", { className: "auth-divider", children: jsx("button", { type: "button", className: "auth-link auth-link-bold", onClick: onBack, disabled: loading, children: "\u2190 Back to Sign in" }) })] }));
|
|
10847
10848
|
};
|
|
10848
10849
|
|
|
10849
|
-
const MagicLinkForm = ({ onSubmit, onCancel, loading = false, error, }) => {
|
|
10850
|
+
const MagicLinkForm = ({ onSubmit, onCancel, loading = false, error, collectName = false, }) => {
|
|
10850
10851
|
const [email, setEmail] = useState('');
|
|
10852
|
+
const [displayName, setDisplayName] = useState('');
|
|
10851
10853
|
const handleSubmit = async (e) => {
|
|
10852
10854
|
e.preventDefault();
|
|
10853
|
-
await onSubmit(email);
|
|
10855
|
+
await onSubmit(email, collectName ? displayName || undefined : undefined);
|
|
10854
10856
|
};
|
|
10855
|
-
return (jsxs("form", { onSubmit: handleSubmit, className: "auth-form", children: [jsxs("div", { className: "auth-form-group", children: [jsx("label", { htmlFor: "magic-link-email", className: "auth-label", children: "Email Address" }), jsx("input", { id: "magic-link-email", type: "email", value: email, onChange: (e) => setEmail(e.target.value), className: "auth-input", placeholder: "you@example.com", required: true, disabled: loading })] }), error && (jsx("div", { className: "auth-error-message", children: error })), jsx("button", { type: "submit", className: "auth-button auth-button-primary", disabled: loading || !email, children: loading ? (jsxs(Fragment, { children: [jsx("span", { className: "auth-spinner" }), "Sending..."] })) : ('Send Magic Link') }), jsx("button", { type: "button", onClick: onCancel, className: "auth-button auth-button-secondary", disabled: loading, children: "Cancel" })] }));
|
|
10857
|
+
return (jsxs("form", { onSubmit: handleSubmit, className: "auth-form", children: [collectName && (jsxs("div", { className: "auth-form-group", children: [jsx("label", { htmlFor: "magic-link-name", className: "auth-label", children: "Name" }), jsx("input", { id: "magic-link-name", type: "text", value: displayName, onChange: (e) => setDisplayName(e.target.value), className: "auth-input", placeholder: "John Smith", disabled: loading, autoComplete: "name" })] })), jsxs("div", { className: "auth-form-group", children: [jsx("label", { htmlFor: "magic-link-email", className: "auth-label", children: "Email Address" }), jsx("input", { id: "magic-link-email", type: "email", value: email, onChange: (e) => setEmail(e.target.value), className: "auth-input", placeholder: "you@example.com", required: true, disabled: loading })] }), error && (jsx("div", { className: "auth-error-message", children: error })), jsx("button", { type: "submit", className: "auth-button auth-button-primary", disabled: loading || !email, children: loading ? (jsxs(Fragment, { children: [jsx("span", { className: "auth-spinner" }), "Sending..."] })) : ('Send Magic Link') }), jsx("button", { type: "button", onClick: onCancel, className: "auth-button auth-button-secondary", disabled: loading, children: "Cancel" })] }));
|
|
10856
10858
|
};
|
|
10857
10859
|
|
|
10858
10860
|
/**
|
|
@@ -10889,6 +10891,254 @@ function createLoggerWrapper(logger) {
|
|
|
10889
10891
|
};
|
|
10890
10892
|
}
|
|
10891
10893
|
|
|
10894
|
+
/**
|
|
10895
|
+
* Friendly error messages for common HTTP status codes.
|
|
10896
|
+
*/
|
|
10897
|
+
const STATUS_MESSAGES = {
|
|
10898
|
+
400: 'Invalid request. Please check your input and try again.',
|
|
10899
|
+
401: 'Invalid credentials. Please check your email and password.',
|
|
10900
|
+
403: 'Access denied. You do not have permission to perform this action.',
|
|
10901
|
+
404: 'Account not found. Please check your email or create a new account.',
|
|
10902
|
+
409: 'This email is already registered.',
|
|
10903
|
+
429: 'Too many attempts. Please wait a moment and try again.',
|
|
10904
|
+
};
|
|
10905
|
+
/**
|
|
10906
|
+
* Context-specific error messages for different auth operations.
|
|
10907
|
+
*/
|
|
10908
|
+
const ERROR_CODE_MESSAGES = {
|
|
10909
|
+
// 400 - Validation errors
|
|
10910
|
+
'MISSING_FIELDS': 'Email and password are required.',
|
|
10911
|
+
'MISSING_EMAIL': 'Email is required.',
|
|
10912
|
+
'MISSING_PASSWORD': 'Password is required.',
|
|
10913
|
+
'MISSING_TOKEN': 'Token is required.',
|
|
10914
|
+
'MISSING_PHONE_NUMBER': 'Phone number is required.',
|
|
10915
|
+
'MISSING_VERIFICATION_CODE': 'Phone number and verification code are required.',
|
|
10916
|
+
'MISSING_REDIRECT_URL': 'Redirect URL is required.',
|
|
10917
|
+
'MISSING_GOOGLE_TOKEN': 'Google token is required.',
|
|
10918
|
+
'INVALID_CLIENT_ID': 'Invalid client configuration.',
|
|
10919
|
+
'INVALID_REDIRECT_URL': 'Invalid redirect URL.',
|
|
10920
|
+
'INVALID_PHONE_NUMBER': 'Invalid phone number. Please check the format and try again.',
|
|
10921
|
+
'INVALID_GOOGLE_TOKEN': 'Invalid Google sign-in token.',
|
|
10922
|
+
'PASSWORD_TOO_SHORT': 'Password must be at least 8 characters long.',
|
|
10923
|
+
'PASSWORD_REQUIREMENTS_NOT_MET': 'New password must be at least 6 characters.',
|
|
10924
|
+
'EMAIL_ALREADY_VERIFIED': 'Your email is already verified.',
|
|
10925
|
+
'INVALID_CONFIRMATION': 'Please type DELETE to confirm account deletion.',
|
|
10926
|
+
// 401 - Authentication errors
|
|
10927
|
+
'INVALID_CREDENTIALS': 'Invalid email or password.',
|
|
10928
|
+
'INCORRECT_PASSWORD': 'Current password is incorrect.',
|
|
10929
|
+
'INVALID_VERIFICATION_CODE': 'Invalid or expired verification code. Please try again.',
|
|
10930
|
+
'INVALID_TOKEN': 'This link has expired or is invalid. Please request a new one.',
|
|
10931
|
+
'TOKEN_EXPIRED': 'This link has expired. Please request a new one.',
|
|
10932
|
+
'TOKEN_ALREADY_USED': 'This link has already been used. Please request a new one.',
|
|
10933
|
+
'UNAUTHORIZED': 'You must be logged in to perform this action.',
|
|
10934
|
+
'GOOGLE_TOKEN_AUDIENCE_MISMATCH': 'Google sign-in failed. Token was not issued for this application.',
|
|
10935
|
+
// 403 - Forbidden / verification required
|
|
10936
|
+
'EMAIL_NOT_VERIFIED': 'Please verify your email before signing in.',
|
|
10937
|
+
'ACCOUNT_LOCKED': 'Your account has been locked. Please verify your email to unlock.',
|
|
10938
|
+
'EMAIL_VERIFICATION_EXPIRED': 'Your verification deadline has passed and your account is locked. Please contact support.',
|
|
10939
|
+
// 404
|
|
10940
|
+
'USER_NOT_FOUND': 'Account not found. Please check your email or create a new account.',
|
|
10941
|
+
// 409 - Conflicts
|
|
10942
|
+
'EMAIL_ALREADY_EXISTS': 'This email is already registered.',
|
|
10943
|
+
'EMAIL_IN_USE': 'This email is already in use.',
|
|
10944
|
+
// 429 - Rate limiting
|
|
10945
|
+
'RATE_LIMIT_EXCEEDED': 'Too many requests. Please try again later.',
|
|
10946
|
+
'TOO_MANY_MAGIC_LINKS': 'Too many magic link requests. Please try again later.',
|
|
10947
|
+
'TOO_MANY_VERIFICATION_ATTEMPTS': 'Too many verification attempts. Please wait and try again.',
|
|
10948
|
+
'MAX_VERIFICATION_ATTEMPTS': 'Maximum verification attempts reached. Please try again later.',
|
|
10949
|
+
// 500 - Server errors
|
|
10950
|
+
'LOGIN_FAILED': 'Login failed. Please try again later.',
|
|
10951
|
+
'REGISTRATION_FAILED': 'Registration failed. Please try again later.',
|
|
10952
|
+
'GOOGLE_AUTH_NOT_CONFIGURED': 'Google sign-in is not available for this application.',
|
|
10953
|
+
'GOOGLE_AUTH_FAILED': 'Google sign-in failed. Please try again.',
|
|
10954
|
+
'GOOGLE_USERINFO_FAILED': 'Failed to retrieve your Google account information. Please try again.',
|
|
10955
|
+
'PHONE_VERIFICATION_FAILED': 'Phone verification failed. Please try again.',
|
|
10956
|
+
'SEND_VERIFICATION_CODE_FAILED': 'Failed to send verification code. Please try again.',
|
|
10957
|
+
'MAGIC_LINK_SEND_FAILED': 'Failed to send magic link. Please try again.',
|
|
10958
|
+
'MAGIC_LINK_VERIFICATION_FAILED': 'Magic link verification failed. Please try again.',
|
|
10959
|
+
'PASSWORD_RESET_FAILED': 'Failed to process password reset. Please try again.',
|
|
10960
|
+
'PASSWORD_RESET_COMPLETE_FAILED': 'Failed to reset password. Please try again.',
|
|
10961
|
+
'EMAIL_VERIFICATION_SEND_FAILED': 'Failed to send verification email. Please try again.',
|
|
10962
|
+
'EMAIL_VERIFICATION_FAILED': 'Email verification failed. Please try again.',
|
|
10963
|
+
// Account management 500s
|
|
10964
|
+
'UPDATE_PROFILE_FAILED': 'Failed to update profile. Please try again.',
|
|
10965
|
+
'CHANGE_PASSWORD_FAILED': 'Failed to change password. Please try again.',
|
|
10966
|
+
'CHANGE_EMAIL_FAILED': 'Failed to change email. Please try again.',
|
|
10967
|
+
'UPDATE_PHONE_FAILED': 'Failed to update phone number. Please try again.',
|
|
10968
|
+
'DELETE_ACCOUNT_FAILED': 'Failed to delete account. Please try again.',
|
|
10969
|
+
'CONFIG_FETCH_FAILED': 'Failed to load configuration. Please try again.',
|
|
10970
|
+
'INTERNAL_ERROR': 'An unexpected error occurred. Please try again.',
|
|
10971
|
+
// Legacy aliases (kept for backward compatibility)
|
|
10972
|
+
'INVALID_CODE': 'Invalid verification code. Please check and try again.',
|
|
10973
|
+
'CODE_EXPIRED': 'This code has expired. Please request a new one.',
|
|
10974
|
+
'PHONE_NOT_SUPPORTED': 'This phone number is not supported. Please try a different number.',
|
|
10975
|
+
'INVALID_PHONE': 'Invalid phone number. Please check the format and try again.',
|
|
10976
|
+
'PASSWORD_TOO_WEAK': 'Password is too weak. Please use at least 8 characters with a mix of letters and numbers.',
|
|
10977
|
+
'RATE_LIMITED': 'Too many attempts. Please wait a moment and try again.',
|
|
10978
|
+
};
|
|
10979
|
+
function isApiErrorLike(error) {
|
|
10980
|
+
if (error instanceof SmartlinksApiError)
|
|
10981
|
+
return true;
|
|
10982
|
+
if (error && typeof error === 'object' && 'statusCode' in error && 'message' in error) {
|
|
10983
|
+
const e = error;
|
|
10984
|
+
return typeof e.statusCode === 'number' && typeof e.message === 'string';
|
|
10985
|
+
}
|
|
10986
|
+
return false;
|
|
10987
|
+
}
|
|
10988
|
+
/**
|
|
10989
|
+
* Extracts a user-friendly error message from an error.
|
|
10990
|
+
*
|
|
10991
|
+
* Handles:
|
|
10992
|
+
* - SmartlinksApiError (and duck-typed equivalents from proxy mode)
|
|
10993
|
+
* - Standard Error: Uses message property
|
|
10994
|
+
* - String: Passes through directly (for native bridge errors)
|
|
10995
|
+
* - Unknown: Returns generic message
|
|
10996
|
+
*/
|
|
10997
|
+
function getFriendlyErrorMessage(error) {
|
|
10998
|
+
// Handle SmartlinksApiError or duck-typed API errors (proxy mode)
|
|
10999
|
+
if (isApiErrorLike(error)) {
|
|
11000
|
+
// First, check for specific error code (most precise)
|
|
11001
|
+
const errorCode = error.errorCode || error.details?.errorCode || error.details?.error;
|
|
11002
|
+
// For rate-limit errors, prefer the backend's message as it includes specific wait times
|
|
11003
|
+
if (errorCode === 'RATE_LIMIT_EXCEEDED' && error.message && error.message !== '[object Object]') {
|
|
11004
|
+
return error.message;
|
|
11005
|
+
}
|
|
11006
|
+
if (errorCode && ERROR_CODE_MESSAGES[errorCode]) {
|
|
11007
|
+
return ERROR_CODE_MESSAGES[errorCode];
|
|
11008
|
+
}
|
|
11009
|
+
// Then, check status code for general category messages
|
|
11010
|
+
if (error.statusCode >= 500) {
|
|
11011
|
+
return 'Server error. Please try again later.';
|
|
11012
|
+
}
|
|
11013
|
+
// For 429 status, prefer backend message (may include wait time)
|
|
11014
|
+
if (error.statusCode === 429 && error.message && error.message !== '[object Object]') {
|
|
11015
|
+
return error.message;
|
|
11016
|
+
}
|
|
11017
|
+
if (STATUS_MESSAGES[error.statusCode]) {
|
|
11018
|
+
return STATUS_MESSAGES[error.statusCode];
|
|
11019
|
+
}
|
|
11020
|
+
// Fall back to the server's message (already human-readable from backend)
|
|
11021
|
+
return error.message;
|
|
11022
|
+
}
|
|
11023
|
+
// Handle standard Error objects
|
|
11024
|
+
if (error instanceof Error) {
|
|
11025
|
+
// SDK bug workaround: SDK may do `throw new Error(responseBodyObject)` which produces
|
|
11026
|
+
// message "[object Object]". Check for API error properties attached to the Error instance.
|
|
11027
|
+
const errAny = error;
|
|
11028
|
+
// Check if the Error has API error properties directly attached (e.g., error.statusCode, error.errorCode)
|
|
11029
|
+
if (typeof errAny.statusCode === 'number' || errAny.errorCode || errAny.response) {
|
|
11030
|
+
// Try to extract from attached properties
|
|
11031
|
+
const apiLike = errAny.response || errAny;
|
|
11032
|
+
if (isApiErrorLike(apiLike)) {
|
|
11033
|
+
return getFriendlyErrorMessage(apiLike);
|
|
11034
|
+
}
|
|
11035
|
+
}
|
|
11036
|
+
// Check if the Error has a `cause` with API error details (modern Error cause pattern)
|
|
11037
|
+
if (errAny.cause && typeof errAny.cause === 'object') {
|
|
11038
|
+
if (isApiErrorLike(errAny.cause)) {
|
|
11039
|
+
return getFriendlyErrorMessage(errAny.cause);
|
|
11040
|
+
}
|
|
11041
|
+
}
|
|
11042
|
+
// If the message is "[object Object]", the error was constructed from a plain object
|
|
11043
|
+
// This is useless - return a generic message instead
|
|
11044
|
+
if (error.message === '[object Object]') {
|
|
11045
|
+
// Log the actual error for debugging
|
|
11046
|
+
console.warn('[AuthKit] Error with [object Object] message. Raw error:', JSON.stringify(errAny, Object.getOwnPropertyNames(errAny)));
|
|
11047
|
+
return 'An unexpected error occurred. Please try again.';
|
|
11048
|
+
}
|
|
11049
|
+
// Check if the message itself contains a known API error pattern
|
|
11050
|
+
if (/already (registered|exists)/i.test(error.message)) {
|
|
11051
|
+
return 'This email is already registered.';
|
|
11052
|
+
}
|
|
11053
|
+
return error.message;
|
|
11054
|
+
}
|
|
11055
|
+
// Handle plain strings (e.g., from native bridge callbacks)
|
|
11056
|
+
if (typeof error === 'string') {
|
|
11057
|
+
return error;
|
|
11058
|
+
}
|
|
11059
|
+
// Unknown error type
|
|
11060
|
+
return 'An unexpected error occurred. Please try again.';
|
|
11061
|
+
}
|
|
11062
|
+
/**
|
|
11063
|
+
* Checks if an error represents a conflict (409) - typically duplicate registration.
|
|
11064
|
+
*/
|
|
11065
|
+
function isConflictError(error) {
|
|
11066
|
+
if (isApiErrorLike(error))
|
|
11067
|
+
return error.statusCode === 409;
|
|
11068
|
+
// Also check error message for keyword match (resilient fallback)
|
|
11069
|
+
if (error instanceof Error && /already (registered|exists)/i.test(error.message))
|
|
11070
|
+
return true;
|
|
11071
|
+
return false;
|
|
11072
|
+
}
|
|
11073
|
+
/**
|
|
11074
|
+
* Checks if an error represents invalid credentials (401).
|
|
11075
|
+
*/
|
|
11076
|
+
function isAuthError(error) {
|
|
11077
|
+
if (error instanceof SmartlinksApiError)
|
|
11078
|
+
return error.isAuthError();
|
|
11079
|
+
if (isApiErrorLike(error))
|
|
11080
|
+
return error.statusCode === 401 || error.statusCode === 403;
|
|
11081
|
+
return false;
|
|
11082
|
+
}
|
|
11083
|
+
/**
|
|
11084
|
+
* Checks if an error represents rate limiting (429).
|
|
11085
|
+
*/
|
|
11086
|
+
function isRateLimitError(error) {
|
|
11087
|
+
if (error instanceof SmartlinksApiError)
|
|
11088
|
+
return error.isRateLimited();
|
|
11089
|
+
if (isApiErrorLike(error))
|
|
11090
|
+
return error.statusCode === 429;
|
|
11091
|
+
return false;
|
|
11092
|
+
}
|
|
11093
|
+
/**
|
|
11094
|
+
* Checks if an error represents a server error (5xx).
|
|
11095
|
+
*/
|
|
11096
|
+
function isServerError(error) {
|
|
11097
|
+
if (error instanceof SmartlinksApiError)
|
|
11098
|
+
return error.isServerError();
|
|
11099
|
+
if (isApiErrorLike(error))
|
|
11100
|
+
return error.statusCode >= 500;
|
|
11101
|
+
return false;
|
|
11102
|
+
}
|
|
11103
|
+
/**
|
|
11104
|
+
* Gets the HTTP status code from an error, if available.
|
|
11105
|
+
*/
|
|
11106
|
+
function getErrorStatusCode(error) {
|
|
11107
|
+
if (isApiErrorLike(error))
|
|
11108
|
+
return error.statusCode;
|
|
11109
|
+
return undefined;
|
|
11110
|
+
}
|
|
11111
|
+
/**
|
|
11112
|
+
* Gets the server-specific error code from an error, if available.
|
|
11113
|
+
*/
|
|
11114
|
+
function getErrorCode(error) {
|
|
11115
|
+
if (isApiErrorLike(error)) {
|
|
11116
|
+
return error.errorCode || error.details?.errorCode || error.details?.error;
|
|
11117
|
+
}
|
|
11118
|
+
return undefined;
|
|
11119
|
+
}
|
|
11120
|
+
/**
|
|
11121
|
+
* Error codes that indicate the user needs to verify their email.
|
|
11122
|
+
*/
|
|
11123
|
+
const EMAIL_VERIFICATION_ERROR_CODES = new Set([
|
|
11124
|
+
'EMAIL_NOT_VERIFIED',
|
|
11125
|
+
'ACCOUNT_LOCKED',
|
|
11126
|
+
'EMAIL_VERIFICATION_EXPIRED',
|
|
11127
|
+
]);
|
|
11128
|
+
/**
|
|
11129
|
+
* Checks if an error requires email verification action from the user.
|
|
11130
|
+
*/
|
|
11131
|
+
function requiresEmailVerification(error) {
|
|
11132
|
+
const code = getErrorCode(error);
|
|
11133
|
+
if (code && EMAIL_VERIFICATION_ERROR_CODES.has(code))
|
|
11134
|
+
return true;
|
|
11135
|
+
// Also check the flag from the response body
|
|
11136
|
+
if (error && typeof error === 'object' && 'requiresEmailVerification' in error) {
|
|
11137
|
+
return error.requiresEmailVerification === true;
|
|
11138
|
+
}
|
|
11139
|
+
return false;
|
|
11140
|
+
}
|
|
11141
|
+
|
|
10892
11142
|
/**
|
|
10893
11143
|
* AuthAPI - Thin wrapper around Smartlinks SDK authKit namespace
|
|
10894
11144
|
* All authentication operations now use the global Smartlinks SDK
|
|
@@ -11034,6 +11284,32 @@ class AuthAPI {
|
|
|
11034
11284
|
};
|
|
11035
11285
|
}
|
|
11036
11286
|
}
|
|
11287
|
+
/**
|
|
11288
|
+
* Ensure an account exists for the given email (or phone).
|
|
11289
|
+
* Calls register and silently handles 409 (account already exists).
|
|
11290
|
+
* This enables passwordless flows (magic link, phone) to work for new users.
|
|
11291
|
+
*/
|
|
11292
|
+
async ensureAccount(data) {
|
|
11293
|
+
try {
|
|
11294
|
+
// Generate a random password since passwordless users won't use it
|
|
11295
|
+
const randomPassword = crypto.randomUUID?.() || Math.random().toString(36).slice(2) + Math.random().toString(36).slice(2);
|
|
11296
|
+
await this.register({
|
|
11297
|
+
email: data.email,
|
|
11298
|
+
password: randomPassword,
|
|
11299
|
+
displayName: data.displayName,
|
|
11300
|
+
});
|
|
11301
|
+
this.log.log('ensureAccount: new account created for', data.email || data.phoneNumber);
|
|
11302
|
+
}
|
|
11303
|
+
catch (err) {
|
|
11304
|
+
// 409 = account already exists, which is fine
|
|
11305
|
+
if (isConflictError(err)) {
|
|
11306
|
+
this.log.log('ensureAccount: account already exists for', data.email || data.phoneNumber);
|
|
11307
|
+
return;
|
|
11308
|
+
}
|
|
11309
|
+
// Re-throw any other error
|
|
11310
|
+
throw err;
|
|
11311
|
+
}
|
|
11312
|
+
}
|
|
11037
11313
|
async sendMagicLink(email, redirectUrl) {
|
|
11038
11314
|
return smartlinks.authKit.sendMagicLink(this.clientId, {
|
|
11039
11315
|
email,
|
|
@@ -12311,254 +12587,6 @@ const useAuth = () => {
|
|
|
12311
12587
|
return context;
|
|
12312
12588
|
};
|
|
12313
12589
|
|
|
12314
|
-
/**
|
|
12315
|
-
* Friendly error messages for common HTTP status codes.
|
|
12316
|
-
*/
|
|
12317
|
-
const STATUS_MESSAGES = {
|
|
12318
|
-
400: 'Invalid request. Please check your input and try again.',
|
|
12319
|
-
401: 'Invalid credentials. Please check your email and password.',
|
|
12320
|
-
403: 'Access denied. You do not have permission to perform this action.',
|
|
12321
|
-
404: 'Account not found. Please check your email or create a new account.',
|
|
12322
|
-
409: 'This email is already registered.',
|
|
12323
|
-
429: 'Too many attempts. Please wait a moment and try again.',
|
|
12324
|
-
};
|
|
12325
|
-
/**
|
|
12326
|
-
* Context-specific error messages for different auth operations.
|
|
12327
|
-
*/
|
|
12328
|
-
const ERROR_CODE_MESSAGES = {
|
|
12329
|
-
// 400 - Validation errors
|
|
12330
|
-
'MISSING_FIELDS': 'Email and password are required.',
|
|
12331
|
-
'MISSING_EMAIL': 'Email is required.',
|
|
12332
|
-
'MISSING_PASSWORD': 'Password is required.',
|
|
12333
|
-
'MISSING_TOKEN': 'Token is required.',
|
|
12334
|
-
'MISSING_PHONE_NUMBER': 'Phone number is required.',
|
|
12335
|
-
'MISSING_VERIFICATION_CODE': 'Phone number and verification code are required.',
|
|
12336
|
-
'MISSING_REDIRECT_URL': 'Redirect URL is required.',
|
|
12337
|
-
'MISSING_GOOGLE_TOKEN': 'Google token is required.',
|
|
12338
|
-
'INVALID_CLIENT_ID': 'Invalid client configuration.',
|
|
12339
|
-
'INVALID_REDIRECT_URL': 'Invalid redirect URL.',
|
|
12340
|
-
'INVALID_PHONE_NUMBER': 'Invalid phone number. Please check the format and try again.',
|
|
12341
|
-
'INVALID_GOOGLE_TOKEN': 'Invalid Google sign-in token.',
|
|
12342
|
-
'PASSWORD_TOO_SHORT': 'Password must be at least 8 characters long.',
|
|
12343
|
-
'PASSWORD_REQUIREMENTS_NOT_MET': 'New password must be at least 6 characters.',
|
|
12344
|
-
'EMAIL_ALREADY_VERIFIED': 'Your email is already verified.',
|
|
12345
|
-
'INVALID_CONFIRMATION': 'Please type DELETE to confirm account deletion.',
|
|
12346
|
-
// 401 - Authentication errors
|
|
12347
|
-
'INVALID_CREDENTIALS': 'Invalid email or password.',
|
|
12348
|
-
'INCORRECT_PASSWORD': 'Current password is incorrect.',
|
|
12349
|
-
'INVALID_VERIFICATION_CODE': 'Invalid or expired verification code. Please try again.',
|
|
12350
|
-
'INVALID_TOKEN': 'This link has expired or is invalid. Please request a new one.',
|
|
12351
|
-
'TOKEN_EXPIRED': 'This link has expired. Please request a new one.',
|
|
12352
|
-
'TOKEN_ALREADY_USED': 'This link has already been used. Please request a new one.',
|
|
12353
|
-
'UNAUTHORIZED': 'You must be logged in to perform this action.',
|
|
12354
|
-
'GOOGLE_TOKEN_AUDIENCE_MISMATCH': 'Google sign-in failed. Token was not issued for this application.',
|
|
12355
|
-
// 403 - Forbidden / verification required
|
|
12356
|
-
'EMAIL_NOT_VERIFIED': 'Please verify your email before signing in.',
|
|
12357
|
-
'ACCOUNT_LOCKED': 'Your account has been locked. Please verify your email to unlock.',
|
|
12358
|
-
'EMAIL_VERIFICATION_EXPIRED': 'Your verification deadline has passed and your account is locked. Please contact support.',
|
|
12359
|
-
// 404
|
|
12360
|
-
'USER_NOT_FOUND': 'Account not found. Please check your email or create a new account.',
|
|
12361
|
-
// 409 - Conflicts
|
|
12362
|
-
'EMAIL_ALREADY_EXISTS': 'This email is already registered.',
|
|
12363
|
-
'EMAIL_IN_USE': 'This email is already in use.',
|
|
12364
|
-
// 429 - Rate limiting
|
|
12365
|
-
'RATE_LIMIT_EXCEEDED': 'Too many requests. Please try again later.',
|
|
12366
|
-
'TOO_MANY_MAGIC_LINKS': 'Too many magic link requests. Please try again later.',
|
|
12367
|
-
'TOO_MANY_VERIFICATION_ATTEMPTS': 'Too many verification attempts. Please wait and try again.',
|
|
12368
|
-
'MAX_VERIFICATION_ATTEMPTS': 'Maximum verification attempts reached. Please try again later.',
|
|
12369
|
-
// 500 - Server errors
|
|
12370
|
-
'LOGIN_FAILED': 'Login failed. Please try again later.',
|
|
12371
|
-
'REGISTRATION_FAILED': 'Registration failed. Please try again later.',
|
|
12372
|
-
'GOOGLE_AUTH_NOT_CONFIGURED': 'Google sign-in is not available for this application.',
|
|
12373
|
-
'GOOGLE_AUTH_FAILED': 'Google sign-in failed. Please try again.',
|
|
12374
|
-
'GOOGLE_USERINFO_FAILED': 'Failed to retrieve your Google account information. Please try again.',
|
|
12375
|
-
'PHONE_VERIFICATION_FAILED': 'Phone verification failed. Please try again.',
|
|
12376
|
-
'SEND_VERIFICATION_CODE_FAILED': 'Failed to send verification code. Please try again.',
|
|
12377
|
-
'MAGIC_LINK_SEND_FAILED': 'Failed to send magic link. Please try again.',
|
|
12378
|
-
'MAGIC_LINK_VERIFICATION_FAILED': 'Magic link verification failed. Please try again.',
|
|
12379
|
-
'PASSWORD_RESET_FAILED': 'Failed to process password reset. Please try again.',
|
|
12380
|
-
'PASSWORD_RESET_COMPLETE_FAILED': 'Failed to reset password. Please try again.',
|
|
12381
|
-
'EMAIL_VERIFICATION_SEND_FAILED': 'Failed to send verification email. Please try again.',
|
|
12382
|
-
'EMAIL_VERIFICATION_FAILED': 'Email verification failed. Please try again.',
|
|
12383
|
-
// Account management 500s
|
|
12384
|
-
'UPDATE_PROFILE_FAILED': 'Failed to update profile. Please try again.',
|
|
12385
|
-
'CHANGE_PASSWORD_FAILED': 'Failed to change password. Please try again.',
|
|
12386
|
-
'CHANGE_EMAIL_FAILED': 'Failed to change email. Please try again.',
|
|
12387
|
-
'UPDATE_PHONE_FAILED': 'Failed to update phone number. Please try again.',
|
|
12388
|
-
'DELETE_ACCOUNT_FAILED': 'Failed to delete account. Please try again.',
|
|
12389
|
-
'CONFIG_FETCH_FAILED': 'Failed to load configuration. Please try again.',
|
|
12390
|
-
'INTERNAL_ERROR': 'An unexpected error occurred. Please try again.',
|
|
12391
|
-
// Legacy aliases (kept for backward compatibility)
|
|
12392
|
-
'INVALID_CODE': 'Invalid verification code. Please check and try again.',
|
|
12393
|
-
'CODE_EXPIRED': 'This code has expired. Please request a new one.',
|
|
12394
|
-
'PHONE_NOT_SUPPORTED': 'This phone number is not supported. Please try a different number.',
|
|
12395
|
-
'INVALID_PHONE': 'Invalid phone number. Please check the format and try again.',
|
|
12396
|
-
'PASSWORD_TOO_WEAK': 'Password is too weak. Please use at least 8 characters with a mix of letters and numbers.',
|
|
12397
|
-
'RATE_LIMITED': 'Too many attempts. Please wait a moment and try again.',
|
|
12398
|
-
};
|
|
12399
|
-
function isApiErrorLike(error) {
|
|
12400
|
-
if (error instanceof SmartlinksApiError)
|
|
12401
|
-
return true;
|
|
12402
|
-
if (error && typeof error === 'object' && 'statusCode' in error && 'message' in error) {
|
|
12403
|
-
const e = error;
|
|
12404
|
-
return typeof e.statusCode === 'number' && typeof e.message === 'string';
|
|
12405
|
-
}
|
|
12406
|
-
return false;
|
|
12407
|
-
}
|
|
12408
|
-
/**
|
|
12409
|
-
* Extracts a user-friendly error message from an error.
|
|
12410
|
-
*
|
|
12411
|
-
* Handles:
|
|
12412
|
-
* - SmartlinksApiError (and duck-typed equivalents from proxy mode)
|
|
12413
|
-
* - Standard Error: Uses message property
|
|
12414
|
-
* - String: Passes through directly (for native bridge errors)
|
|
12415
|
-
* - Unknown: Returns generic message
|
|
12416
|
-
*/
|
|
12417
|
-
function getFriendlyErrorMessage(error) {
|
|
12418
|
-
// Handle SmartlinksApiError or duck-typed API errors (proxy mode)
|
|
12419
|
-
if (isApiErrorLike(error)) {
|
|
12420
|
-
// First, check for specific error code (most precise)
|
|
12421
|
-
const errorCode = error.errorCode || error.details?.errorCode || error.details?.error;
|
|
12422
|
-
// For rate-limit errors, prefer the backend's message as it includes specific wait times
|
|
12423
|
-
if (errorCode === 'RATE_LIMIT_EXCEEDED' && error.message && error.message !== '[object Object]') {
|
|
12424
|
-
return error.message;
|
|
12425
|
-
}
|
|
12426
|
-
if (errorCode && ERROR_CODE_MESSAGES[errorCode]) {
|
|
12427
|
-
return ERROR_CODE_MESSAGES[errorCode];
|
|
12428
|
-
}
|
|
12429
|
-
// Then, check status code for general category messages
|
|
12430
|
-
if (error.statusCode >= 500) {
|
|
12431
|
-
return 'Server error. Please try again later.';
|
|
12432
|
-
}
|
|
12433
|
-
// For 429 status, prefer backend message (may include wait time)
|
|
12434
|
-
if (error.statusCode === 429 && error.message && error.message !== '[object Object]') {
|
|
12435
|
-
return error.message;
|
|
12436
|
-
}
|
|
12437
|
-
if (STATUS_MESSAGES[error.statusCode]) {
|
|
12438
|
-
return STATUS_MESSAGES[error.statusCode];
|
|
12439
|
-
}
|
|
12440
|
-
// Fall back to the server's message (already human-readable from backend)
|
|
12441
|
-
return error.message;
|
|
12442
|
-
}
|
|
12443
|
-
// Handle standard Error objects
|
|
12444
|
-
if (error instanceof Error) {
|
|
12445
|
-
// SDK bug workaround: SDK may do `throw new Error(responseBodyObject)` which produces
|
|
12446
|
-
// message "[object Object]". Check for API error properties attached to the Error instance.
|
|
12447
|
-
const errAny = error;
|
|
12448
|
-
// Check if the Error has API error properties directly attached (e.g., error.statusCode, error.errorCode)
|
|
12449
|
-
if (typeof errAny.statusCode === 'number' || errAny.errorCode || errAny.response) {
|
|
12450
|
-
// Try to extract from attached properties
|
|
12451
|
-
const apiLike = errAny.response || errAny;
|
|
12452
|
-
if (isApiErrorLike(apiLike)) {
|
|
12453
|
-
return getFriendlyErrorMessage(apiLike);
|
|
12454
|
-
}
|
|
12455
|
-
}
|
|
12456
|
-
// Check if the Error has a `cause` with API error details (modern Error cause pattern)
|
|
12457
|
-
if (errAny.cause && typeof errAny.cause === 'object') {
|
|
12458
|
-
if (isApiErrorLike(errAny.cause)) {
|
|
12459
|
-
return getFriendlyErrorMessage(errAny.cause);
|
|
12460
|
-
}
|
|
12461
|
-
}
|
|
12462
|
-
// If the message is "[object Object]", the error was constructed from a plain object
|
|
12463
|
-
// This is useless - return a generic message instead
|
|
12464
|
-
if (error.message === '[object Object]') {
|
|
12465
|
-
// Log the actual error for debugging
|
|
12466
|
-
console.warn('[AuthKit] Error with [object Object] message. Raw error:', JSON.stringify(errAny, Object.getOwnPropertyNames(errAny)));
|
|
12467
|
-
return 'An unexpected error occurred. Please try again.';
|
|
12468
|
-
}
|
|
12469
|
-
// Check if the message itself contains a known API error pattern
|
|
12470
|
-
if (/already (registered|exists)/i.test(error.message)) {
|
|
12471
|
-
return 'This email is already registered.';
|
|
12472
|
-
}
|
|
12473
|
-
return error.message;
|
|
12474
|
-
}
|
|
12475
|
-
// Handle plain strings (e.g., from native bridge callbacks)
|
|
12476
|
-
if (typeof error === 'string') {
|
|
12477
|
-
return error;
|
|
12478
|
-
}
|
|
12479
|
-
// Unknown error type
|
|
12480
|
-
return 'An unexpected error occurred. Please try again.';
|
|
12481
|
-
}
|
|
12482
|
-
/**
|
|
12483
|
-
* Checks if an error represents a conflict (409) - typically duplicate registration.
|
|
12484
|
-
*/
|
|
12485
|
-
function isConflictError(error) {
|
|
12486
|
-
if (isApiErrorLike(error))
|
|
12487
|
-
return error.statusCode === 409;
|
|
12488
|
-
// Also check error message for keyword match (resilient fallback)
|
|
12489
|
-
if (error instanceof Error && /already (registered|exists)/i.test(error.message))
|
|
12490
|
-
return true;
|
|
12491
|
-
return false;
|
|
12492
|
-
}
|
|
12493
|
-
/**
|
|
12494
|
-
* Checks if an error represents invalid credentials (401).
|
|
12495
|
-
*/
|
|
12496
|
-
function isAuthError(error) {
|
|
12497
|
-
if (error instanceof SmartlinksApiError)
|
|
12498
|
-
return error.isAuthError();
|
|
12499
|
-
if (isApiErrorLike(error))
|
|
12500
|
-
return error.statusCode === 401 || error.statusCode === 403;
|
|
12501
|
-
return false;
|
|
12502
|
-
}
|
|
12503
|
-
/**
|
|
12504
|
-
* Checks if an error represents rate limiting (429).
|
|
12505
|
-
*/
|
|
12506
|
-
function isRateLimitError(error) {
|
|
12507
|
-
if (error instanceof SmartlinksApiError)
|
|
12508
|
-
return error.isRateLimited();
|
|
12509
|
-
if (isApiErrorLike(error))
|
|
12510
|
-
return error.statusCode === 429;
|
|
12511
|
-
return false;
|
|
12512
|
-
}
|
|
12513
|
-
/**
|
|
12514
|
-
* Checks if an error represents a server error (5xx).
|
|
12515
|
-
*/
|
|
12516
|
-
function isServerError(error) {
|
|
12517
|
-
if (error instanceof SmartlinksApiError)
|
|
12518
|
-
return error.isServerError();
|
|
12519
|
-
if (isApiErrorLike(error))
|
|
12520
|
-
return error.statusCode >= 500;
|
|
12521
|
-
return false;
|
|
12522
|
-
}
|
|
12523
|
-
/**
|
|
12524
|
-
* Gets the HTTP status code from an error, if available.
|
|
12525
|
-
*/
|
|
12526
|
-
function getErrorStatusCode(error) {
|
|
12527
|
-
if (isApiErrorLike(error))
|
|
12528
|
-
return error.statusCode;
|
|
12529
|
-
return undefined;
|
|
12530
|
-
}
|
|
12531
|
-
/**
|
|
12532
|
-
* Gets the server-specific error code from an error, if available.
|
|
12533
|
-
*/
|
|
12534
|
-
function getErrorCode(error) {
|
|
12535
|
-
if (isApiErrorLike(error)) {
|
|
12536
|
-
return error.errorCode || error.details?.errorCode || error.details?.error;
|
|
12537
|
-
}
|
|
12538
|
-
return undefined;
|
|
12539
|
-
}
|
|
12540
|
-
/**
|
|
12541
|
-
* Error codes that indicate the user needs to verify their email.
|
|
12542
|
-
*/
|
|
12543
|
-
const EMAIL_VERIFICATION_ERROR_CODES = new Set([
|
|
12544
|
-
'EMAIL_NOT_VERIFIED',
|
|
12545
|
-
'ACCOUNT_LOCKED',
|
|
12546
|
-
'EMAIL_VERIFICATION_EXPIRED',
|
|
12547
|
-
]);
|
|
12548
|
-
/**
|
|
12549
|
-
* Checks if an error requires email verification action from the user.
|
|
12550
|
-
*/
|
|
12551
|
-
function requiresEmailVerification(error) {
|
|
12552
|
-
const code = getErrorCode(error);
|
|
12553
|
-
if (code && EMAIL_VERIFICATION_ERROR_CODES.has(code))
|
|
12554
|
-
return true;
|
|
12555
|
-
// Also check the flag from the response body
|
|
12556
|
-
if (error && typeof error === 'object' && 'requiresEmailVerification' in error) {
|
|
12557
|
-
return error.requiresEmailVerification === true;
|
|
12558
|
-
}
|
|
12559
|
-
return false;
|
|
12560
|
-
}
|
|
12561
|
-
|
|
12562
12590
|
// VERSION: Update this when making changes to help identify which version is running
|
|
12563
12591
|
const AUTH_UI_VERSION = '46';
|
|
12564
12592
|
const LOG_PREFIX = `[SmartlinksAuthUI:v${AUTH_UI_VERSION}]`;
|
|
@@ -13852,11 +13880,13 @@ const SmartlinksAuthUI = ({ apiEndpoint, clientId, clientName, accountData, onAu
|
|
|
13852
13880
|
setLoading(false);
|
|
13853
13881
|
}
|
|
13854
13882
|
};
|
|
13855
|
-
const handlePhoneAuth = async (phoneNumber, verificationCode) => {
|
|
13883
|
+
const handlePhoneAuth = async (phoneNumber, verificationCode, displayName) => {
|
|
13856
13884
|
setLoading(true);
|
|
13857
13885
|
setError(undefined);
|
|
13858
13886
|
try {
|
|
13859
13887
|
if (!verificationCode) {
|
|
13888
|
+
// Phone verify endpoint handles account creation on the backend side,
|
|
13889
|
+
// so no need for ensureAccount here (register requires email which phone users may not have)
|
|
13860
13890
|
// Send verification code via Twilio Verify Service
|
|
13861
13891
|
await api.sendPhoneCode(phoneNumber);
|
|
13862
13892
|
// Twilio Verify Service tracks the verification by phone number
|
|
@@ -13975,10 +14005,12 @@ const SmartlinksAuthUI = ({ apiEndpoint, clientId, clientName, accountData, onAu
|
|
|
13975
14005
|
setLoading(false);
|
|
13976
14006
|
}
|
|
13977
14007
|
};
|
|
13978
|
-
const handleMagicLink = async (email) => {
|
|
14008
|
+
const handleMagicLink = async (email, displayName) => {
|
|
13979
14009
|
setLoading(true);
|
|
13980
14010
|
setError(undefined);
|
|
13981
14011
|
try {
|
|
14012
|
+
// Ensure account exists before sending magic link (creates if new, no-op if exists)
|
|
14013
|
+
await api.ensureAccount({ email, displayName });
|
|
13982
14014
|
await api.sendMagicLink(email, getRedirectUrl());
|
|
13983
14015
|
setAuthSuccess(true);
|
|
13984
14016
|
setSuccessMessage('Magic link sent! Check your email to log in.');
|
|
@@ -14025,7 +14057,7 @@ const SmartlinksAuthUI = ({ apiEndpoint, clientId, clientName, accountData, onAu
|
|
|
14025
14057
|
? 'hsl(var(--muted-foreground, 215 15% 45%))'
|
|
14026
14058
|
: (resolvedTheme === 'dark' ? '#94a3b8' : '#6B7280'),
|
|
14027
14059
|
fontSize: '0.875rem'
|
|
14028
|
-
}, children: successMessage })] })) : mode === 'magic-link' ? (jsx(MagicLinkForm, { onSubmit: handleMagicLink, onCancel: () => setMode('login'), loading: loading, error: error })) : mode === 'phone' ? (jsx(PhoneAuthForm, { onSubmit: handlePhoneAuth, onBack: () => setMode('login'), loading: loading, error: error })) : mode === 'reset-password' ? (jsx(PasswordResetForm, { onSubmit: handlePasswordReset, onBack: () => {
|
|
14060
|
+
}, children: successMessage })] })) : mode === 'magic-link' ? (jsx(MagicLinkForm, { onSubmit: handleMagicLink, onCancel: () => setMode('login'), loading: loading, error: error, collectName: config?.collectNameOnPasswordlessSignup })) : mode === 'phone' ? (jsx(PhoneAuthForm, { onSubmit: handlePhoneAuth, onBack: () => setMode('login'), loading: loading, error: error, collectName: config?.collectNameOnPasswordlessSignup })) : mode === 'reset-password' ? (jsx(PasswordResetForm, { onSubmit: handlePasswordReset, onBack: () => {
|
|
14029
14061
|
setMode('login');
|
|
14030
14062
|
setResetSuccess(false);
|
|
14031
14063
|
setResetToken(undefined); // Clear token when going back
|