BlueWallet/UnlockWith.js

170 lines
5.1 KiB
JavaScript
Raw Normal View History

import React, { Component } from 'react';
2020-07-21 00:14:02 +02:00
import { View, Image, TouchableOpacity, StyleSheet, Appearance, StatusBar, ActivityIndicator } from 'react-native';
import { Icon } from 'react-native-elements';
import Biometric from './class/biometrics';
2020-05-27 13:12:17 +02:00
import { SafeAreaView } from 'react-native-safe-area-context';
import * as NavigationService from './NavigationService';
import { StackActions } from '@react-navigation/native';
2020-07-21 00:14:02 +02:00
import PropTypes from 'prop-types';
import { BlueStorageContext } from './blue_modules/storage-context';
/** @type {AppStorage} */
const styles = StyleSheet.create({
root: {
flex: 1,
},
container: {
flex: 2,
justifyContent: 'space-between',
alignItems: 'center',
},
qrCode: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
},
qrCodeImage: {
width: 120,
height: 120,
},
biometric: {
flex: 0.2,
justifyContent: 'flex-end',
marginBottom: 58,
},
biometricRow: {
justifyContent: 'center',
flexDirection: 'row',
},
icon: {
width: 64,
height: 64,
},
encrypted: {
width: 0.5,
height: 20,
},
});
export default class UnlockWith extends Component {
2020-07-15 19:32:59 +02:00
state = { biometricType: false, isStorageEncrypted: false, isAuthenticating: false, appearance: Appearance.getColorScheme() };
static contextType = BlueStorageContext;
async componentDidMount() {
2020-07-15 19:32:59 +02:00
Appearance.addChangeListener(this.appearanceChanged);
let biometricType = false;
2019-10-06 13:40:21 +02:00
if (await Biometric.isBiometricUseCapableAndEnabled()) {
biometricType = await Biometric.biometricType();
}
const storageIsEncrypted = await this.context.isStorageEncrypted();
this.setState({ biometricType, isStorageEncrypted: storageIsEncrypted }, async () => {
2020-07-21 00:14:02 +02:00
if (this.props.route.params.unlockOnComponentMount) {
if (!biometricType || storageIsEncrypted) {
2020-07-21 00:14:02 +02:00
this.unlockWithKey();
} else if (typeof biometricType === 'string') this.unlockWithBiometrics();
}
});
}
2020-07-15 19:32:59 +02:00
componentWillUnmount() {
Appearance.removeChangeListener();
}
appearanceChanged = () => {
const appearance = Appearance.getColorScheme();
if (appearance) {
this.setState({ appearance });
}
};
successfullyAuthenticated = () => {
this.context.setWalletsInitialized(true);
NavigationService.dispatch(StackActions.replace('DrawerRoot'));
};
unlockWithBiometrics = async () => {
if (await this.context.isStorageEncrypted()) {
this.unlockWithKey();
}
this.setState({ isAuthenticating: true }, async () => {
if (await Biometric.unlockWithBiometrics()) {
this.setState({ isAuthenticating: false });
await this.context.startAndDecrypt();
return this.successfullyAuthenticated();
}
this.setState({ isAuthenticating: false });
});
};
2019-10-06 13:40:21 +02:00
unlockWithKey = () => {
this.setState({ isAuthenticating: true }, async () => {
if (await this.context.startAndDecrypt()) {
this.successfullyAuthenticated();
} else {
this.setState({ isAuthenticating: false });
}
2019-10-06 13:40:21 +02:00
});
};
2020-07-21 00:14:02 +02:00
renderUnlockOptions = () => {
if (this.state.isAuthenticating) {
return <ActivityIndicator />;
} else {
const color = this.state.appearance === 'dark' ? '#FFFFFF' : '#000000';
if (
(this.state.biometricType === Biometric.TouchID || this.state.biometricType === Biometric.Biometrics) &&
!this.state.isStorageEncrypted
) {
return (
<TouchableOpacity disabled={this.state.isAuthenticating} onPress={this.unlockWithBiometrics}>
<Icon name="fingerprint" size={64} type="font-awesome5" color={color} />
</TouchableOpacity>
);
} else if (this.state.biometricType === Biometric.FaceID && !this.state.isStorageEncrypted) {
return (
<TouchableOpacity disabled={this.state.isAuthenticating} onPress={this.unlockWithBiometrics}>
<Image
source={this.state.appearance === 'dark' ? require('./img/faceid-default.png') : require('./img/faceid-dark.png')}
style={styles.icon}
/>
</TouchableOpacity>
);
} else if (this.state.isStorageEncrypted) {
return (
<TouchableOpacity disabled={this.state.isAuthenticating} onPress={this.unlockWithKey}>
<Icon name="lock" size={64} type="font-awesome5" color={color} />
</TouchableOpacity>
);
}
}
};
render() {
if (!this.state.biometricType && !this.state.isStorageEncrypted) {
return <View />;
}
2020-06-25 03:57:30 +02:00
return (
<SafeAreaView style={styles.root}>
2020-07-15 19:32:59 +02:00
<StatusBar barStyle="default" />
<View style={styles.container}>
<View style={styles.qrCode}>
<Image source={require('./img/qr-code.png')} style={styles.qrCodeImage} />
</View>
<View style={styles.biometric}>
2020-07-21 00:14:02 +02:00
<View style={styles.biometricRow}>{this.renderUnlockOptions()}</View>
</View>
</View>
</SafeAreaView>
);
}
}
2020-07-21 00:14:02 +02:00
UnlockWith.propTypes = {
route: PropTypes.shape({
params: PropTypes.shape({
unlockOnComponentMount: PropTypes.bool,
}),
}),
};