import React, { useCallback, useContext, useEffect, useState } from 'react'; import { useNavigation, useRoute, useTheme } from '@react-navigation/native'; import { View, StyleSheet, BackHandler, StatusBar } from 'react-native'; import QRCode from 'react-native-qrcode-svg'; import { ScrollView } from 'react-native-gesture-handler'; import { BlueButton, BlueCopyTextToClipboard, BlueSpacing20, BlueText, 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 { LightningCustodianWallet } from '../../class'; const PleaseBackupLNDHub = () => { const { wallets } = useContext(BlueStorageContext); const { walletID } = useRoute().params; const wallet = wallets.find(w => w.getID() === walletID); const navigation = useNavigation(); const { colors } = useTheme(); const [qrCodeSize, setQRCodeSize] = useState(90); const handleBackButton = useCallback(() => { navigation.dangerouslyGetParent().pop(); return true; }, [navigation]); const styles = StyleSheet.create({ root: { 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.dangerouslyGetParent().pop(); const onLayout = e => { const { height, width } = e.nativeEvent.layout; setQRCodeSize(height > width ? width - 40 : e.nativeEvent.layout.width / 1.5); }; return ( {loc.pleasebackup.text_lnd} {wallet.getBaseURI() === LightningCustodianWallet.defaultBaseUri && - {loc.pleasebackup.text_lnd2}} ); }; PleaseBackupLNDHub.navigationOptions = navigationStyle( { closeButton: true, headerLeft: null, headerRight: null, gestureEnabled: false, swipeEnabled: false, }, opts => ({ ...opts, title: loc.pleasebackup.title }), ); export default PleaseBackupLNDHub;