From 0c5929f379a6679dbf842e3d421e86af081f63f2 Mon Sep 17 00:00:00 2001 From: Vit Horacek <36083550+mountiny@users.noreply.github.com> Date: Mon, 22 Apr 2024 14:58:52 +0200 Subject: [PATCH] Merge pull request #40690 from Expensify/revert-30849-getting_two_magic_codes_upon_signing_once_30181 [CP Staging] Revert "Fixed getting two magic codes upon signing in once" (cherry picked from commit c57f281122fa88671af385fb4315cb2d28f27ea1) --- src/pages/signin/ChooseSSOOrMagicCode.tsx | 101 +++++++++++++------- src/pages/signin/SignInPage.tsx | 7 +- src/pages/signin/SignInPageLayout/index.tsx | 4 +- 3 files changed, 70 insertions(+), 42 deletions(-) diff --git a/src/pages/signin/ChooseSSOOrMagicCode.tsx b/src/pages/signin/ChooseSSOOrMagicCode.tsx index 3895b303020b..4143c2b733e0 100644 --- a/src/pages/signin/ChooseSSOOrMagicCode.tsx +++ b/src/pages/signin/ChooseSSOOrMagicCode.tsx @@ -1,67 +1,100 @@ -import React from 'react'; -import {View} from 'react-native'; +import React, {useEffect} from 'react'; +import {Keyboard, View} from 'react-native'; import {withOnyx} from 'react-native-onyx'; import type {OnyxEntry} from 'react-native-onyx'; import Button from '@components/Button'; +import FormHelpMessage from '@components/FormHelpMessage'; import Text from '@components/Text'; +import useKeyboardState from '@hooks/useKeyboardState'; import useLocalize from '@hooks/useLocalize'; import useNetwork from '@hooks/useNetwork'; import useThemeStyles from '@hooks/useThemeStyles'; import useWindowDimensions from '@hooks/useWindowDimensions'; +import * as ErrorUtils from '@libs/ErrorUtils'; import Navigation from '@libs/Navigation/Navigation'; +import * as Session from '@userActions/Session'; +import CONST from '@src/CONST'; import ONYXKEYS from '@src/ONYXKEYS'; import ROUTES from '@src/ROUTES'; -import type {Account} from '@src/types/onyx'; -import ValidateCodeForm from './ValidateCodeForm'; +import type {Account, Credentials} from '@src/types/onyx'; +import {isEmptyObject} from '@src/types/utils/EmptyObject'; +import ChangeExpensifyLoginLink from './ChangeExpensifyLoginLink'; +import Terms from './Terms'; type ChooseSSOOrMagicCodeOnyxProps = { + /** The credentials of the logged in person */ + credentials: OnyxEntry; + /** The details about the account that the user is signing in with */ account: OnyxEntry; }; type ChooseSSOOrMagicCodeProps = ChooseSSOOrMagicCodeOnyxProps & { - /** Determines if user is switched to using recovery code instead of 2fa code */ - isUsingRecoveryCode: boolean; - - /** Function to change `isUsingRecoveryCode` state when user toggles between 2fa code and recovery code */ - setIsUsingRecoveryCode: (value: boolean) => void; + /** Function that returns whether the user is using SAML or magic codes to log in */ + setIsUsingMagicCode: (value: boolean) => void; }; -function ChooseSSOOrMagicCode({account, isUsingRecoveryCode, setIsUsingRecoveryCode}: ChooseSSOOrMagicCodeProps) { +function ChooseSSOOrMagicCode({credentials, account, setIsUsingMagicCode}: ChooseSSOOrMagicCodeProps) { const styles = useThemeStyles(); + const {isKeyboardShown} = useKeyboardState(); const {translate} = useLocalize(); const {isOffline} = useNetwork(); const {isSmallScreenWidth} = useWindowDimensions(); - const loginTextAfterMagicCode = isUsingRecoveryCode ? translate('validateCodeForm.enterRecoveryCode') : translate('validateCodeForm.enterAuthenticatorCode'); - const loginText = account?.requiresTwoFactorAuth ? loginTextAfterMagicCode : translate('samlSignIn.orContinueWithMagicCode'); + + // This view doesn't have a field for user input, so dismiss the device keyboard if shown + useEffect(() => { + if (!isKeyboardShown) { + return; + } + Keyboard.dismiss(); + }, [isKeyboardShown]); return ( - - {translate('samlSignIn.welcomeSAMLEnabled')} -