mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 18:00:17 +01:00
172 lines
5.3 KiB
JavaScript
172 lines
5.3 KiB
JavaScript
/* global alert */
|
|
import React, { useEffect, useState } from 'react';
|
|
import { Platform, View, Keyboard, StatusBar, StyleSheet } from 'react-native';
|
|
import ReactNativeHapticFeedback from 'react-native-haptic-feedback';
|
|
import { useNavigation, useRoute, useTheme } from '@react-navigation/native';
|
|
import {
|
|
BlueFormMultiInput,
|
|
BlueButtonLink,
|
|
BlueFormLabel,
|
|
BlueDoneAndDismissKeyboardInputAccessory,
|
|
BlueButton,
|
|
SafeBlueArea,
|
|
BlueSpacing20,
|
|
} from '../../BlueComponents';
|
|
import navigationStyle from '../../components/navigationStyle';
|
|
import Privacy from '../../blue_modules/Privacy';
|
|
import WalletImport from '../../class/wallet-import';
|
|
import loc from '../../loc';
|
|
import { isDesktop, isMacCatalina } from '../../blue_modules/environment';
|
|
const fs = require('../../blue_modules/fs');
|
|
|
|
const WalletsImport = () => {
|
|
const [isToolbarVisibleForAndroid, setIsToolbarVisibleForAndroid] = useState(false);
|
|
const route = useRoute();
|
|
const label = (route.params && route.params.label) || '';
|
|
const triggerImport = (route.params && route.params.triggerImport) || false;
|
|
const [importText, setImportText] = useState(label);
|
|
const navigation = useNavigation();
|
|
const { colors } = useTheme();
|
|
const styles = StyleSheet.create({
|
|
root: {
|
|
paddingTop: 40,
|
|
backgroundColor: colors.elevated,
|
|
},
|
|
center: {
|
|
flex: 1,
|
|
marginHorizontal: 16,
|
|
backgroundColor: colors.elevated,
|
|
},
|
|
});
|
|
|
|
useEffect(() => {
|
|
Privacy.enableBlur();
|
|
Keyboard.addListener(Platform.OS === 'ios' ? 'keyboardWillShow' : 'keyboardDidShow', () => setIsToolbarVisibleForAndroid(true));
|
|
Keyboard.addListener(Platform.OS === 'ios' ? 'keyboardWillHide' : 'keyboardDidHide', () => setIsToolbarVisibleForAndroid(false));
|
|
return () => {
|
|
Keyboard.removeListener(Platform.OS === 'ios' ? 'keyboardWillHide' : 'keyboardDidHide');
|
|
Keyboard.removeListener(Platform.OS === 'ios' ? 'keyboardWillShow' : 'keyboardDidShow');
|
|
Privacy.disableBlur();
|
|
};
|
|
}, []);
|
|
|
|
useEffect(() => {
|
|
if (triggerImport) importButtonPressed();
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
}, []);
|
|
|
|
const importButtonPressed = () => {
|
|
if (importText.trim().length === 0) {
|
|
return;
|
|
}
|
|
importMnemonic(importText);
|
|
};
|
|
|
|
/**
|
|
*
|
|
* @param importText
|
|
*/
|
|
const importMnemonic = async importText => {
|
|
if (WalletImport.isCurrentlyImportingWallet()) {
|
|
return;
|
|
}
|
|
WalletImport.addPlaceholderWallet(importText);
|
|
navigation.dangerouslyGetParent().pop();
|
|
await new Promise(resolve => setTimeout(resolve, 500)); // giving some time to animations
|
|
try {
|
|
await WalletImport.processImportText(importText);
|
|
WalletImport.removePlaceholderWallet();
|
|
} catch (error) {
|
|
WalletImport.removePlaceholderWallet();
|
|
WalletImport.addPlaceholderWallet(importText, true);
|
|
console.log(error);
|
|
alert(loc.wallets.import_error);
|
|
ReactNativeHapticFeedback.trigger('notificationError', { ignoreAndroidSystemSettings: false });
|
|
}
|
|
};
|
|
|
|
/**
|
|
*
|
|
* @param value
|
|
*/
|
|
const onBarScanned = value => {
|
|
if (value && value.data) value = value.data + ''; // no objects here, only strings
|
|
setImportText(value);
|
|
setTimeout(() => importMnemonic(value), 500);
|
|
};
|
|
|
|
const importScan = () => {
|
|
if (isMacCatalina) {
|
|
fs.showActionSheet().then(onBarScanned);
|
|
} else {
|
|
navigation.navigate('ScanQRCodeRoot', {
|
|
screen: 'ScanQRCode',
|
|
params: {
|
|
launchedBy: route.name,
|
|
onBarScanned: onBarScanned,
|
|
showFileImportButton: true,
|
|
},
|
|
});
|
|
}
|
|
};
|
|
|
|
return (
|
|
<SafeBlueArea style={styles.root}>
|
|
<StatusBar barStyle="light-content" />
|
|
<BlueSpacing20 />
|
|
<BlueFormLabel>{loc.wallets.import_explanation}</BlueFormLabel>
|
|
<BlueSpacing20 />
|
|
<BlueFormMultiInput
|
|
testID="MnemonicInput"
|
|
value={importText}
|
|
contextMenuHidden={!isDesktop}
|
|
onChangeText={setImportText}
|
|
inputAccessoryViewID={BlueDoneAndDismissKeyboardInputAccessory.InputAccessoryViewID}
|
|
/>
|
|
|
|
<BlueSpacing20 />
|
|
<View style={styles.center}>
|
|
<>
|
|
<BlueButton
|
|
testID="DoImport"
|
|
disabled={importText.trim().length === 0}
|
|
title={loc.wallets.import_do_import}
|
|
onPress={importButtonPressed}
|
|
/>
|
|
<BlueSpacing20 />
|
|
<BlueButtonLink title={loc.wallets.import_scan_qr} onPress={importScan} testID="ScanImport" />
|
|
</>
|
|
</View>
|
|
{Platform.select({
|
|
ios: (
|
|
<BlueDoneAndDismissKeyboardInputAccessory
|
|
onClearTapped={() => {
|
|
setImportText('');
|
|
}}
|
|
onPasteTapped={text => {
|
|
setImportText(text);
|
|
Keyboard.dismiss();
|
|
}}
|
|
/>
|
|
),
|
|
android: isToolbarVisibleForAndroid && (
|
|
<BlueDoneAndDismissKeyboardInputAccessory
|
|
onClearTapped={() => {
|
|
setImportText('');
|
|
Keyboard.dismiss();
|
|
}}
|
|
onPasteTapped={text => {
|
|
setImportText(text);
|
|
Keyboard.dismiss();
|
|
}}
|
|
/>
|
|
),
|
|
})}
|
|
</SafeBlueArea>
|
|
);
|
|
};
|
|
|
|
WalletsImport.navigationOptions = navigationStyle({}, opts => ({ ...opts, title: loc.wallets.import_title }));
|
|
|
|
export default WalletsImport;
|