import React from 'react'; import { ScrollView, StyleSheet, Text, View } from 'react-native'; import Clipboard from '@react-native-clipboard/clipboard'; import { connect } from 'react-redux'; import { encryptionSetBanner } from '../actions/encryption'; import Button from '../containers/Button'; import * as HeaderButton from '../containers/HeaderButton'; import SafeAreaView from '../containers/SafeAreaView'; import StatusBar from '../containers/StatusBar'; import { LISTENER } from '../containers/Toast'; import { IApplicationState, IBaseScreen } from '../definitions'; import I18n from '../i18n'; import { E2E_RANDOM_PASSWORD_KEY, themes } from '../lib/constants'; import UserPreferences from '../lib/methods/userPreferences'; import { E2ESaveYourPasswordStackParamList } from '../stacks/types'; import { withTheme } from '../theme'; import EventEmitter from '../utils/events'; import { events, logEvent } from '../utils/log'; import scrollPersistTaps from '../utils/scrollPersistTaps'; import sharedStyles from './Styles'; const styles = StyleSheet.create({ container: { flex: 1, padding: 44, paddingTop: 32 }, content: { marginVertical: 68, alignItems: 'center' }, warning: { fontSize: 14, ...sharedStyles.textMedium }, passwordText: { marginBottom: 8, ...sharedStyles.textAlignCenter }, password: { fontSize: 24, marginBottom: 24, ...sharedStyles.textBold }, copyButton: { width: 72, height: 32 }, info: { fontSize: 14, marginBottom: 64, ...sharedStyles.textRegular } }); interface IE2ESaveYourPasswordViewState { password: string; } interface IE2ESaveYourPasswordViewProps extends IBaseScreen { server: string; } class E2ESaveYourPasswordView extends React.Component { private mounted: boolean; static navigationOptions = ({ navigation }: Pick) => ({ headerLeft: () => , title: I18n.t('Save_Your_E2E_Password') }); constructor(props: IE2ESaveYourPasswordViewProps) { super(props); this.mounted = false; this.state = { password: '' }; this.init(); } componentDidMount() { this.mounted = true; } init = () => { const { server } = this.props; try { // Set stored password on local state const password = UserPreferences.getString(`${server}-${E2E_RANDOM_PASSWORD_KEY}`); if (this.mounted) { this.setState({ password: password! }); } else { // @ts-ignore this.state.password = password; } } catch { // Do nothing } }; onSaved = () => { logEvent(events.E2E_SAVE_PW_SAVED); const { navigation, server, dispatch } = this.props; // Remove stored password UserPreferences.removeItem(`${server}-${E2E_RANDOM_PASSWORD_KEY}`); // Hide encryption banner dispatch(encryptionSetBanner()); navigation.pop(); }; onCopy = () => { logEvent(events.E2E_SAVE_PW_COPY); const { password } = this.state; Clipboard.setString(password); EventEmitter.emit(LISTENER, { message: I18n.t('Copied_to_clipboard') }); }; onHowItWorks = () => { logEvent(events.E2E_SAVE_PW_HOW_IT_WORKS); const { navigation } = this.props; navigation.navigate('E2EHowItWorksView'); }; render() { const { password } = this.state; const { theme } = this.props; return ( {I18n.t('Save_Your_Encryption_Password_warning')} {I18n.t('Your_password_is')} {password}