mirror of
https://github.com/logto-io/logto.git
synced 2025-03-31 22:51:25 -05:00
refactor(experience): hide webauthn on native webview (#4778)
This commit is contained in:
parent
de9810709f
commit
8acfdb86f1
17 changed files with 48 additions and 3 deletions
|
@ -10,6 +10,7 @@ import {
|
|||
backupCodeErrorDataGuard,
|
||||
type BackupCodeBindingState,
|
||||
} from '@/types/guard';
|
||||
import { isNativeWebview } from '@/utils/native-sdk';
|
||||
|
||||
import type { ErrorHandlers } from './use-error-handler';
|
||||
import useStartTotpBinding from './use-start-totp-binding';
|
||||
|
@ -66,14 +67,20 @@ const useMfaErrorHandler = ({ replace }: Options = {}) => {
|
|||
(flow: UserMfaFlow) => {
|
||||
return (error: RequestErrorBody) => {
|
||||
const [_, data] = validate(error.data, mfaErrorDataGuard);
|
||||
const availableFactors = data?.availableFactors ?? [];
|
||||
const factors = data?.availableFactors ?? [];
|
||||
const skippable = data?.skippable;
|
||||
|
||||
if (availableFactors.length === 0) {
|
||||
if (factors.length === 0) {
|
||||
setToast(error.message);
|
||||
return;
|
||||
}
|
||||
|
||||
const availableFactors =
|
||||
// Hide the webauthn factor on native webview if the user has other options, since it's not supported.
|
||||
isNativeWebview() && factors.length > 1
|
||||
? factors.filter((factor) => factor !== MfaFactor.WebAuthn)
|
||||
: factors;
|
||||
|
||||
handleMfaRedirect(flow, { availableFactors, skippable });
|
||||
};
|
||||
},
|
||||
|
|
|
@ -5,7 +5,11 @@ import {
|
|||
type WebAuthnRegistrationOptions,
|
||||
} from '@logto/schemas';
|
||||
import { trySafe } from '@silverhand/essentials';
|
||||
import { startAuthentication, startRegistration } from '@simplewebauthn/browser';
|
||||
import {
|
||||
browserSupportsWebAuthn,
|
||||
startAuthentication,
|
||||
startRegistration,
|
||||
} from '@simplewebauthn/browser';
|
||||
import type {
|
||||
RegistrationResponseJSON,
|
||||
AuthenticationResponseJSON,
|
||||
|
@ -108,6 +112,11 @@ const useWebAuthnOperation = (flow: UserMfaFlow) => {
|
|||
);
|
||||
|
||||
return useCallback(async () => {
|
||||
if (!browserSupportsWebAuthn()) {
|
||||
setToast(t('mfa.webauthn_not_supported'));
|
||||
return;
|
||||
}
|
||||
|
||||
if (!webAuthnOptions) {
|
||||
/**
|
||||
* This error message is just for program robustness; in practice, this issue is unlikely to occur.
|
||||
|
|
|
@ -53,6 +53,8 @@ const mfa = {
|
|||
/** UNTRANSLATED */
|
||||
webauthn_not_ready: 'WebAuthn is not ready yet. Please try again later.',
|
||||
/** UNTRANSLATED */
|
||||
webauthn_not_supported: 'WebAuthn is not supported in this browser.',
|
||||
/** UNTRANSLATED */
|
||||
webauthn_failed_to_create: 'Failed to create. Please try again.',
|
||||
/** UNTRANSLATED */
|
||||
webauthn_failed_to_verify: 'Failed to verify. Please try again.',
|
||||
|
|
|
@ -50,6 +50,7 @@ const mfa = {
|
|||
secret_key_copied: 'Secret key copied.',
|
||||
backup_code_copied: 'Backup code copied.',
|
||||
webauthn_not_ready: 'WebAuthn is not ready yet. Please try again later.',
|
||||
webauthn_not_supported: 'WebAuthn is not supported in this browser.',
|
||||
webauthn_failed_to_create: 'Failed to create. Please try again.',
|
||||
webauthn_failed_to_verify: 'Failed to verify. Please try again.',
|
||||
};
|
||||
|
|
|
@ -52,6 +52,8 @@ const mfa = {
|
|||
/** UNTRANSLATED */
|
||||
webauthn_not_ready: 'WebAuthn is not ready yet. Please try again later.',
|
||||
/** UNTRANSLATED */
|
||||
webauthn_not_supported: 'WebAuthn is not supported in this browser.',
|
||||
/** UNTRANSLATED */
|
||||
webauthn_failed_to_create: 'Failed to create. Please try again.',
|
||||
/** UNTRANSLATED */
|
||||
webauthn_failed_to_verify: 'Failed to verify. Please try again.',
|
||||
|
|
|
@ -52,6 +52,8 @@ const mfa = {
|
|||
/** UNTRANSLATED */
|
||||
webauthn_not_ready: 'WebAuthn is not ready yet. Please try again later.',
|
||||
/** UNTRANSLATED */
|
||||
webauthn_not_supported: 'WebAuthn is not supported in this browser.',
|
||||
/** UNTRANSLATED */
|
||||
webauthn_failed_to_create: 'Failed to create. Please try again.',
|
||||
/** UNTRANSLATED */
|
||||
webauthn_failed_to_verify: 'Failed to verify. Please try again.',
|
||||
|
|
|
@ -52,6 +52,8 @@ const mfa = {
|
|||
/** UNTRANSLATED */
|
||||
webauthn_not_ready: 'WebAuthn is not ready yet. Please try again later.',
|
||||
/** UNTRANSLATED */
|
||||
webauthn_not_supported: 'WebAuthn is not supported in this browser.',
|
||||
/** UNTRANSLATED */
|
||||
webauthn_failed_to_create: 'Failed to create. Please try again.',
|
||||
/** UNTRANSLATED */
|
||||
webauthn_failed_to_verify: 'Failed to verify. Please try again.',
|
||||
|
|
|
@ -52,6 +52,8 @@ const mfa = {
|
|||
/** UNTRANSLATED */
|
||||
webauthn_not_ready: 'WebAuthn is not ready yet. Please try again later.',
|
||||
/** UNTRANSLATED */
|
||||
webauthn_not_supported: 'WebAuthn is not supported in this browser.',
|
||||
/** UNTRANSLATED */
|
||||
webauthn_failed_to_create: 'Failed to create. Please try again.',
|
||||
/** UNTRANSLATED */
|
||||
webauthn_failed_to_verify: 'Failed to verify. Please try again.',
|
||||
|
|
|
@ -50,6 +50,8 @@ const mfa = {
|
|||
/** UNTRANSLATED */
|
||||
webauthn_not_ready: 'WebAuthn is not ready yet. Please try again later.',
|
||||
/** UNTRANSLATED */
|
||||
webauthn_not_supported: 'WebAuthn is not supported in this browser.',
|
||||
/** UNTRANSLATED */
|
||||
webauthn_failed_to_create: 'Failed to create. Please try again.',
|
||||
/** UNTRANSLATED */
|
||||
webauthn_failed_to_verify: 'Failed to verify. Please try again.',
|
||||
|
|
|
@ -52,6 +52,8 @@ const mfa = {
|
|||
/** UNTRANSLATED */
|
||||
webauthn_not_ready: 'WebAuthn is not ready yet. Please try again later.',
|
||||
/** UNTRANSLATED */
|
||||
webauthn_not_supported: 'WebAuthn is not supported in this browser.',
|
||||
/** UNTRANSLATED */
|
||||
webauthn_failed_to_create: 'Failed to create. Please try again.',
|
||||
/** UNTRANSLATED */
|
||||
webauthn_failed_to_verify: 'Failed to verify. Please try again.',
|
||||
|
|
|
@ -52,6 +52,8 @@ const mfa = {
|
|||
/** UNTRANSLATED */
|
||||
webauthn_not_ready: 'WebAuthn is not ready yet. Please try again later.',
|
||||
/** UNTRANSLATED */
|
||||
webauthn_not_supported: 'WebAuthn is not supported in this browser.',
|
||||
/** UNTRANSLATED */
|
||||
webauthn_failed_to_create: 'Failed to create. Please try again.',
|
||||
/** UNTRANSLATED */
|
||||
webauthn_failed_to_verify: 'Failed to verify. Please try again.',
|
||||
|
|
|
@ -52,6 +52,8 @@ const mfa = {
|
|||
/** UNTRANSLATED */
|
||||
webauthn_not_ready: 'WebAuthn is not ready yet. Please try again later.',
|
||||
/** UNTRANSLATED */
|
||||
webauthn_not_supported: 'WebAuthn is not supported in this browser.',
|
||||
/** UNTRANSLATED */
|
||||
webauthn_failed_to_create: 'Failed to create. Please try again.',
|
||||
/** UNTRANSLATED */
|
||||
webauthn_failed_to_verify: 'Failed to verify. Please try again.',
|
||||
|
|
|
@ -52,6 +52,8 @@ const mfa = {
|
|||
/** UNTRANSLATED */
|
||||
webauthn_not_ready: 'WebAuthn is not ready yet. Please try again later.',
|
||||
/** UNTRANSLATED */
|
||||
webauthn_not_supported: 'WebAuthn is not supported in this browser.',
|
||||
/** UNTRANSLATED */
|
||||
webauthn_failed_to_create: 'Failed to create. Please try again.',
|
||||
/** UNTRANSLATED */
|
||||
webauthn_failed_to_verify: 'Failed to verify. Please try again.',
|
||||
|
|
|
@ -52,6 +52,8 @@ const mfa = {
|
|||
/** UNTRANSLATED */
|
||||
webauthn_not_ready: 'WebAuthn is not ready yet. Please try again later.',
|
||||
/** UNTRANSLATED */
|
||||
webauthn_not_supported: 'WebAuthn is not supported in this browser.',
|
||||
/** UNTRANSLATED */
|
||||
webauthn_failed_to_create: 'Failed to create. Please try again.',
|
||||
/** UNTRANSLATED */
|
||||
webauthn_failed_to_verify: 'Failed to verify. Please try again.',
|
||||
|
|
|
@ -47,6 +47,8 @@ const mfa = {
|
|||
/** UNTRANSLATED */
|
||||
webauthn_not_ready: 'WebAuthn is not ready yet. Please try again later.',
|
||||
/** UNTRANSLATED */
|
||||
webauthn_not_supported: 'WebAuthn is not supported in this browser.',
|
||||
/** UNTRANSLATED */
|
||||
webauthn_failed_to_create: 'Failed to create. Please try again.',
|
||||
/** UNTRANSLATED */
|
||||
webauthn_failed_to_verify: 'Failed to verify. Please try again.',
|
||||
|
|
|
@ -47,6 +47,8 @@ const mfa = {
|
|||
/** UNTRANSLATED */
|
||||
webauthn_not_ready: 'WebAuthn is not ready yet. Please try again later.',
|
||||
/** UNTRANSLATED */
|
||||
webauthn_not_supported: 'WebAuthn is not supported in this browser.',
|
||||
/** UNTRANSLATED */
|
||||
webauthn_failed_to_create: 'Failed to create. Please try again.',
|
||||
/** UNTRANSLATED */
|
||||
webauthn_failed_to_verify: 'Failed to verify. Please try again.',
|
||||
|
|
|
@ -47,6 +47,8 @@ const mfa = {
|
|||
/** UNTRANSLATED */
|
||||
webauthn_not_ready: 'WebAuthn is not ready yet. Please try again later.',
|
||||
/** UNTRANSLATED */
|
||||
webauthn_not_supported: 'WebAuthn is not supported in this browser.',
|
||||
/** UNTRANSLATED */
|
||||
webauthn_failed_to_create: 'Failed to create. Please try again.',
|
||||
/** UNTRANSLATED */
|
||||
webauthn_failed_to_verify: 'Failed to verify. Please try again.',
|
||||
|
|
Loading…
Add table
Reference in a new issue