BlueWallet/screen/wallets/xpub.js

106 lines
3.2 KiB
JavaScript
Raw Normal View History

2020-08-04 19:50:32 -04:00
import React, { useCallback, useState } from 'react';
import { InteractionManager, useWindowDimensions, ActivityIndicator, View, StatusBar, StyleSheet } from 'react-native';
2019-02-14 00:15:56 -05:00
import QRCode from 'react-native-qrcode-svg';
2019-01-21 08:55:39 -05:00
import { BlueSpacing20, SafeBlueArea, BlueText, BlueNavigationStyle, BlueCopyTextToClipboard } from '../../BlueComponents';
import Privacy from '../../Privacy';
import Biometric from '../../class/biometrics';
2020-07-20 16:38:46 +03:00
import loc from '../../loc';
2020-08-04 19:50:32 -04:00
import { useFocusEffect, useRoute, useNavigation, useTheme } from '@react-navigation/native';
/** @type {AppStorage} */
const BlueApp = require('../../BlueApp');
const styles = StyleSheet.create({
root: {
flex: 1,
paddingTop: 20,
},
container: {
alignItems: 'center',
flex: 1,
justifyContent: 'center',
},
2020-08-03 13:26:16 -04:00
qrCodeContainer: { borderWidth: 6, borderRadius: 8, borderColor: '#FFFFFF' },
});
2020-08-04 19:50:32 -04:00
const WalletXpub = () => {
const { secret } = useRoute().params;
const [isLoading, setIsLoading] = useState(true);
const [xPub, setXPub] = useState();
const [xPubText, setXPubText] = useState();
const [wallet, setWallet] = useState();
const { goBack } = useNavigation();
const { colors } = useTheme();
const { width, height } = useWindowDimensions();
const stylesHook = StyleSheet.create({ root: { backgroundColor: colors.elevated } });
2020-08-04 19:50:32 -04:00
useFocusEffect(
useCallback(() => {
Privacy.enableBlur();
const task = InteractionManager.runAfterInteractions(async () => {
for (const w of BlueApp.getWallets()) {
if (w.getSecret() === secret) {
// found our wallet
setWallet(w);
}
}
2020-08-04 19:50:32 -04:00
if (wallet) {
const isBiometricsEnabled = await Biometric.isBiometricUseCapableAndEnabled();
2020-08-04 19:50:32 -04:00
if (isBiometricsEnabled) {
if (!(await Biometric.unlockWithBiometrics())) {
return goBack();
}
}
setXPub(wallet.getXpub());
setXPubText(wallet.getXpub());
setIsLoading(false);
}
});
return () => {
task.cancel();
Privacy.disableBlur();
};
}, [goBack, secret, wallet]),
);
2020-08-04 19:50:32 -04:00
return isLoading ? (
<View style={[styles.root, stylesHook.root]}>
2020-08-04 19:50:32 -04:00
<ActivityIndicator />
</View>
) : (
<SafeBlueArea style={[styles.root, stylesHook.root]}>
2020-08-04 19:50:32 -04:00
<StatusBar barStyle="light-content" />
<View style={styles.container}>
<View>
<BlueText>{wallet.typeReadable}</BlueText>
</View>
2020-08-04 19:50:32 -04:00
<BlueSpacing20 />
<View style={styles.qrCodeContainer}>
<QRCode
value={xPub}
logo={require('../../img/qr-code.png')}
size={height > width ? width - 40 : width / 2}
logoSize={90}
color="#000000"
logoBackgroundColor={colors.brandingColor}
backgroundColor="#FFFFFF"
ecl="H"
/>
2019-01-06 14:28:02 -05:00
</View>
2020-08-04 19:50:32 -04:00
<BlueSpacing20 />
<BlueCopyTextToClipboard text={xPubText} />
</View>
</SafeBlueArea>
);
};
2020-07-15 13:32:59 -04:00
WalletXpub.navigationOptions = ({ navigation }) => ({
...BlueNavigationStyle(navigation, true),
2020-07-20 16:38:46 +03:00
title: loc.wallets.xpub_title,
2020-07-15 13:32:59 -04:00
headerLeft: null,
});
2020-08-04 19:50:32 -04:00
export default WalletXpub;