import React, { useEffect, useState, useRef } from 'react'; import { Pressable, StyleSheet, View, Keyboard, Animated, Platform } from 'react-native'; import Spinner from 'react-native-loading-spinner-overlay'; import { useForm, Controller } from 'react-hook-form'; import { PhoneInputNumber } from '../PhoneInputNumber' import { LoginForm as LoginFormController, useLanguage, useConfig, useSession, ToastType, useToast } from 'ordering-components/native'; import { FacebookLogin } from '../FacebookLogin'; import { VerifyPhone } from '../../../../../src/components/VerifyPhone'; import { OModal } from '../../../../../src/components/shared'; import { Container, ButtonsWrapper, LoginWith, FormSide, FormInput, OTabs, OTab, SocialButtons, OrSeparator, LineSeparator, BottomWrapper } from './styles'; import { _removeStoreData } from '../../providers/StoreUtil'; import NavBar from '../NavBar' import { OText, OButton, OInput } from '../shared'; import { LoginParams } from '../../types'; import { useTheme } from 'styled-components/native'; import { useSafeAreaInsets } from 'react-native-safe-area-context'; import MaterialCommunityIcons from 'react-native-vector-icons/MaterialCommunityIcons'; const LoginFormUI = (props: LoginParams) => { const { loginTab, formState, navigation, useLoginByEmail, useLoginByCellphone, loginButtonText, forgotButtonText, verifyPhoneState, checkPhoneCodeState, registerButtonText, setCheckPhoneCodeState, handleButtonLoginClick, handleSendVerifyCode, handleCheckPhoneCode, onNavigationRedirect, notificationState, onHandleOpenSignup, isNavBar } = props const { bottom } = useSafeAreaInsets() const theme = useTheme() const loginStyle = StyleSheet.create({ btnOutline: { backgroundColor: '#FFF', color: theme.colors.primary, height: 42, borderRadius: 3, width: '100%' }, inputStyle: { marginBottom: 18, borderWidth: 1, borderColor: theme.colors.border, minHeight: 42, borderRadius: 3 }, inputWrap: { minHeight: 42, marginBottom: 18 }, wrappText: { display: 'flex', flexDirection: 'row', justifyContent: 'center', backgroundColor: theme.colors.inputDisabled, marginHorizontal: -40, paddingHorizontal: 40, paddingTop: 20, paddingBottom: 20 + bottom, borderTopWidth: 1, borderTopColor: theme.colors.secundary } }); const [, { showToast }] = useToast(); const [, t] = useLanguage() const [{ configs }] = useConfig() const [, { login }] = useSession() const { control, handleSubmit, errors } = useForm(); const [passwordSee, setPasswordSee] = useState(false); const [isLoadingVerifyModal, setIsLoadingVerifyModal] = useState(false); const [isModalVisible, setIsModalVisible] = useState(false); const [isFBLoading, setIsFBLoading] = useState(false); const [phoneInputData, setPhoneInputData] = useState({ error: '', phone: { country_phone_code: null, cellphone: null } }); const inputRef = useRef({}) const handleChangeTab = (val: string) => { props.handleChangeTab(val); setPasswordSee(false); } const onSubmit = (values: any) => { Keyboard.dismiss() if (phoneInputData.error) { showToast(ToastType.Error, phoneInputData.error); return } handleButtonLoginClick({ ...values, ...phoneInputData.phone }); } const handleVerifyCodeClick = () => { if (phoneInputData.error) { showToast(ToastType.Error, phoneInputData.error); return } if ( !phoneInputData.error && !phoneInputData.phone.country_phone_code && !phoneInputData.phone.cellphone ) { showToast(ToastType.Error, t('VALIDATION_ERROR_MOBILE_PHONE_REQUIRED', 'The field Mobile phone is required.')) return } handleSendVerifyCode && handleSendVerifyCode(phoneInputData.phone) setIsLoadingVerifyModal(true) } const handleSuccessFacebook = (user: any) => { _removeStoreData('isGuestUser') login({ user, token: user.session.access_token }) } const handleChangeInputEmail = (value: string, onChange: any) => { onChange(value.toLowerCase().replace(/[&,()%";:รง?<>{}\\[\]\s]/g, '')) } useEffect(() => { if (!formState.loading && formState.result?.error) { formState.result?.result && showToast( ToastType.Error, typeof formState.result?.result === 'string' ? formState.result?.result : formState.result?.result[0] ) } }, [formState]) useEffect(() => { if (verifyPhoneState && !verifyPhoneState?.loading) { if (verifyPhoneState.result?.error) { const message = typeof verifyPhoneState?.result?.result === 'string' ? verifyPhoneState?.result?.result : verifyPhoneState?.result?.result[0] verifyPhoneState.result?.result && showToast( ToastType.Error, message ) setIsLoadingVerifyModal(false) return } const okResult = verifyPhoneState.result?.result === 'OK' if (okResult) { !isModalVisible && setIsModalVisible(true) setIsLoadingVerifyModal(false) } } }, [verifyPhoneState]) useEffect(() => { if (Object.keys(errors).length > 0) { // Convert all errors in one string to show in toast provider const list = Object.values(errors) let stringError = '' if (phoneInputData.error) { list.unshift({ message: phoneInputData.error }) } if ( loginTab === 'cellphone' && !phoneInputData.error && !phoneInputData.phone.country_phone_code && !phoneInputData.phone.cellphone ) { list.unshift({ message: t('VALIDATION_ERROR_MOBILE_PHONE_REQUIRED', 'The field Mobile phone is required.') }) } list.map((item: any, i: number) => { stringError += (i + 1) === list.length ? `- ${item.message}` : `- ${item.message}\n` }) showToast(ToastType.Error, stringError) } }, [errors]) return ( {isNavBar && ( navigation?.canGoBack() && navigation.goBack()} showCall={false} btnStyle={{ paddingLeft: 0 }} paddingTop={0} /> )} {useLoginByEmail && useLoginByCellphone && ( {useLoginByEmail && ( handleChangeTab('email')}> {t('BY_EMAIL', 'by Email')} )} {useLoginByCellphone && ( handleChangeTab('cellphone')}> {t('BY_PHONE', 'by Phone')} )} )} {(useLoginByCellphone || useLoginByEmail) && ( {useLoginByEmail && loginTab === 'email' && ( ( { handleChangeInputEmail(e, onChange) }} value={value} autoCapitalize='none' autoCorrect={false} type='email-address' autoCompleteType='email' returnKeyType='next' onSubmitEditing={() => inputRef.current?.focus()} blurOnSubmit={false} /> )} name="email" rules={{ required: t('VALIDATION_ERROR_EMAIL_REQUIRED', 'The field Email is required').replace('_attribute_', t('EMAIL', 'Email')), pattern: { value: /^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,}$/i, message: t('INVALID_ERROR_EMAIL', 'Invalid email address').replace('_attribute_', t('EMAIL', 'Email')) } }} defaultValue="" /> )} {useLoginByCellphone && loginTab === 'cellphone' && ( setPhoneInputData(val)} textInputProps={{ returnKeyType: 'next', onSubmitEditing: () => inputRef?.current?.focus?.(), }} /> )} ( setPasswordSee(!passwordSee)} /> : setPasswordSee(!passwordSee)} /> } value={value} forwardRef={inputRef} onChange={(val: any) => onChange(val)} returnKeyType='done' onSubmitEditing={handleSubmit(onSubmit)} blurOnSubmit /> )} name="password" rules={{ required: t('VALIDATION_ERROR_PASSWORD_REQUIRED', 'The field Password is required').replace('_attribute_', t('PASSWORD', 'Password')) }} defaultValue="" /> {onNavigationRedirect && forgotButtonText && ( onNavigationRedirect('Forgot')}> <> {forgotButtonText} {` ${t('RESET', 'Reset')}`} )} )} {t('OR', 'or')} {useLoginByCellphone && loginTab === 'cellphone' && configs && Object.keys(configs).length > 0 && (configs?.twilio_service_enabled?.value === 'true' || configs?.twilio_service_enabled?.value === '1') && configs?.twilio_module?.value && ( ) } {configs && Object.keys(configs).length > 0 && ( (configs?.facebook_login?.value === 'true' || configs?.facebook_login?.value === '1') && configs?.facebook_id?.value && ( showToast(ToastType.Error, err)} handleLoading={(val: boolean) => setIsFBLoading(val)} handleSuccessFacebookLogin={handleSuccessFacebook} /> ) )} {onNavigationRedirect && registerButtonText && ( {t('MOBILE_FRONT_ALREADY_DONT_HAVE_AN_ACCOUNT', 'Don\'t have an account?')} onHandleOpenSignup()}> {registerButtonText} )} setIsModalVisible(false)} entireModal title={t('VERIFY_PHONE', 'Verify Phone')} > setIsModalVisible(false)} /> ); }; export const LoginForm = (props: any) => { const loginProps = { ...props, UIComponent: LoginFormUI, handleSuccessLogin: () => _removeStoreData('isGuestUser') }; return ; };