mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-20 10:12:01 +01:00
125 lines
3.6 KiB
JavaScript
125 lines
3.6 KiB
JavaScript
import React, { Component } from 'react';
|
|
import { Dimensions, ScrollView, ActivityIndicator, View } from 'react-native';
|
|
import QRCode from 'react-native-qrcode-svg';
|
|
import { BlueSpacing20, SafeBlueArea, BlueNavigationStyle, BlueText, BlueCopyTextToClipboard, BlueCard } from '../../BlueComponents';
|
|
import PropTypes from 'prop-types';
|
|
import Privacy from '../../Privacy';
|
|
import Biometric from '../../class/biometrics';
|
|
import { LegacyWallet, LightningCustodianWallet, SegwitBech32Wallet, SegwitP2SHWallet } from '../../class';
|
|
/** @type {AppStorage} */
|
|
let BlueApp = require('../../BlueApp');
|
|
let loc = require('../../loc');
|
|
const { height, width } = Dimensions.get('window');
|
|
|
|
export default class WalletExport extends Component {
|
|
static navigationOptions = ({ navigation }) => ({
|
|
...BlueNavigationStyle(navigation, true),
|
|
title: loc.wallets.export.title,
|
|
headerLeft: null,
|
|
});
|
|
|
|
constructor(props) {
|
|
super(props);
|
|
let wallet = props.navigation.state.params.wallet;
|
|
this.state = {
|
|
isLoading: true,
|
|
qrCodeHeight: height > width ? width - 40 : width / 2,
|
|
wallet,
|
|
};
|
|
}
|
|
|
|
async componentDidMount() {
|
|
Privacy.enableBlur();
|
|
const isBiometricsEnabled = await Biometric.isBiometricUseCapableAndEnabled();
|
|
|
|
if (isBiometricsEnabled) {
|
|
if (!(await Biometric.unlockWithBiometrics())) {
|
|
return this.props.navigation.goBack();
|
|
}
|
|
}
|
|
|
|
this.setState(
|
|
{
|
|
isLoading: false,
|
|
},
|
|
() => {
|
|
this.state.wallet.setUserHasSavedExport(true);
|
|
BlueApp.saveToDisk();
|
|
},
|
|
);
|
|
}
|
|
|
|
async componentWillUnmount() {
|
|
Privacy.disableBlur();
|
|
}
|
|
|
|
onLayout = () => {
|
|
const { height } = Dimensions.get('window');
|
|
this.setState({ qrCodeHeight: height > width ? width - 40 : width / 2 });
|
|
};
|
|
|
|
render() {
|
|
if (this.state.isLoading) {
|
|
return (
|
|
<View style={{ flex: 1, paddingTop: 20 }} onLayout={this.onLayout}>
|
|
<ActivityIndicator />
|
|
</View>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<SafeBlueArea style={{ flex: 1, paddingTop: 20 }}>
|
|
<ScrollView
|
|
centerContent
|
|
contentContainerStyle={{ alignItems: 'center', justifyContent: 'center', flexGrow: 1 }}
|
|
onLayout={this.onLayout}
|
|
>
|
|
<View>
|
|
<BlueText>{this.state.wallet.typeReadable}</BlueText>
|
|
</View>
|
|
|
|
{(() => {
|
|
if ([LegacyWallet.type, SegwitBech32Wallet.type, SegwitP2SHWallet.type].includes(this.state.wallet.type)) {
|
|
return (
|
|
<BlueCard>
|
|
<BlueText>{this.state.wallet.getAddress()}</BlueText>
|
|
</BlueCard>
|
|
);
|
|
}
|
|
})()}
|
|
<BlueSpacing20 />
|
|
|
|
<QRCode
|
|
value={this.state.wallet.getSecret()}
|
|
logo={require('../../img/qr-code.png')}
|
|
size={this.state.qrCodeHeight}
|
|
logoSize={70}
|
|
color={BlueApp.settings.foregroundColor}
|
|
logoBackgroundColor={BlueApp.settings.brandingColor}
|
|
ecl={'H'}
|
|
/>
|
|
|
|
<BlueSpacing20 />
|
|
{this.state.wallet.type === LightningCustodianWallet.type ? (
|
|
<BlueCopyTextToClipboard text={this.state.wallet.getSecret()} />
|
|
) : (
|
|
<BlueText style={{ alignItems: 'center', paddingHorizontal: 8 }}>{this.state.wallet.getSecret()}</BlueText>
|
|
)}
|
|
</ScrollView>
|
|
</SafeBlueArea>
|
|
);
|
|
}
|
|
}
|
|
|
|
WalletExport.propTypes = {
|
|
navigation: PropTypes.shape({
|
|
state: PropTypes.shape({
|
|
params: PropTypes.shape({
|
|
wallet: PropTypes.object.isRequired,
|
|
}),
|
|
}),
|
|
navigate: PropTypes.func,
|
|
goBack: PropTypes.func,
|
|
}),
|
|
};
|