2018-07-22 16:49:59 +02:00
|
|
|
/* global alert */
|
2019-12-27 03:21:07 +01:00
|
|
|
import React, { useEffect, useState } from 'react';
|
2020-06-11 05:54:47 +02:00
|
|
|
import { Platform, Dimensions, View, Keyboard, StatusBar, StyleSheet } from 'react-native';
|
2018-07-22 16:49:59 +02:00
|
|
|
import {
|
|
|
|
BlueFormMultiInput,
|
|
|
|
BlueButtonLink,
|
|
|
|
BlueFormLabel,
|
2019-08-29 06:18:32 +02:00
|
|
|
BlueDoneAndDismissKeyboardInputAccessory,
|
2018-07-22 16:49:59 +02:00
|
|
|
BlueButton,
|
|
|
|
SafeBlueArea,
|
2018-10-23 00:51:30 +02:00
|
|
|
BlueSpacing20,
|
2018-12-25 21:53:24 +01:00
|
|
|
BlueNavigationStyle,
|
2018-07-22 16:49:59 +02:00
|
|
|
} from '../../BlueComponents';
|
2018-12-13 17:50:18 +01:00
|
|
|
import ReactNativeHapticFeedback from 'react-native-haptic-feedback';
|
2019-02-28 02:29:13 +01:00
|
|
|
import Privacy from '../../Privacy';
|
2020-07-15 19:32:59 +02:00
|
|
|
import { useNavigation, useRoute, useTheme } from '@react-navigation/native';
|
2020-05-24 12:27:08 +02:00
|
|
|
import WalletImport from '../../class/wallet-import';
|
2020-07-20 15:38:46 +02:00
|
|
|
import loc from '../../loc';
|
2018-07-22 16:49:59 +02:00
|
|
|
const { width } = Dimensions.get('window');
|
|
|
|
|
2019-12-27 03:21:07 +01:00
|
|
|
const WalletsImport = () => {
|
|
|
|
const [isToolbarVisibleForAndroid, setIsToolbarVisibleForAndroid] = useState(false);
|
2020-05-28 11:53:14 +02:00
|
|
|
const route = useRoute();
|
|
|
|
const label = (route.params && route.params.label) || '';
|
|
|
|
const [importText, setImportText] = useState(label);
|
2020-05-27 13:12:17 +02:00
|
|
|
const navigation = useNavigation();
|
2020-07-15 19:32:59 +02:00
|
|
|
const { colors } = useTheme();
|
|
|
|
const styles = StyleSheet.create({
|
|
|
|
root: {
|
|
|
|
flex: 1,
|
|
|
|
paddingTop: 40,
|
|
|
|
backgroundColor: colors.elevated,
|
|
|
|
},
|
|
|
|
center: {
|
|
|
|
flex: 1,
|
|
|
|
alignItems: 'center',
|
|
|
|
backgroundColor: colors.elevated,
|
|
|
|
},
|
|
|
|
});
|
2018-07-22 16:49:59 +02:00
|
|
|
|
2019-12-27 03:21:07 +01:00
|
|
|
useEffect(() => {
|
2019-02-28 02:29:13 +01:00
|
|
|
Privacy.enableBlur();
|
2020-04-27 09:11:33 +02:00
|
|
|
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();
|
|
|
|
};
|
|
|
|
}, []);
|
2019-02-28 02:29:13 +01:00
|
|
|
|
2019-12-27 03:21:07 +01:00
|
|
|
const importButtonPressed = () => {
|
|
|
|
if (importText.trim().length === 0) {
|
|
|
|
return;
|
2018-12-28 00:33:39 +01:00
|
|
|
}
|
2019-12-27 03:21:07 +01:00
|
|
|
importMnemonic(importText);
|
|
|
|
};
|
2018-07-22 16:49:59 +02:00
|
|
|
|
2020-02-25 15:42:11 +01:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param importText
|
|
|
|
* @param additionalProperties key-values passed from outside. Used only to set up `masterFingerprint` property for watch-only wallet
|
|
|
|
*/
|
2020-01-01 04:31:04 +01:00
|
|
|
const importMnemonic = (importText, additionalProperties) => {
|
2018-07-22 16:49:59 +02:00
|
|
|
try {
|
2020-01-01 04:31:04 +01:00
|
|
|
WalletImport.processImportText(importText, additionalProperties);
|
2020-05-27 13:12:17 +02:00
|
|
|
navigation.dangerouslyGetParent().pop();
|
2019-12-27 03:21:07 +01:00
|
|
|
} catch (error) {
|
2020-07-20 15:38:46 +02:00
|
|
|
alert(loc.wallets.import_error);
|
2019-12-27 03:21:07 +01:00
|
|
|
ReactNativeHapticFeedback.trigger('notificationError', { ignoreAndroidSystemSettings: false });
|
2018-07-22 16:49:59 +02:00
|
|
|
}
|
2019-12-27 03:21:07 +01:00
|
|
|
};
|
2018-07-22 16:49:59 +02:00
|
|
|
|
2020-02-25 15:42:11 +01:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param value
|
|
|
|
* @param additionalProperties key-values passed from outside. Used only to set up `masterFingerprint` property for watch-only wallet
|
|
|
|
*/
|
2020-01-01 04:31:04 +01:00
|
|
|
const onBarScanned = (value, additionalProperties) => {
|
2019-12-27 03:21:07 +01:00
|
|
|
setImportText(value);
|
2020-01-01 04:31:04 +01:00
|
|
|
importMnemonic(value, additionalProperties);
|
2019-12-27 03:21:07 +01:00
|
|
|
};
|
2019-02-02 00:00:44 +01:00
|
|
|
|
2020-06-01 00:27:26 +02:00
|
|
|
const importScan = () => {
|
|
|
|
navigation.navigate('ScanQRCodeRoot', {
|
|
|
|
screen: 'ScanQRCode',
|
|
|
|
params: {
|
|
|
|
launchedBy: route.name,
|
|
|
|
onBarScanned: onBarScanned,
|
2020-06-01 00:36:00 +02:00
|
|
|
showFileImportButton: true,
|
2020-06-01 00:27:26 +02:00
|
|
|
},
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2019-12-27 03:21:07 +01:00
|
|
|
return (
|
2020-05-24 11:17:26 +02:00
|
|
|
<SafeBlueArea forceInset={{ horizontal: 'always' }} style={styles.root}>
|
2020-07-15 19:32:59 +02:00
|
|
|
<StatusBar barStyle="default" />
|
|
|
|
<BlueSpacing20 />
|
2020-07-20 15:38:46 +02:00
|
|
|
<BlueFormLabel>{loc.wallets.import_explanation}</BlueFormLabel>
|
2020-04-27 09:11:33 +02:00
|
|
|
<BlueSpacing20 />
|
|
|
|
<BlueFormMultiInput
|
2020-04-27 10:23:56 +02:00
|
|
|
testID="MnemonicInput"
|
2020-04-27 09:11:33 +02:00
|
|
|
value={importText}
|
|
|
|
contextMenuHidden
|
|
|
|
onChangeText={setImportText}
|
|
|
|
inputAccessoryViewID={BlueDoneAndDismissKeyboardInputAccessory.InputAccessoryViewID}
|
|
|
|
/>
|
|
|
|
|
|
|
|
<BlueSpacing20 />
|
2020-05-24 11:17:26 +02:00
|
|
|
<View style={styles.center}>
|
2020-04-27 09:11:33 +02:00
|
|
|
<BlueButton
|
2020-04-27 10:23:56 +02:00
|
|
|
testID="DoImport"
|
2020-04-27 09:11:33 +02:00
|
|
|
disabled={importText.trim().length === 0}
|
2020-07-20 15:38:46 +02:00
|
|
|
title={loc.wallets.import_do_import}
|
2020-04-27 09:11:33 +02:00
|
|
|
buttonStyle={{
|
|
|
|
width: width / 1.5,
|
|
|
|
}}
|
|
|
|
onPress={importButtonPressed}
|
|
|
|
/>
|
2020-04-24 11:20:49 +02:00
|
|
|
<BlueSpacing20 />
|
2020-07-20 15:38:46 +02:00
|
|
|
<BlueButtonLink title={loc.wallets.import_scan_qr} onPress={importScan} />
|
2020-04-27 09:11:33 +02:00
|
|
|
</View>
|
|
|
|
{Platform.select({
|
|
|
|
ios: (
|
|
|
|
<BlueDoneAndDismissKeyboardInputAccessory
|
|
|
|
onClearTapped={() => {
|
|
|
|
setImportText('');
|
|
|
|
Keyboard.dismiss();
|
|
|
|
}}
|
|
|
|
onPasteTapped={text => {
|
|
|
|
setImportText(text);
|
|
|
|
Keyboard.dismiss();
|
2020-04-24 11:20:49 +02:00
|
|
|
}}
|
|
|
|
/>
|
2020-04-27 09:11:33 +02:00
|
|
|
),
|
|
|
|
android: isToolbarVisibleForAndroid && (
|
|
|
|
<BlueDoneAndDismissKeyboardInputAccessory
|
|
|
|
onClearTapped={() => {
|
|
|
|
setImportText('');
|
|
|
|
Keyboard.dismiss();
|
|
|
|
}}
|
|
|
|
onPasteTapped={text => {
|
|
|
|
setImportText(text);
|
|
|
|
Keyboard.dismiss();
|
2020-04-24 11:20:49 +02:00
|
|
|
}}
|
2019-02-02 00:00:44 +01:00
|
|
|
/>
|
2020-04-27 09:11:33 +02:00
|
|
|
),
|
|
|
|
})}
|
2019-12-27 03:21:07 +01:00
|
|
|
</SafeBlueArea>
|
|
|
|
);
|
|
|
|
};
|
2018-07-22 16:49:59 +02:00
|
|
|
|
2020-07-15 19:32:59 +02:00
|
|
|
WalletsImport.navigationOptions = ({ navigation, route }) => ({
|
2019-12-27 03:21:07 +01:00
|
|
|
...BlueNavigationStyle(),
|
2020-07-20 15:38:46 +02:00
|
|
|
title: loc.wallets.import_title,
|
2020-07-15 19:32:59 +02:00
|
|
|
});
|
2019-12-27 03:21:07 +01:00
|
|
|
export default WalletsImport;
|