BlueWallet/screen/wallets/export.js

140 lines
4.5 KiB
JavaScript
Raw Normal View History

2020-12-03 02:36:48 +01:00
import React, { useState, useCallback, useContext, useRef } from 'react';
2020-08-05 02:03:00 +02:00
import { useWindowDimensions, InteractionManager, ScrollView, ActivityIndicator, StatusBar, View, StyleSheet } from 'react-native';
2019-02-14 06:15:56 +01:00
import QRCode from 'react-native-qrcode-svg';
2020-12-04 14:39:47 +01:00
import { BlueSpacing20, SafeBlueArea, BlueNavigationStyle, BlueText, BlueCopyTextToClipboard, BlueCard } from '../../BlueComponents';
import Privacy from '../../Privacy';
import Biometric from '../../class/biometrics';
import { LegacyWallet, LightningCustodianWallet, SegwitBech32Wallet, SegwitP2SHWallet, WatchOnlyWallet } from '../../class';
2020-07-20 15:38:46 +02:00
import loc from '../../loc';
2020-12-04 14:39:47 +01:00
import { useTheme, useNavigation, useFocusEffect, useRoute } from '@react-navigation/native';
import { BlueStorageContext } from '../../blue_modules/storage-context';
2018-01-30 23:42:38 +01:00
const styles = StyleSheet.create({
loading: {
flex: 1,
justifyContent: 'center',
},
root: {
flex: 1,
},
scrollViewContent: {
alignItems: 'center',
justifyContent: 'center',
flexGrow: 1,
},
2020-08-03 19:26:16 +02:00
activeQrcode: { borderWidth: 6, borderRadius: 8, borderColor: '#FFFFFF' },
type: {
fontSize: 17,
fontWeight: '700',
},
secret: {
alignItems: 'center',
paddingHorizontal: 16,
fontSize: 16,
lineHeight: 24,
},
});
2020-08-05 02:03:00 +02:00
const WalletExport = () => {
const { wallets, saveToDisk } = useContext(BlueStorageContext);
const { walletID } = useRoute().params;
2020-12-03 02:36:48 +01:00
const wallet = useRef(wallets.find(w => w.getID() === walletID));
2020-08-05 02:03:00 +02:00
const [isLoading, setIsLoading] = useState(true);
const { goBack } = useNavigation();
const { colors } = useTheme();
const { width, height } = useWindowDimensions();
const stylesHook = {
...styles,
loading: {
...styles.loading,
backgroundColor: colors.elevated,
},
root: {
...styles.root,
backgroundColor: colors.elevated,
},
type: { ...styles.type, color: colors.foregroundColor },
secret: { ...styles.secret, color: colors.foregroundColor },
2020-12-03 16:15:05 +01:00
warning: { ...styles.secret, color: colors.failedColor },
2020-08-05 02:03:00 +02:00
};
2018-01-30 23:42:38 +01:00
2020-08-05 02:03:00 +02:00
useFocusEffect(
useCallback(() => {
Privacy.enableBlur();
const task = InteractionManager.runAfterInteractions(async () => {
if (wallet) {
const isBiometricsEnabled = await Biometric.isBiometricUseCapableAndEnabled();
2020-08-05 02:03:00 +02:00
if (isBiometricsEnabled) {
if (!(await Biometric.unlockWithBiometrics())) {
return goBack();
}
}
2020-08-05 02:03:00 +02:00
setIsLoading(false);
}
});
return () => {
task.cancel();
Privacy.disableBlur();
2020-12-03 02:36:48 +01:00
wallet.current.setUserHasSavedExport(true);
saveToDisk();
2020-08-05 02:03:00 +02:00
};
// eslint-disable-next-line react-hooks/exhaustive-deps
2020-12-03 02:36:48 +01:00
}, [goBack, walletID]),
2020-08-05 02:03:00 +02:00
);
2020-12-03 02:36:48 +01:00
return isLoading && wallet ? (
2020-08-05 02:03:00 +02:00
<View style={stylesHook.loading}>
<ActivityIndicator />
</View>
) : (
<SafeBlueArea style={stylesHook.root}>
<StatusBar barStyle="light-content" />
<ScrollView contentContainerStyle={styles.scrollViewContent}>
<View>
2020-12-03 02:36:48 +01:00
<BlueText style={stylesHook.type}>{wallet.current.typeReadable}</BlueText>
2018-01-30 23:42:38 +01:00
</View>
2020-08-05 02:03:00 +02:00
{(() => {
2020-12-03 02:36:48 +01:00
if ([LegacyWallet.type, SegwitBech32Wallet.type, SegwitP2SHWallet.type].includes(wallet.current.type)) {
2020-08-05 02:03:00 +02:00
return (
<BlueCard>
2020-12-03 02:36:48 +01:00
<BlueText>{wallet.current.getAddress()}</BlueText>
2020-08-05 02:03:00 +02:00
</BlueCard>
);
}
})()}
<BlueSpacing20 />
<View style={styles.activeQrcode}>
<QRCode
2020-12-03 02:36:48 +01:00
value={wallet.current.getSecret()}
2020-08-05 02:03:00 +02:00
logo={require('../../img/qr-code.png')}
size={height > width ? width - 40 : width / 2}
logoSize={70}
color="#000000"
logoBackgroundColor={colors.brandingColor}
backgroundColor="#FFFFFF"
ecl="H"
/>
</View>
2020-12-03 16:15:05 +01:00
{wallet.type !== WatchOnlyWallet.type && <BlueText style={stylesHook.warning}>{loc.wallets.warning_do_not_disclose}</BlueText>}
2020-08-05 02:03:00 +02:00
<BlueSpacing20 />
2020-12-03 02:36:48 +01:00
{wallet.current.type === LightningCustodianWallet.type || wallet.current.type === WatchOnlyWallet.type ? (
<BlueCopyTextToClipboard text={wallet.current.getSecret()} />
2020-08-05 02:03:00 +02:00
) : (
2020-12-03 02:36:48 +01:00
<BlueText style={stylesHook.secret}>{wallet.current.getSecret()}</BlueText>
2020-08-05 02:03:00 +02:00
)}
</ScrollView>
</SafeBlueArea>
);
2018-03-18 03:48:23 +01:00
};
2020-08-05 02:03:00 +02:00
2020-12-04 14:39:47 +01:00
WalletExport.navigationOptions = ({ navigation }) => ({
...BlueNavigationStyle(navigation, true),
2020-07-20 15:38:46 +02:00
title: loc.wallets.export_title,
2020-07-15 19:32:59 +02:00
headerLeft: null,
});
2020-08-05 02:03:00 +02:00
export default WalletExport;