-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #52407 from mkzie2/mkzie2-issue/52124
- Loading branch information
Showing
1 changed file
with
48 additions
and
43 deletions.
There are no files selected for viewing
This file contains 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 |
---|---|---|
@@ -1,78 +1,83 @@ | ||
import React, {useCallback} from 'react'; | ||
import {View} from 'react-native'; | ||
import type {OnyxEntry} from 'react-native-onyx'; | ||
import {withOnyx} from 'react-native-onyx'; | ||
import {useOnyx} from 'react-native-onyx'; | ||
import FullPageNotFoundView from '@components/BlockingViews/FullPageNotFoundView'; | ||
import Icon from '@components/Icon'; | ||
import * as Expensicons from '@components/Icon/Expensicons'; | ||
import * as Illustrations from '@components/Icon/Illustrations'; | ||
import Text from '@components/Text'; | ||
import TextLink from '@components/TextLink'; | ||
import useLocalize from '@hooks/useLocalize'; | ||
import useResponsiveLayout from '@hooks/useResponsiveLayout'; | ||
import useTheme from '@hooks/useTheme'; | ||
import useThemeStyles from '@hooks/useThemeStyles'; | ||
import Navigation from '@libs/Navigation/Navigation'; | ||
import * as ValidationUtils from '@libs/ValidationUtils'; | ||
import variables from '@styles/variables'; | ||
import * as Session from '@userActions/Session'; | ||
import ONYXKEYS from '@src/ONYXKEYS'; | ||
import type {Session as SessionType} from '@src/types/onyx'; | ||
|
||
type ValidateCodeModalOnyxProps = { | ||
/** Session of currently logged in user */ | ||
session: OnyxEntry<SessionType>; | ||
}; | ||
|
||
type ValidateCodeModalProps = ValidateCodeModalOnyxProps & { | ||
type ValidateCodeModalProps = { | ||
/** Code to display. */ | ||
code: string; | ||
/** The ID of the account to which the code belongs. */ | ||
accountID: number; | ||
}; | ||
|
||
function ValidateCodeModal({code, accountID, session = {}}: ValidateCodeModalProps) { | ||
function ValidateCodeModal({code, accountID}: ValidateCodeModalProps) { | ||
const theme = useTheme(); | ||
const styles = useThemeStyles(); | ||
const [session] = useOnyx(ONYXKEYS.SESSION); | ||
const signInHere = useCallback(() => Session.signInWithValidateCode(accountID, code), [accountID, code]); | ||
const {translate} = useLocalize(); | ||
const {shouldUseNarrowLayout} = useResponsiveLayout(); | ||
|
||
return ( | ||
<View style={styles.deeplinkWrapperContainer}> | ||
<View style={styles.deeplinkWrapperMessage}> | ||
<View style={styles.mb2}> | ||
<FullPageNotFoundView | ||
shouldShow={!ValidationUtils.isValidValidateCode(code)} | ||
shouldShowBackButton={shouldUseNarrowLayout} | ||
onLinkPress={() => { | ||
Navigation.goBack(); | ||
}} | ||
> | ||
<View style={styles.deeplinkWrapperContainer}> | ||
<View style={styles.deeplinkWrapperMessage}> | ||
<View style={styles.mb2}> | ||
<Icon | ||
width={variables.modalTopIconWidth} | ||
height={variables.modalTopIconHeight} | ||
src={Illustrations.MagicCode} | ||
/> | ||
</View> | ||
<Text style={[styles.textHeadline, styles.textXXLarge, styles.textAlignCenter]}>{translate('validateCodeModal.title')}</Text> | ||
<View style={[styles.mt2, styles.mb2]}> | ||
<Text style={styles.textAlignCenter}> | ||
{translate('validateCodeModal.description')} | ||
{!session?.authToken && ( | ||
<> | ||
{translate('validateCodeModal.or')} <TextLink onPress={signInHere}>{translate('validateCodeModal.signInHere')}</TextLink> | ||
</> | ||
)} | ||
. | ||
</Text> | ||
</View> | ||
<View style={styles.mt6}> | ||
<Text style={styles.validateCodeDigits}>{code}</Text> | ||
</View> | ||
</View> | ||
<View style={styles.deeplinkWrapperFooter}> | ||
<Icon | ||
width={variables.modalTopIconWidth} | ||
height={variables.modalTopIconHeight} | ||
src={Illustrations.MagicCode} | ||
width={variables.modalWordmarkWidth} | ||
height={variables.modalWordmarkHeight} | ||
fill={theme.success} | ||
src={Expensicons.ExpensifyWordmark} | ||
/> | ||
</View> | ||
<Text style={[styles.textHeadline, styles.textXXLarge, styles.textAlignCenter]}>{translate('validateCodeModal.title')}</Text> | ||
<View style={[styles.mt2, styles.mb2]}> | ||
<Text style={styles.textAlignCenter}> | ||
{translate('validateCodeModal.description')} | ||
{!session?.authToken && ( | ||
<> | ||
{translate('validateCodeModal.or')} <TextLink onPress={signInHere}>{translate('validateCodeModal.signInHere')}</TextLink> | ||
</> | ||
)} | ||
. | ||
</Text> | ||
</View> | ||
<View style={styles.mt6}> | ||
<Text style={styles.validateCodeDigits}>{code}</Text> | ||
</View> | ||
</View> | ||
<View style={styles.deeplinkWrapperFooter}> | ||
<Icon | ||
width={variables.modalWordmarkWidth} | ||
height={variables.modalWordmarkHeight} | ||
fill={theme.success} | ||
src={Expensicons.ExpensifyWordmark} | ||
/> | ||
</View> | ||
</View> | ||
</FullPageNotFoundView> | ||
); | ||
} | ||
|
||
ValidateCodeModal.displayName = 'ValidateCodeModal'; | ||
|
||
export default withOnyx<ValidateCodeModalProps, ValidateCodeModalOnyxProps>({ | ||
session: {key: ONYXKEYS.SESSION}, | ||
})(ValidateCodeModal); | ||
export default ValidateCodeModal; |