import React, { useState, useCallback, useContext } from 'react'; import { useWindowDimensions, InteractionManager, ScrollView, ActivityIndicator, StatusBar, View, StyleSheet } from 'react-native'; import QRCode from 'react-native-qrcode-svg'; import { useTheme, useNavigation, useFocusEffect, useRoute } from '@react-navigation/native'; import { BlueSpacing20, SafeBlueArea, BlueText, BlueCopyTextToClipboard, BlueCard } from '../../BlueComponents'; import navigationStyle from '../../components/navigationStyle'; import Privacy from '../../blue_modules/Privacy'; import Biometric from '../../class/biometrics'; import { LegacyWallet, LightningCustodianWallet, SegwitBech32Wallet, SegwitP2SHWallet, WatchOnlyWallet } from '../../class'; import loc from '../../loc'; import { BlueStorageContext } from '../../blue_modules/storage-context'; const styles = StyleSheet.create({ loading: { flex: 1, justifyContent: 'center', }, scrollViewContent: { alignItems: 'center', justifyContent: 'center', flexGrow: 1, }, activeQrcode: { borderWidth: 6, borderRadius: 8, borderColor: '#FFFFFF' }, type: { fontSize: 17, fontWeight: '700', }, secret: { alignItems: 'center', paddingHorizontal: 16, fontSize: 16, lineHeight: 24, }, }); const WalletExport = () => { const { wallets, saveToDisk } = useContext(BlueStorageContext); const { walletID } = useRoute().params; const [isLoading, setIsLoading] = useState(true); const { goBack } = useNavigation(); const { colors } = useTheme(); const { width, height } = useWindowDimensions(); const wallet = wallets.find(w => w.getID() === walletID); const stylesHook = { ...styles, loading: { ...styles.loading, backgroundColor: colors.elevated, }, root: { backgroundColor: colors.elevated, }, type: { ...styles.type, color: colors.foregroundColor }, secret: { ...styles.secret, color: colors.foregroundColor }, warning: { ...styles.secret, color: colors.failedColor }, }; useFocusEffect( useCallback(() => { Privacy.enableBlur(); const task = InteractionManager.runAfterInteractions(async () => { if (wallet) { const isBiometricsEnabled = await Biometric.isBiometricUseCapableAndEnabled(); if (isBiometricsEnabled) { if (!(await Biometric.unlockWithBiometrics())) { return goBack(); } } if (!wallet.getUserHasSavedExport()) { wallet.setUserHasSavedExport(true); saveToDisk(); } setIsLoading(false); } }); return () => { task.cancel(); Privacy.disableBlur(); }; // eslint-disable-next-line react-hooks/exhaustive-deps }, [goBack, wallet]), ); if (isLoading || !wallet) return ( ); // for SLIP39 we need to show all shares let secrets = wallet.getSecret(); if (typeof secrets === 'string') { secrets = [secrets]; } return ( {wallet.typeReadable} {[LegacyWallet.type, SegwitBech32Wallet.type, SegwitP2SHWallet.type].includes(wallet.type) && ( {wallet.getAddress()} )} {secrets.map(s => ( width ? width - 40 : width / 2} logoSize={70} color="#000000" logoBackgroundColor={colors.brandingColor} backgroundColor="#FFFFFF" ecl="H" /> {wallet.type !== WatchOnlyWallet.type && {loc.wallets.warning_do_not_disclose}} {wallet.type === LightningCustodianWallet.type || wallet.type === WatchOnlyWallet.type ? ( ) : ( {wallet.getSecret()} )} ))} ); }; WalletExport.navigationOptions = navigationStyle( { closeButton: true, headerLeft: null, }, opts => ({ ...opts, title: loc.wallets.export_title }), ); export default WalletExport;