enrecipes/app/components/Settings.vue

355 lines
11 KiB
Vue
Raw Normal View History

2020-09-15 11:10:16 +00:00
<template>
2020-10-22 18:36:50 +00:00
<Page @loaded="initializePage">
2020-10-14 19:32:32 +00:00
<ActionBar :flat="viewIsScrolled ? false : true">
2020-11-02 11:36:53 +00:00
<GridLayout rows="*" columns="auto, *">
2020-10-14 19:32:32 +00:00
<Label
2020-11-02 11:36:53 +00:00
class="bx"
2020-10-14 19:32:32 +00:00
:text="icon.menu"
2020-11-02 11:36:53 +00:00
automationText="Back"
2020-10-14 19:32:32 +00:00
@tap="showDrawer"
col="0"
/>
2020-10-21 17:54:45 +00:00
<Label class="title orkm" text="Settings" col="1" />
2020-10-14 19:32:32 +00:00
</GridLayout>
</ActionBar>
2020-11-02 11:36:53 +00:00
<ScrollView scrollBarIndicatorVisible="false" @scroll="onScroll">
2020-10-14 19:32:32 +00:00
<StackLayout class="main-container">
<Label text="Interface" class="group-header" />
<StackLayout
orientation="horizontal"
class="option"
@tap="selectThemes"
>
<Label verticalAlignment="center" class="bx" :text="icon.theme" />
<StackLayout>
<Label text="Theme" class="option-title" />
<Label :text="appTheme" class="option-info" textWrap="true" />
2020-10-14 19:32:32 +00:00
</StackLayout>
</StackLayout>
<StackLayout class="hr m-10"></StackLayout>
<Label text="Backup/Restore" class="group-header" />
<StackLayout orientation="horizontal" class="option" @tap="backupCheck">
2020-11-02 11:36:53 +00:00
<Label class="bx" :text="icon.save" />
<Label text="Backup data" />
2020-10-14 19:32:32 +00:00
</StackLayout>
<StackLayout
orientation="horizontal"
class="option"
@tap="restoreCheck"
>
2020-10-14 19:32:32 +00:00
<Label class="bx" :text="icon.restore" />
2020-11-02 11:36:53 +00:00
<Label text="Restore data" />
2020-10-14 19:32:32 +00:00
</StackLayout>
2020-09-15 11:10:16 +00:00
</StackLayout>
2020-10-14 19:32:32 +00:00
</ScrollView>
</Page>
2020-09-15 11:10:16 +00:00
</template>
<script>
import {
ApplicationSettings,
path,
getFileAccess,
knownFolders,
Application,
File,
Folder,
} from "@nativescript/core"
import * as Permissions from "@nativescript-community/perms"
import { Zip } from "@nativescript/zip"
2020-10-26 20:49:54 +00:00
import * as Toast from "nativescript-toast"
import * as Filepicker from "nativescript-plugin-filepicker"
2020-10-14 19:32:32 +00:00
import Theme from "@nativescript/theme"
2020-10-21 17:54:45 +00:00
import ActionDialog from "./modal/ActionDialog.vue"
import ConfirmDialog from "./modal/ConfirmDialog.vue"
2020-10-14 19:32:32 +00:00
import { Couchbase } from "nativescript-couchbase-plugin"
const recipesDB = new Couchbase("EnRecipes")
2020-10-14 19:32:32 +00:00
import { mapState, mapActions } from "vuex"
2020-09-15 11:10:16 +00:00
export default {
2020-10-21 17:54:45 +00:00
props: [
"highlight",
"showDrawer",
"restartApp",
"hijackGlobalBackEvent",
"releaseGlobalBackEvent",
],
2020-09-15 11:10:16 +00:00
data() {
return {
2020-11-02 11:36:53 +00:00
viewIsScrolled: false,
appTheme: "Light",
2020-09-15 11:10:16 +00:00
}
},
2020-10-14 19:32:32 +00:00
computed: {
...mapState([
"icon",
"recipes",
"userCategories",
"userYieldUnits",
"currentComponent",
]),
2020-10-14 19:32:32 +00:00
},
2020-09-15 11:10:16 +00:00
methods: {
2020-10-22 18:36:50 +00:00
...mapActions(["setCurrentComponentAction"]),
initializePage() {
this.setCurrentComponentAction("Settings")
2020-10-21 17:54:45 +00:00
this.releaseGlobalBackEvent()
},
2020-11-02 11:36:53 +00:00
onScroll(args) {
args.scrollY
? (this.viewIsScrolled = true)
: (this.viewIsScrolled = false)
2020-10-21 17:54:45 +00:00
},
2020-09-15 11:10:16 +00:00
selectThemes(args) {
2020-09-15 18:04:33 +00:00
this.highlight(args)
2020-10-21 17:54:45 +00:00
this.$showModal(ActionDialog, {
props: {
title: "Theme",
list: ["Light", "Dark"],
2020-11-02 11:36:53 +00:00
height: "108",
2020-10-21 17:54:45 +00:00
},
}).then((action) => {
if (action && action !== "Cancel" && this.appTheme !== action) {
2020-10-21 17:54:45 +00:00
this.$showModal(ConfirmDialog, {
props: {
title: "App Reload Required",
description:
"The app needs to be reloaded for the theme change to take effect.",
cancelButtonText: "CANCEL",
okButtonText: "RELOAD",
},
}).then((result) => {
if (result) {
this.appTheme = action
ApplicationSettings.setString("appTheme", action)
2020-10-21 17:54:45 +00:00
setTimeout((e) => this.restartApp(), 250)
}
})
}
2020-09-15 11:10:16 +00:00
})
},
writeFile(file, data) {
file
.writeText(JSON.stringify(data))
.then((res) => {
file.readText().then((res) => {
// console.log("Data: ", res)
})
2020-09-15 11:10:16 +00:00
})
.catch((err) => {
console.log(err)
2020-09-15 11:10:16 +00:00
})
},
BackupDataFiles(option) {
const folder = path.join(knownFolders.documents().path, "EnRecipes")
const EnRecipesFile = File.fromPath(path.join(folder, "EnRecipes.json"))
const userCategoriesFile = File.fromPath(
path.join(folder, "userCategories.json")
)
const userYieldUnitsFile = File.fromPath(
path.join(folder, "userYieldUnits.json")
)
switch (option) {
case "create":
this.writeFile(EnRecipesFile, this.recipes)
this.userCategories.length &&
this.writeFile(userCategoriesFile, this.userCategories)
this.userYieldUnits.length &&
this.writeFile(userYieldUnitsFile, this.userYieldUnits)
break
case "delete":
EnRecipesFile.remove()
this.userCategories.length && userCategoriesFile.remove()
this.userYieldUnits.length && userYieldUnitsFile.remove()
break
default:
break
}
},
backupPermissionConfirmation() {
return this.$showModal(ConfirmDialog, {
props: {
title: "Grant permission",
description:
"EnRecipes requires storage permission in order to backup your data to this device",
cancelButtonText: "NOT NOW",
okButtonText: "CONTINUE",
},
})
},
backupData() {
this.BackupDataFiles("create")
let date = new Date()
let formattedDate =
date.getFullYear() +
"-" +
("0" + (date.getMonth() + 1)).slice(-2) +
"-" +
("0" + date.getDate()).slice(-2) +
"_" +
("0" + date.getHours()).slice(-2) +
("0" + date.getMinutes()).slice(-2) +
("0" + date.getSeconds()).slice(-2)
const sdDownloadPath = android.os.Environment.getExternalStoragePublicDirectory(
android.os.Environment.DIRECTORY_DOWNLOADS
).toString()
let fromPath = path.join(knownFolders.documents().path, "EnRecipes")
let destPath = path.join(
sdDownloadPath,
`EnRecipes-Backup_${formattedDate}.zip`
)
Zip.zip({
directory: fromPath,
archive: destPath,
})
.then((success) => {
Toast.makeText(
"Backup file successfully saved to Downloads",
"long"
).show()
console.log("success:" + success)
this.BackupDataFiles("delete")
2020-09-15 11:10:16 +00:00
})
.catch((err) => {
console.log(err)
2020-09-15 11:10:16 +00:00
})
},
backupCheck(args) {
let btn = args.object
this.highlight(args)
if (!this.recipes.length) {
Toast.makeText("To perform a backup, add at least one recipe").show()
} else {
this.permissionCheck(this.backupPermissionConfirmation, this.backupData)
}
},
restorePermissionConfirmation() {
return this.$showModal(ConfirmDialog, {
props: {
title: "Grant permission",
description:
"EnRecipes requires storage permission in order to restore your data from a previous backup.",
cancelButtonText: "NOT NOW",
okButtonText: "CONTINUE",
},
})
},
restoreData() {},
restoreCheck(args) {
2020-09-15 11:10:16 +00:00
let btn = args.object
2020-09-15 18:04:33 +00:00
this.highlight(args)
this.permissionCheck(
this.restorePermissionConfirmation,
this.openFilePicker
)
},
openFilePicker() {
let context = Filepicker.create({
2020-10-26 20:49:54 +00:00
mode: "single", // use "multiple" for multiple selection
extensions: ["zip"],
})
context.present().then((selection) => {
Toast.makeText("Processing...").show()
let result = selection[0]
let zipPath = result
let dest = knownFolders.documents().path
this.validateZipContent(zipPath)
// Zip.unzip({
// archive: zipPath,
// directory: dest,
// overwrite: true,
// })
// .then((success) => {
// this.restoreDataInDB()
// Toast.makeText("Restore successful!").show()
// })
// .catch((err) => {
// console.log(err)
// })
})
},
validateZipContent(zipPath) {
Zip.unzip({
archive: zipPath,
overwrite: true,
}).then((success) => {
let cacheFolderPath = success + "/EnRecipes"
const EnRecipesFilePath = cacheFolderPath + "/EnRecipes.json"
const userCategoriesFilePath = cacheFolderPath + "/userCategories.json"
const userYieldUnitsFilePath = cacheFolderPath + "/userYieldUnits.json"
if (
Folder.exists(cacheFolderPath) &&
File.exists(EnRecipesFilePath) &&
File.exists(userCategoriesFilePath) &&
File.exists(userCategoriesFilePath)
) {
console.log("Zip intact")
// Check if EnRecipes.json is of type array
File.fromPath(EnRecipesFilePath)
.readText()
.then((data) => {
let EnRecipesData = JSON.parse(data)
console.log(Array.isArray(EnRecipesData))
EnRecipesData.forEach(recipe => {
})
console.log(EnRecipesData)
})
} else {
Folder.fromPath(success).remove()
console.log("Zip modified externally or incorrect file")
}
})
},
restoreDataInDB() {
// recipesDB.android
// recipesDB.android.destroyDatabase()
},
permissionCheck(confirmation, action) {
if (!ApplicationSettings.getBoolean("storagePermissionAsked", false)) {
confirmation().then((e) => {
if (e) {
Permissions.request("storage").then((res) => {
let status = res[Object.keys(res)[0]]
if (status === "authorized") action()
if (status !== "denied")
ApplicationSettings.setBoolean("storagePermissionAsked", true)
else Toast.makeText("Permission denied").show()
})
}
2020-10-26 20:49:54 +00:00
})
} else {
Permissions.request("storage").then((res) => {
let status = res[Object.keys(res)[0]]
if (status !== "authorized") {
confirmation().then((e) => {
e && this.openAppSettingsPage()
})
} else action()
2020-09-15 11:10:16 +00:00
})
}
},
openAppSettingsPage() {
const intent = new android.content.Intent(
android.provider.Settings.ACTION_APPLICATION_DETAILS_SETTINGS
)
intent.addCategory(android.content.Intent.CATEGORY_DEFAULT)
intent.setData(
android.net.Uri.parse(
"package:" + Application.android.context.getPackageName()
)
)
Application.android.foregroundActivity.startActivity(intent)
2020-09-15 11:10:16 +00:00
},
},
2020-10-14 19:32:32 +00:00
created() {
this.appTheme = ApplicationSettings.getString("appTheme", "Light")
2020-10-14 19:32:32 +00:00
},
2020-09-15 11:10:16 +00:00
}
</script>