import React, { Component } from 'react' import { View, TextInput, TouchableOpacity } from 'react-native' import nodejs from 'nodejs-mobile-react-native' import { AppText } from './app-text' import { hasEncryptionObservable } from '../local-storage' import styles from '../styles' import { passwordPrompt } from './labels' import { openDbConnection, requestHash, deleteDbAndOpenNew, openDb } from '../db' import App from './app' export default class PasswordPrompt extends Component { constructor() { super() this.state = {} hasEncryptionObservable.once((hasEncryption) => { if (hasEncryption) { this.setState({showPasswordPrompt: true}) } else { openDbConnection('something-wrong') this.setState({showApp: true}) } }) nodejs.start('main.js') nodejs.channel.addListener( 'message', this.passHashToDb, this ) } passHashToDb = async msg => { msg = JSON.parse(msg) if (msg.type != 'sha512') return try { await openDb({hash: msg.message, persistConnection: true }) this.setState({ showApp: true }) } catch (err) { this.setState({ wrongPassword: true }) } } componentWillUnmount() { nodejs.channel.removeListener('message', this.passHashToDb) } render() { return ( {this.state.showApp ? : {this.state.showPasswordPrompt && this.setState({password: val})} style={{ borderWidth: 1, borderColor: 'grey', margin: 5 }} /> { requestHash(this.state.password) }} > { passwordPrompt.title } {this.state.wrongPassword && Wrong PAssword!} { await deleteDbAndOpenNew() this.setState({showApp: true}) }} > {'Delete old db and make unencrypted new'} } } ) } }