import React, { useCallback, useContext, useEffect } from 'react'; import { useNavigation, useRoute } from '@react-navigation/native'; import { View, useWindowDimensions, StyleSheet, BackHandler, ScrollView } from 'react-native'; import QRCode from 'react-native-qrcode-svg'; import { BlueCopyTextToClipboard, BlueSpacing20, BlueTextCentered, SafeBlueArea } from '../../BlueComponents'; import navigationStyle from '../../components/navigationStyle'; import Privacy from '../../blue_modules/Privacy'; import loc from '../../loc'; import { BlueStorageContext } from '../../blue_modules/storage-context'; import { useTheme } from '../../components/themes'; import Button from '../../components/Button'; const PleaseBackupLdk = () => { const { wallets } = useContext(BlueStorageContext); const { walletID } = useRoute().params; /** @type {LightningLdkWallet} */ const wallet = wallets.find(w => w.getID() === walletID); const navigation = useNavigation(); const { colors } = useTheme(); const { height, width } = useWindowDimensions(); const handleBackButton = useCallback(() => { navigation.getParent().pop(); return true; }, [navigation]); const styles = StyleSheet.create({ root: { flex: 1, backgroundColor: colors.elevated, }, scrollViewContent: { flexGrow: 1, backgroundColor: colors.elevated, justifyContent: 'center', alignItems: 'center', padding: 20, }, qrCodeContainer: { borderWidth: 6, borderRadius: 8, borderColor: '#FFFFFF' }, }); useEffect(() => { Privacy.enableBlur(); BackHandler.addEventListener('hardwareBackPress', handleBackButton); return () => { Privacy.disableBlur(); BackHandler.removeEventListener('hardwareBackPress', handleBackButton); }; }, [handleBackButton]); const pop = () => navigation.getParent().pop(); return ( Please save this wallet backup. It allows you to restore all your channels on other device. width ? width - 40 : width / 2} color="#000000" logoBackgroundColor={colors.brandingColor} backgroundColor="#FFFFFF" ecl="H" />