Refactors App wrapper component

This commit is contained in:
Sofiya Tepikin
2019-06-18 00:10:54 +02:00
parent fa20e84bfe
commit e4209e28b7
2 changed files with 91 additions and 65 deletions
+64 -22
View File
@@ -1,44 +1,86 @@
import React, { Component } from 'react' import React, { Component } from 'react'
import { View } from 'react-native'
import nodejs from 'nodejs-mobile-react-native' import nodejs from 'nodejs-mobile-react-native'
import { getLicenseFlag, saveEncryptionFlag } from '../local-storage'
import { openDb } from '../db'
import App from './app' import App from './app'
import PasswordPrompt from './password-prompt' import PasswordPrompt from './password-prompt'
import License from './license' import License from './license'
import { getLicenseFlag } from '../local-storage' import AppLoadingView from './app-loading'
export default class AppWrapper extends Component { export default class AppWrapper extends Component {
constructor() { constructor() {
super() super()
this.state = { this.state = {
retrievingLicenseSetting: true isCheckingLicenseAgreement: true,
shouldShowLicenseAgreement: false,
shouldShowPasswordPrompt: false,
shouldShowApp: false,
} }
nodejs.start('main.js') nodejs.start('main.js')
this.checkLicenseAgreement() this.checkLicenseAgreement()
this.checkDbPasswordSet()
} }
async checkLicenseAgreement() { async checkLicenseAgreement() {
const agreed = await getLicenseFlag() const isLicenseFlagSet = await getLicenseFlag()
this.setState({retrievingLicenseSetting: false}) if (!isLicenseFlagSet) {
if (!agreed) this.setState({showLicense: true}) this.enableShowLicenseAgreement()
} else {
this.setState({ isCheckingLicenseAgreement: false })
}
}
async checkDbPasswordSet() {
const canConnectToDb = await openDb()
if (canConnectToDb) {
this.enableShowApp()
await saveEncryptionFlag(false)
return false
}
this.setState({ shouldShowPasswordPrompt: true })
await saveEncryptionFlag(true)
}
enableShowLicenseAgreement = () => {
this.setState({
shouldShowLicenseAgreement: true,
isCheckingLicenseAgreement: false
})
}
disableShowLicenseAgreement = () => {
this.setState({ shouldShowLicenseAgreement: false })
}
enableShowApp = () => {
this.setState({
shouldShowApp: true,
shouldShowPasswordPrompt: false
})
} }
render() { render() {
const whiteScreen = <View style={{ flex: 1 }}></View> const {
const licenseScreen = <License setLicense={() => { isCheckingLicenseAgreement,
this.setState({showLicense: false}) shouldShowLicenseAgreement,
}}/> shouldShowPasswordPrompt,
const passwordPrompt = <PasswordPrompt showApp={() => { shouldShowApp,
this.setState({showApp: true}) } = this.state
}}/>
if (this.state.retrievingLicenseSetting) { if (isCheckingLicenseAgreement) {
return whiteScreen return <AppLoadingView />
} else if (this.state.showLicense) { }
return licenseScreen
} else if (!this.state.showApp) { if (shouldShowLicenseAgreement) {
return passwordPrompt return <License setLicense={this.disableShowLicenseAgreement}/>
} else { }
return <App/>
} if (shouldShowPasswordPrompt) {
return <PasswordPrompt enableShowApp={this.enableShowApp} />
}
return shouldShowApp && <App />
} }
} }
+2 -18
View File
@@ -20,19 +20,6 @@ export default class PasswordPrompt extends Component {
this.passHashToDb, this.passHashToDb,
this this
) )
this.tryToOpenDb()
}
async tryToOpenDb() {
const connected = await openDb()
if (!connected) {
this.setState({ showPasswordPrompt: true })
await saveEncryptionFlag(true)
return
}
await saveEncryptionFlag(false)
this.props.showApp()
} }
passHashToDb = async hash => { passHashToDb = async hash => {
@@ -48,7 +35,7 @@ export default class PasswordPrompt extends Component {
) )
return return
} }
this.props.showApp() this.props.enableShowApp()
} }
confirmDeletion = async () => { confirmDeletion = async () => {
@@ -72,7 +59,7 @@ export default class PasswordPrompt extends Component {
onPress: async () => { onPress: async () => {
await deleteDbAndOpenNew() await deleteDbAndOpenNew()
await saveEncryptionFlag(false) await saveEncryptionFlag(false)
this.props.showApp() this.props.enableShowApp()
} }
}] }]
) )
@@ -89,9 +76,7 @@ export default class PasswordPrompt extends Component {
return ( return (
<View flex={1}> <View flex={1}>
<Header title={menuTitles.PasswordPrompt.toLowerCase()} /> <Header title={menuTitles.PasswordPrompt.toLowerCase()} />
{this.state.showPasswordPrompt &&
<View style={styles.passwordPromptPage}> <View style={styles.passwordPromptPage}>
<TextInput <TextInput
onChangeText={val => this.setState({ password: val })} onChangeText={val => this.setState({ password: val })}
style={styles.passwordPromptField} style={styles.passwordPromptField}
@@ -117,7 +102,6 @@ export default class PasswordPrompt extends Component {
</AppText> </AppText>
</TouchableOpacity> </TouchableOpacity>
</View> </View>
}
</View> </View>
) )
} }