97 lines
2.5 KiB
JavaScript
97 lines
2.5 KiB
JavaScript
import React, { Component } from 'react'
|
|
import RNFS from 'react-native-fs'
|
|
import { Alert, ToastAndroid } from 'react-native'
|
|
|
|
import { clearDb, isDbEmpty } from '../../../db'
|
|
import { hasEncryptionObservable } from '../../../local-storage'
|
|
import SettingsButton from '../settings-button'
|
|
import ConfirmWithPassword from '../common/confirm-with-password'
|
|
import alertError from '../alert-error'
|
|
|
|
import settings from '../../../i18n/en/settings'
|
|
import { shared as sharedLabels } from '../../../i18n/en/labels'
|
|
import { EXPORT_FILE_NAME } from './constants'
|
|
|
|
const exportedFilePath = `${RNFS.DocumentDirectoryPath}/${EXPORT_FILE_NAME}`
|
|
|
|
export default class DeleteData extends Component {
|
|
constructor() {
|
|
super()
|
|
this.state = {
|
|
isPasswordSet: hasEncryptionObservable.value,
|
|
isConfirmingWithPassword: false
|
|
}
|
|
}
|
|
|
|
onAlertConfirmation = () => {
|
|
if (this.state.isPasswordSet) {
|
|
this.setState({ isConfirmingWithPassword: true })
|
|
} else {
|
|
this.deleteAppData()
|
|
}
|
|
}
|
|
|
|
alertBeforeDeletion = async () => {
|
|
const { question, message, confirmation, errors } = settings.deleteSegment
|
|
if (isDbEmpty() && !await RNFS.exists(exportedFilePath)) {
|
|
alertError(errors.noData)
|
|
} else {
|
|
Alert.alert(
|
|
question,
|
|
message,
|
|
[{
|
|
text: confirmation,
|
|
onPress: this.onAlertConfirmation
|
|
}, {
|
|
text: sharedLabels.cancel,
|
|
style: 'cancel',
|
|
onPress: this.cancelConfirmationWithPassword
|
|
}]
|
|
)
|
|
}
|
|
}
|
|
|
|
deleteExportedFile = async () => {
|
|
if (await RNFS.exists(exportedFilePath)) {
|
|
await RNFS.unlink(exportedFilePath)
|
|
}
|
|
}
|
|
|
|
deleteAppData = async () => {
|
|
const { errors, success } = settings.deleteSegment
|
|
|
|
try {
|
|
if (!isDbEmpty()) {
|
|
clearDb()
|
|
}
|
|
await this.deleteExportedFile()
|
|
ToastAndroid.show(success.message, ToastAndroid.LONG)
|
|
} catch (err) {
|
|
alertError(errors.couldNotDeleteFile)
|
|
}
|
|
this.cancelConfirmationWithPassword()
|
|
}
|
|
|
|
cancelConfirmationWithPassword = () => {
|
|
this.setState({ isConfirmingWithPassword: false })
|
|
}
|
|
|
|
render() {
|
|
const { isConfirmingWithPassword } = this.state
|
|
|
|
if (isConfirmingWithPassword) {
|
|
return (
|
|
<ConfirmWithPassword
|
|
onSuccess={this.deleteAppData}
|
|
onCancel={this.cancelConfirmationWithPassword}
|
|
/>
|
|
)
|
|
}
|
|
|
|
return (
|
|
<SettingsButton onPress={this.alertBeforeDeletion}>
|
|
{settings.deleteSegment.title}
|
|
</SettingsButton>
|
|
)
|
|
}
|
|
} |