BlueWallet/screen/wallets/PleaseBackup.tsx

141 lines
3.6 KiB
TypeScript
Raw Normal View History

2023-10-23 21:28:44 -04:00
import { useNavigation, useRoute } from '@react-navigation/native';
2024-05-04 18:16:57 -04:00
import React, { useCallback, useEffect } from 'react';
import { BackHandler, I18nManager, ScrollView, StyleSheet, Text, View } from 'react-native';
2024-05-20 10:54:13 +01:00
2024-05-04 18:16:57 -04:00
import { useStorage } from '../../blue_modules/storage-context';
2023-11-15 04:40:22 -04:00
import Button from '../../components/Button';
2024-02-24 06:27:17 -05:00
import { useTheme } from '../../components/themes';
2024-02-20 13:40:16 -04:00
import usePrivacy from '../../hooks/usePrivacy';
2024-02-24 06:27:17 -05:00
import loc from '../../loc';
2023-10-22 21:59:16 -04:00
const PleaseBackup: React.FC = () => {
2024-05-04 18:16:57 -04:00
const { wallets } = useStorage();
2023-10-22 21:59:16 -04:00
const { walletID } = useRoute().params as { walletID: string };
2024-03-15 23:05:15 +03:00
const wallet = wallets.find(w => w.getID() === walletID);
2020-05-27 14:12:17 +03:00
const navigation = useNavigation();
2020-07-15 13:32:59 -04:00
const { colors } = useTheme();
2024-02-20 13:40:16 -04:00
const { enableBlur, disableBlur } = usePrivacy();
2023-10-22 21:59:16 -04:00
2020-10-29 05:26:39 -04:00
const stylesHook = StyleSheet.create({
2020-07-15 13:32:59 -04:00
flex: {
backgroundColor: colors.elevated,
},
word: {
backgroundColor: colors.inputBackgroundColor,
},
wortText: {
color: colors.labelText,
},
pleaseText: {
color: colors.foregroundColor,
},
});
2020-04-27 19:10:42 -04:00
const handleBackButton = useCallback(() => {
2023-10-22 21:59:16 -04:00
// @ts-ignore: Ignore
2023-11-11 07:33:50 -04:00
navigation.getParent()?.pop();
return true;
2020-05-27 14:12:17 +03:00
}, [navigation]);
2020-04-27 19:10:42 -04:00
useEffect(() => {
BackHandler.addEventListener('hardwareBackPress', handleBackButton);
2024-05-04 18:16:57 -04:00
enableBlur();
2020-04-27 19:10:42 -04:00
return () => {
BackHandler.removeEventListener('hardwareBackPress', handleBackButton);
2024-05-04 18:16:57 -04:00
disableBlur();
2020-04-27 19:10:42 -04:00
};
2020-10-29 05:26:39 -04:00
// eslint-disable-next-line react-hooks/exhaustive-deps
}, []);
2020-04-27 19:10:42 -04:00
const renderSecret = () => {
2023-10-22 21:59:16 -04:00
const component: JSX.Element[] = [];
2023-10-23 10:23:19 -04:00
const entries = wallet?.getSecret().split(/\s/).entries();
if (entries) {
for (const [index, secret] of entries) {
if (secret) {
const text = `${index + 1}. ${secret} `;
component.push(
<View style={[styles.word, stylesHook.word]} key={index}>
<Text style={[styles.wortText, stylesHook.wortText]} textBreakStrategy="simple">
{text}
</Text>
</View>,
);
}
2023-10-22 21:59:16 -04:00
}
}
2020-04-27 19:10:42 -04:00
return component;
};
2023-10-22 21:59:16 -04:00
return (
2024-05-04 18:16:57 -04:00
<ScrollView
2024-05-05 16:33:06 -04:00
style={styles.root}
2024-05-04 18:16:57 -04:00
contentContainerStyle={[styles.flex, stylesHook.flex]}
testID="PleaseBackupScrollView"
automaticallyAdjustContentInsets
contentInsetAdjustmentBehavior="automatic"
>
<View style={styles.please}>
<Text style={[styles.pleaseText, stylesHook.pleaseText]}>{loc.pleasebackup.text}</Text>
</View>
<View style={styles.list}>
<View style={styles.secret}>{renderSecret()}</View>
</View>
<View style={styles.bottom}>
<Button testID="PleasebackupOk" onPress={handleBackButton} title={loc.pleasebackup.ok} />
</View>
</ScrollView>
2020-04-27 19:10:42 -04:00
);
};
2020-04-27 19:10:42 -04:00
2020-10-29 05:26:39 -04:00
const styles = StyleSheet.create({
2024-05-05 16:33:06 -04:00
root: {
flex: 1,
},
2021-04-20 16:33:55 +02:00
flex: {
flex: 1,
justifyContent: 'space-around',
},
2020-10-29 05:26:39 -04:00
word: {
marginRight: 8,
marginBottom: 8,
paddingTop: 6,
paddingBottom: 6,
paddingLeft: 8,
paddingRight: 8,
borderRadius: 4,
},
wortText: {
fontWeight: 'bold',
textAlign: 'left',
2021-04-20 16:33:55 +02:00
fontSize: 17,
2020-10-29 05:26:39 -04:00
},
please: {
2021-04-20 16:33:55 +02:00
flexGrow: 1,
paddingHorizontal: 16,
},
list: {
flexGrow: 8,
2020-10-29 05:26:39 -04:00
paddingHorizontal: 16,
},
2021-04-20 16:33:55 +02:00
bottom: {
flexGrow: 2,
alignItems: 'center',
justifyContent: 'center',
},
2020-10-29 05:26:39 -04:00
pleaseText: {
2021-04-20 16:33:55 +02:00
marginVertical: 16,
fontSize: 16,
fontWeight: '500',
2021-10-22 01:54:06 -04:00
writingDirection: I18nManager.isRTL ? 'rtl' : 'ltr',
2020-10-29 05:26:39 -04:00
},
secret: {
flexWrap: 'wrap',
2021-03-17 21:35:25 -04:00
justifyContent: 'center',
2020-10-29 05:26:39 -04:00
marginTop: 14,
2021-03-17 21:35:25 -04:00
flexDirection: I18nManager.isRTL ? 'row-reverse' : 'row',
2020-10-29 05:26:39 -04:00
},
});
2020-04-27 19:10:42 -04:00
export default PleaseBackup;