mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-20 10:12:01 +01:00
275 lines
8.5 KiB
JavaScript
275 lines
8.5 KiB
JavaScript
/* global alert */
|
|
import React, { useEffect, useState } from 'react';
|
|
import { Platform, View, Keyboard, StatusBar, StyleSheet } from 'react-native';
|
|
import {
|
|
BlueFormMultiInput,
|
|
BlueButtonLink,
|
|
BlueFormLabel,
|
|
BlueDoneAndDismissKeyboardInputAccessory,
|
|
BlueButton,
|
|
SafeBlueArea,
|
|
BlueSpacing20,
|
|
BlueNavigationStyle,
|
|
} from '../../BlueComponents';
|
|
import ReactNativeHapticFeedback from 'react-native-haptic-feedback';
|
|
import Privacy from '../../Privacy';
|
|
import { useNavigation, useRoute, useTheme } from '@react-navigation/native';
|
|
import WalletImport from '../../class/wallet-import';
|
|
import Clipboard from '@react-native-community/clipboard';
|
|
import ActionSheet from '../ActionSheet';
|
|
import ImagePicker from 'react-native-image-picker';
|
|
import loc from '../../loc';
|
|
import { getSystemName } from 'react-native-device-info';
|
|
import RNFS from 'react-native-fs';
|
|
import DocumentPicker from 'react-native-document-picker';
|
|
import { presentCameraNotAuthorizedAlert } from '../../class/camera';
|
|
const LocalQRCode = require('@remobile/react-native-qrcode-local-image');
|
|
const isDesktop = getSystemName() === 'Mac OS X';
|
|
|
|
const WalletsImport = () => {
|
|
const [isToolbarVisibleForAndroid, setIsToolbarVisibleForAndroid] = useState(false);
|
|
const route = useRoute();
|
|
const label = (route.params && route.params.label) || '';
|
|
const [importText, setImportText] = useState(label);
|
|
const navigation = useNavigation();
|
|
const { colors } = useTheme();
|
|
const styles = StyleSheet.create({
|
|
root: {
|
|
flex: 1,
|
|
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();
|
|
};
|
|
}, []);
|
|
|
|
const importButtonPressed = () => {
|
|
if (importText.trim().length === 0) {
|
|
return;
|
|
}
|
|
importMnemonic(importText);
|
|
};
|
|
|
|
/**
|
|
*
|
|
* @param importText
|
|
* @param additionalProperties key-values passed from outside. Used only to set up `masterFingerprint` property for watch-only wallet
|
|
*/
|
|
const importMnemonic = async (importText, additionalProperties) => {
|
|
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, additionalProperties);
|
|
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
|
|
* @param additionalProperties key-values passed from outside. Used only to set up `masterFingerprint` property for watch-only wallet
|
|
*/
|
|
const onBarScanned = (value, additionalProperties) => {
|
|
if (value && value.data) value = value.data + ''; // no objects here, only strings
|
|
setImportText(value);
|
|
setTimeout(() => importMnemonic(value, additionalProperties), 500);
|
|
};
|
|
|
|
const importScan = () => {
|
|
if (isDesktop) {
|
|
showActionSheet();
|
|
} else {
|
|
navigation.navigate('ScanQRCodeRoot', {
|
|
screen: 'ScanQRCode',
|
|
params: {
|
|
launchedBy: route.name,
|
|
onBarScanned: onBarScanned,
|
|
showFileImportButton: true,
|
|
},
|
|
});
|
|
}
|
|
};
|
|
|
|
const choosePhoto = () => {
|
|
ImagePicker.launchImageLibrary(
|
|
{
|
|
title: null,
|
|
mediaType: 'photo',
|
|
takePhotoButtonTitle: null,
|
|
},
|
|
response => {
|
|
if (response.uri) {
|
|
const uri = Platform.OS === 'ios' ? response.uri.toString().replace('file://', '') : response.path.toString();
|
|
LocalQRCode.decode(uri, (error, result) => {
|
|
if (!error) {
|
|
onBarScanned(result);
|
|
} else {
|
|
alert(loc.send.qr_error_no_qrcode);
|
|
}
|
|
});
|
|
}
|
|
},
|
|
);
|
|
};
|
|
|
|
const takePhoto = () => {
|
|
ImagePicker.launchCamera(
|
|
{
|
|
title: null,
|
|
mediaType: 'photo',
|
|
takePhotoButtonTitle: null,
|
|
},
|
|
response => {
|
|
if (response.uri) {
|
|
const uri = Platform.OS === 'ios' ? response.uri.toString().replace('file://', '') : response.path.toString();
|
|
LocalQRCode.decode(uri, (error, result) => {
|
|
if (!error) {
|
|
onBarScanned(result);
|
|
} else {
|
|
alert(loc.send.qr_error_no_qrcode);
|
|
}
|
|
});
|
|
} else if (response.error) {
|
|
presentCameraNotAuthorizedAlert(response.error);
|
|
}
|
|
},
|
|
);
|
|
};
|
|
|
|
const copyFromClipbard = async () => {
|
|
onBarScanned(await Clipboard.getString());
|
|
};
|
|
|
|
const handleImportFileButtonPressed = async () => {
|
|
try {
|
|
const res = await DocumentPicker.pick({
|
|
type: [DocumentPicker.types.allFiles],
|
|
});
|
|
|
|
const file = await RNFS.readFile(res.uri);
|
|
if (file) {
|
|
onBarScanned(file);
|
|
} else {
|
|
throw new Error();
|
|
}
|
|
} catch (err) {
|
|
if (!DocumentPicker.isCancel(err)) {
|
|
alert(loc.wallets.import_error);
|
|
}
|
|
}
|
|
};
|
|
|
|
const showActionSheet = async () => {
|
|
const isClipboardEmpty = (await Clipboard.getString()).replace(' ', '').length === 0;
|
|
let copyFromClipboardIndex;
|
|
if (Platform.OS === 'ios') {
|
|
const options = [loc._.cancel, 'Take Photo', loc.wallets.list_long_choose];
|
|
if (!isClipboardEmpty) {
|
|
options.push(loc.wallets.list_long_clipboard);
|
|
copyFromClipboardIndex = options.length - 1;
|
|
}
|
|
|
|
options.push(loc.wallets.import_file);
|
|
const impoortFileButtonIndex = options.length - 1;
|
|
|
|
ActionSheet.showActionSheetWithOptions({ options, cancelButtonIndex: 0 }, buttonIndex => {
|
|
if (buttonIndex === 1) {
|
|
takePhoto();
|
|
} else if (buttonIndex === 2) {
|
|
choosePhoto();
|
|
} else if (buttonIndex === copyFromClipboardIndex) {
|
|
copyFromClipbard();
|
|
} else if (impoortFileButtonIndex) {
|
|
handleImportFileButtonPressed();
|
|
}
|
|
});
|
|
}
|
|
};
|
|
|
|
return (
|
|
<SafeBlueArea forceInset={{ horizontal: 'always' }} style={styles.root}>
|
|
<StatusBar barStyle="light-content" />
|
|
<BlueSpacing20 />
|
|
<BlueFormLabel>{loc.wallets.import_explanation}</BlueFormLabel>
|
|
<BlueSpacing20 />
|
|
<BlueFormMultiInput
|
|
testID="MnemonicInput"
|
|
value={importText}
|
|
contextMenuHidden={getSystemName() !== 'Mac OS X'}
|
|
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('');
|
|
Keyboard.dismiss();
|
|
}}
|
|
onPasteTapped={text => {
|
|
setImportText(text);
|
|
Keyboard.dismiss();
|
|
}}
|
|
/>
|
|
),
|
|
android: isToolbarVisibleForAndroid && (
|
|
<BlueDoneAndDismissKeyboardInputAccessory
|
|
onClearTapped={() => {
|
|
setImportText('');
|
|
Keyboard.dismiss();
|
|
}}
|
|
onPasteTapped={text => {
|
|
setImportText(text);
|
|
Keyboard.dismiss();
|
|
}}
|
|
/>
|
|
),
|
|
})}
|
|
</SafeBlueArea>
|
|
);
|
|
};
|
|
|
|
WalletsImport.navigationOptions = () => ({
|
|
...BlueNavigationStyle(),
|
|
title: loc.wallets.import_title,
|
|
});
|
|
export default WalletsImport;
|