Untitled
unknown
plain_text
a year ago
5.9 kB
6
Indexable
import { View, Text, KeyboardAvoidingView, Platform, ScrollView, TouchableOpacity, Image, } from 'react-native'; import React from 'react'; import kycController from './useKyc'; import styles from './kyc.style'; import { Button, CountryNameModal, CustomStatusBar, Dropdown, Header, Input, } from '@components'; import SvgIndex from '@svgIndex'; import {documentType} from './kyc.const'; import {space} from '@utility/validation/commonVariable'; const Kyc: React.FC = () => { const {validation, kycDetail, setKycDetail, errorObject, uploadPhoto} = kycController(); return ( <View style={styles.container}> <CustomStatusBar /> <Header title="KYC" /> <KeyboardAvoidingView style={styles.keyboardContainer} behavior={Platform.OS == 'ios' ? 'padding' : undefined}> <ScrollView contentContainerStyle={styles.scrollContainer} showsVerticalScrollIndicator={false}> {/* <Text allowFontScaling={false} style={styles.kybText}> KYC </Text> */} <Text allowFontScaling={false} style={styles.detailsText}> Lorem ipsum dolor sit amet, consectetur adipiscin </Text> <Input value={kycDetail?.firstName} onChangeText={text => setKycDetail('firstName', text?.trimStart().replace(space, ' ')) } placeholder="First Name" leftIcon={() => <SvgIndex.user />} error={errorObject?.firstNameError} inputProps={{ maxLength: 50, }} /> <Input value={kycDetail?.lastName} onChangeText={text => setKycDetail('lastName', text?.trimStart().replace(space, ' ')) } placeholder="Last Name" leftIcon={() => <SvgIndex.user />} error={errorObject?.lastNameError} inputProps={{ maxLength: 50, }} /> <Input value={kycDetail?.birthDate} onChangeText={text => setKycDetail('birthDate', text?.trim())} placeholder="Date of Birth (dd/mm/yyyy)" leftIcon={() => <SvgIndex.hotel />} error={errorObject?.birthDateError} inputProps={{ maxLength: 50, }} /> {/* <Input value={kycDetail?.name} onChangeText={text => setKycDetail('name', text?.trimStart().replace(space, ' ')) } placeholder="Name" leftIcon={() => <SvgIndex.user />} error={errorObject?.nameError} inputProps={{ maxLength: 50, }} /> */} <Dropdown placeholder="Type of Document" value={kycDetail?.documentType} onPress={value => setKycDetail('documentType', value)} data={documentType} leftIcon={() => <SvgIndex.hotel />} error={errorObject?.documentError} /> <Input value={kycDetail?.uniqueId} onChangeText={text => setKycDetail('uniqueId', text?.trim())} placeholder="Unique ID" leftIcon={() => <SvgIndex.governmentFlag />} error={errorObject?.uniqueIdError} inputProps={{ maxLength: 25, }} /> <CountryNameModal placeholder="Country" value={kycDetail?.country} setCountryName={(item: string) => setKycDetail('country', item)} data={kycDetail?.countryData} error={errorObject?.countryError} /> <Input placeholder="Address" value={kycDetail?.address} onChangeText={text => setKycDetail('address', text?.trimStart().replace(space, ' ')) } leftIcon={() => <SvgIndex.location />} inputProps={{maxLength: 255}} error={errorObject?.addressError} /> <View style={styles.photoDivider}> <TouchableOpacity style={styles.photoParent} activeOpacity={0.7} onPress={() => uploadPhoto('front')}> {!kycDetail?.frontImage ? ( <> <SvgIndex.add /> <Text allowFontScaling={false} style={styles.uploadCoverText}> Upload Front Photo </Text> </> ) : ( <Image style={styles.imageStyle} source={{uri: kycDetail?.frontImage?.uri}} /> )} </TouchableOpacity> <TouchableOpacity style={styles.photo1Parent} activeOpacity={0.7} onPress={() => uploadPhoto('back')}> {!kycDetail?.backImage ? ( <> <SvgIndex.add /> <Text allowFontScaling={false} style={styles.uploadCoverText}> Upload Back Photo </Text> </> ) : ( <Image style={styles.imageStyle} source={{uri: kycDetail?.backImage?.uri}} /> )} </TouchableOpacity> </View> {errorObject?.imageError && ( <Text allowFontScaling={false} style={styles.error}> {errorObject?.imageError} </Text> )} <View style={styles.subContainer}> <Button loading={kycDetail?.loading} title="Submit" containerStyle={styles.buttonContainer} onPress={validation} /> </View> </ScrollView> </KeyboardAvoidingView> </View> ); }; export default Kyc;
Editor is loading...
Leave a Comment