import React from 'react'; import { Image, Keyboard, Text, StyleSheet, TextInput, TouchableOpacity, View } from 'react-native'; import loc from '../loc'; import { scanQrHelper } from '../helpers/scan-qr'; import { useTheme } from './themes'; import { useNavigation } from '@react-navigation/native'; interface AddressInputProps { isLoading?: boolean; address?: string; placeholder?: string; onChangeText: (text: string) => void; onBarScanned: (ret: { data?: any }) => void; scanButtonTapped?: () => void; launchedBy?: string; editable?: boolean; inputAccessoryViewID?: string; onBlur?: () => void; keyboardType?: | 'default' | 'numeric' | 'email-address' | 'ascii-capable' | 'numbers-and-punctuation' | 'url' | 'number-pad' | 'phone-pad' | 'name-phone-pad' | 'decimal-pad' | 'twitter' | 'web-search' | 'visible-password'; } const AddressInput = ({ isLoading = false, address = '', placeholder = loc.send.details_address, onChangeText, onBarScanned, scanButtonTapped = () => {}, launchedBy, editable = true, inputAccessoryViewID, onBlur = () => {}, keyboardType = 'default', }: AddressInputProps) => { const { colors } = useTheme(); const { navigate } = useNavigation(); const stylesHook = StyleSheet.create({ root: { borderColor: colors.formBorder, borderBottomColor: colors.formBorder, backgroundColor: colors.inputBackgroundColor, }, scan: { backgroundColor: colors.scanLabel, }, scanText: { color: colors.inverseForegroundColor, }, }); const onBlurEditing = () => { onBlur(); Keyboard.dismiss(); }; return ( {editable ? ( { await scanButtonTapped(); Keyboard.dismiss(); // @ts-ignore: Fix later scanQrHelper(navigate, launchedBy).then(onBarScanned); }} accessibilityRole="button" style={[styles.scan, stylesHook.scan]} accessibilityLabel={loc.send.details_scan} accessibilityHint={loc.send.details_scan_hint} > {loc.send.details_scan} ) : null} ); }; const styles = StyleSheet.create({ root: { flexDirection: 'row', borderWidth: 1.0, borderBottomWidth: 0.5, minHeight: 44, height: 44, marginHorizontal: 20, alignItems: 'center', marginVertical: 8, borderRadius: 4, }, input: { flex: 1, marginHorizontal: 8, minHeight: 33, color: '#81868e', }, scan: { height: 36, flexDirection: 'row', alignItems: 'center', justifyContent: 'space-between', borderRadius: 4, paddingVertical: 4, paddingHorizontal: 8, marginHorizontal: 4, }, scanText: { marginLeft: 4, }, }); export default AddressInput;