2020-10-14 19:32:32 +00:00
|
|
|
<template>
|
2020-10-29 20:12:53 +00:00
|
|
|
<Page @loaded="initialize" @unloaded="releaseBackEvent">
|
2020-10-14 19:32:32 +00:00
|
|
|
<ActionBar :flat="viewIsScrolled ? false : true">
|
2020-10-29 20:12:53 +00:00
|
|
|
<GridLayout rows="*" columns="auto, *, auto" class="actionBarContainer">
|
2020-10-14 19:32:32 +00:00
|
|
|
<Label
|
|
|
|
class="bx leftAction"
|
|
|
|
:text="icon.back"
|
|
|
|
automationText="Back"
|
|
|
|
col="0"
|
|
|
|
@tap="navigateBack"
|
|
|
|
/>
|
2020-10-21 17:54:45 +00:00
|
|
|
<Label class="title orkm" :text="title" col="1" />
|
2020-10-14 19:32:32 +00:00
|
|
|
<Label
|
|
|
|
v-if="hasEnoughDetails"
|
|
|
|
class="bx"
|
|
|
|
:text="icon.save"
|
|
|
|
col="2"
|
|
|
|
@tap="saveRecipe"
|
|
|
|
/>
|
|
|
|
</GridLayout>
|
|
|
|
</ActionBar>
|
2020-10-29 20:12:53 +00:00
|
|
|
<AbsoluteLayout>
|
|
|
|
<ScrollView
|
|
|
|
width="100%"
|
|
|
|
height="100%"
|
|
|
|
@scroll="onScroll($event)"
|
|
|
|
scrollBarIndicatorVisible="false"
|
|
|
|
>
|
|
|
|
<StackLayout width="100%" padding="0 0 128">
|
|
|
|
<!-- Image and camera btn -->
|
|
|
|
<AbsoluteLayout>
|
|
|
|
<StackLayout
|
2020-10-14 19:32:32 +00:00
|
|
|
width="100%"
|
|
|
|
:height="screenWidth"
|
2020-10-29 20:12:53 +00:00
|
|
|
class="view-imageHolder"
|
|
|
|
verticalAlignment="center"
|
|
|
|
>
|
|
|
|
<Image
|
|
|
|
v-if="recipeContent.imageSrc"
|
|
|
|
:src="recipeContent.imageSrc"
|
|
|
|
stretch="aspectFill"
|
|
|
|
width="100%"
|
|
|
|
:height="screenWidth"
|
2020-10-26 20:49:54 +00:00
|
|
|
/>
|
|
|
|
<Label
|
2020-10-29 20:12:53 +00:00
|
|
|
v-else
|
|
|
|
horizontalAlignment="center"
|
|
|
|
class="bx"
|
|
|
|
fontSize="160"
|
2020-10-26 20:49:54 +00:00
|
|
|
:text="icon.image"
|
|
|
|
/>
|
2020-10-29 20:12:53 +00:00
|
|
|
</StackLayout>
|
|
|
|
<StackLayout width="100%" :top="screenWidth - 42">
|
|
|
|
<transition :name="recipeContent.imageSrc ? 'null' : 'bounce'">
|
|
|
|
<Label
|
|
|
|
v-if="showFab"
|
|
|
|
horizontalAlignment="right"
|
|
|
|
@tap="photoHandler"
|
|
|
|
class="bx fab-button"
|
|
|
|
:text="icon.camera"
|
|
|
|
androidElevation="6"
|
|
|
|
/>
|
|
|
|
</transition>
|
|
|
|
</StackLayout>
|
2020-10-14 19:32:32 +00:00
|
|
|
</AbsoluteLayout>
|
2020-10-29 20:12:53 +00:00
|
|
|
|
|
|
|
<!-- Primary information -->
|
|
|
|
<StackLayout margin="0 16">
|
|
|
|
<AbsoluteLayout class="inputField">
|
|
|
|
<TextField
|
|
|
|
hint="My Healthy Recipe"
|
|
|
|
v-model="recipeContent.title"
|
|
|
|
autocapitalizationType="words"
|
|
|
|
/>
|
|
|
|
<Label top="0" class="fieldLabel" text="Title" />
|
2020-10-14 19:32:32 +00:00
|
|
|
</AbsoluteLayout>
|
2020-10-29 20:12:53 +00:00
|
|
|
<AbsoluteLayout class="inputField">
|
2020-10-14 19:32:32 +00:00
|
|
|
<TextField
|
2020-10-29 20:12:53 +00:00
|
|
|
v-model="recipeContent.category"
|
|
|
|
editable="false"
|
|
|
|
@tap="showCategories()"
|
2020-10-14 19:32:32 +00:00
|
|
|
/>
|
2020-10-29 20:12:53 +00:00
|
|
|
<Label top="0" class="fieldLabel" text="Category" />
|
2020-10-14 19:32:32 +00:00
|
|
|
</AbsoluteLayout>
|
2020-10-29 20:12:53 +00:00
|
|
|
<GridLayout columns="*, 8, *">
|
|
|
|
<AbsoluteLayout class="inputField" col="0">
|
|
|
|
<TimePickerField
|
|
|
|
titleTextColor="red"
|
|
|
|
timeFormat="HH:mm"
|
|
|
|
pickerTitle="Approx. preparation time"
|
|
|
|
@timeChange="onPrepTimeChange"
|
|
|
|
:time="recipeContent.prepTime"
|
|
|
|
></TimePickerField>
|
|
|
|
<Label top="0" class="fieldLabel" text="Preparation time" />
|
|
|
|
</AbsoluteLayout>
|
|
|
|
<AbsoluteLayout class="inputField" col="2">
|
|
|
|
<TimePickerField
|
|
|
|
timeFormat="HH:mm"
|
|
|
|
pickerTitle="Approx. cooking time"
|
|
|
|
@timeChange="onCookTimeChange"
|
|
|
|
:time="recipeContent.cookTime"
|
|
|
|
></TimePickerField>
|
|
|
|
<Label top="0" class="fieldLabel" text="Cooking time" />
|
|
|
|
</AbsoluteLayout>
|
|
|
|
</GridLayout>
|
|
|
|
<GridLayout columns="*, 16, *">
|
|
|
|
<AbsoluteLayout class="inputField" col="0">
|
|
|
|
<TextField
|
|
|
|
width="100%"
|
|
|
|
keyboardType="number"
|
|
|
|
v-model="recipeContent.portionSize"
|
|
|
|
/>
|
|
|
|
<Label top="0" class="fieldLabel" text="Portion size" />
|
|
|
|
</AbsoluteLayout>
|
|
|
|
</GridLayout>
|
|
|
|
<StackLayout class="hr" margin="24 16"></StackLayout>
|
|
|
|
</StackLayout>
|
2020-10-14 19:32:32 +00:00
|
|
|
|
2020-10-29 20:12:53 +00:00
|
|
|
<!-- Ingredients section -->
|
|
|
|
<StackLayout margin="0 16">
|
|
|
|
<Label text="Ingredients" class="sectionTitle" />
|
|
|
|
<GridLayout
|
|
|
|
columns="*,8,auto,8,auto,8,auto"
|
|
|
|
v-for="(ingredient, index) in recipeContent.ingredients"
|
|
|
|
:key="index"
|
|
|
|
>
|
|
|
|
<TextField
|
|
|
|
col="0"
|
|
|
|
v-model="recipeContent.ingredients[index].item"
|
|
|
|
:hint="`Item ${index + 1}`"
|
|
|
|
autocapitalizationType="words"
|
|
|
|
/>
|
|
|
|
<TextField
|
|
|
|
width="72"
|
|
|
|
col="2"
|
|
|
|
v-model="recipeContent.ingredients[index].quantity"
|
|
|
|
hint="1.000"
|
|
|
|
keyboardType="number"
|
|
|
|
/>
|
|
|
|
<TextField
|
|
|
|
width="64"
|
|
|
|
col="4"
|
|
|
|
v-model="recipeContent.ingredients[index].unit"
|
|
|
|
hint="Unit"
|
|
|
|
editable="false"
|
|
|
|
@tap="showUnits($event)"
|
|
|
|
/>
|
|
|
|
<Label
|
|
|
|
col="6"
|
|
|
|
class="bx closeBtn"
|
|
|
|
:text="icon.close"
|
|
|
|
@tap="removeIngredient(index)"
|
|
|
|
/>
|
|
|
|
</GridLayout>
|
2020-10-14 19:32:32 +00:00
|
|
|
<Label
|
2020-10-29 20:12:53 +00:00
|
|
|
class="sec-btn pull-left orkm"
|
|
|
|
text="+ ADD INGREDIENT"
|
|
|
|
@tap="addIngredient()"
|
2020-10-14 19:32:32 +00:00
|
|
|
/>
|
|
|
|
|
2020-10-29 20:12:53 +00:00
|
|
|
<StackLayout class="hr" margin="24 16"></StackLayout>
|
|
|
|
</StackLayout>
|
2020-10-14 19:32:32 +00:00
|
|
|
|
2020-10-29 20:12:53 +00:00
|
|
|
<!-- Instructions section -->
|
|
|
|
<StackLayout margin="0 16">
|
|
|
|
<Label text="Instructions" class="sectionTitle" />
|
|
|
|
<GridLayout
|
|
|
|
columns="*,8,auto"
|
|
|
|
v-for="(instruction, index) in recipeContent.instructions"
|
|
|
|
:key="index"
|
|
|
|
>
|
|
|
|
<TextView
|
|
|
|
col="0"
|
|
|
|
:hint="`Step ${index + 1}`"
|
|
|
|
v-model="recipeContent.instructions[index]"
|
|
|
|
editable="true"
|
|
|
|
/>
|
|
|
|
<Label
|
|
|
|
col="2"
|
|
|
|
class="bx closeBtn"
|
|
|
|
:text="icon.close"
|
|
|
|
@tap="removeInstruction(index)"
|
|
|
|
/>
|
|
|
|
</GridLayout>
|
2020-10-14 19:32:32 +00:00
|
|
|
<Label
|
2020-10-29 20:12:53 +00:00
|
|
|
class="sec-btn pull-left orkm"
|
|
|
|
text="+ ADD STEP"
|
|
|
|
@tap="addInstruction()"
|
2020-10-14 19:32:32 +00:00
|
|
|
/>
|
2020-10-29 20:12:53 +00:00
|
|
|
<StackLayout class="hr" margin="24 16"></StackLayout>
|
|
|
|
</StackLayout>
|
2020-10-14 19:32:32 +00:00
|
|
|
|
2020-10-29 20:12:53 +00:00
|
|
|
<!-- Notes section -->
|
|
|
|
<StackLayout margin="0 16">
|
|
|
|
<Label text="Notes" class="sectionTitle" />
|
|
|
|
<GridLayout
|
|
|
|
columns="*,8,auto"
|
|
|
|
v-for="(note, index) in recipeContent.notes"
|
|
|
|
:key="index"
|
|
|
|
>
|
|
|
|
<TextView
|
|
|
|
col="0"
|
|
|
|
v-model="recipeContent.notes[index]"
|
|
|
|
:hint="`Note ${index + 1}`"
|
|
|
|
editable="true"
|
|
|
|
/>
|
|
|
|
<Label
|
|
|
|
col="2"
|
|
|
|
class="bx closeBtn"
|
|
|
|
:text="icon.close"
|
|
|
|
@tap="removeNote(index)"
|
|
|
|
/>
|
|
|
|
</GridLayout>
|
2020-10-14 19:32:32 +00:00
|
|
|
<Label
|
2020-10-29 20:12:53 +00:00
|
|
|
class="sec-btn pull-left orkm"
|
|
|
|
text="+ ADD NOTE"
|
|
|
|
@tap="addNote()"
|
2020-10-14 19:32:32 +00:00
|
|
|
/>
|
2020-10-29 20:12:53 +00:00
|
|
|
<StackLayout class="hr" margin="24 16"></StackLayout>
|
|
|
|
</StackLayout>
|
2020-10-14 19:32:32 +00:00
|
|
|
|
2020-10-29 20:12:53 +00:00
|
|
|
<!-- References section -->
|
|
|
|
<StackLayout margin="0 16">
|
|
|
|
<Label text="References" class="sectionTitle" />
|
|
|
|
<GridLayout
|
|
|
|
columns="*,8,auto"
|
|
|
|
v-for="(reference, index) in recipeContent.references"
|
|
|
|
:key="index"
|
|
|
|
>
|
|
|
|
<TextView
|
|
|
|
col="0"
|
|
|
|
v-model="recipeContent.references[index]"
|
|
|
|
hint="Text or Website/Video URL"
|
|
|
|
editable="true"
|
|
|
|
/>
|
|
|
|
<Label
|
|
|
|
col="2"
|
|
|
|
class="bx closeBtn"
|
|
|
|
:text="icon.close"
|
|
|
|
@tap="removeReference(index)"
|
|
|
|
/>
|
|
|
|
</GridLayout>
|
2020-10-14 19:32:32 +00:00
|
|
|
<Label
|
2020-10-29 20:12:53 +00:00
|
|
|
class="sec-btn pull-left orkm"
|
|
|
|
text="+ ADD REFERENCE"
|
|
|
|
@tap="addReference()"
|
2020-10-14 19:32:32 +00:00
|
|
|
/>
|
2020-10-29 20:12:53 +00:00
|
|
|
<StackLayout margin="32"></StackLayout>
|
|
|
|
</StackLayout>
|
2020-10-14 19:32:32 +00:00
|
|
|
</StackLayout>
|
2020-10-29 20:12:53 +00:00
|
|
|
</ScrollView>
|
|
|
|
</AbsoluteLayout>
|
2020-10-14 19:32:32 +00:00
|
|
|
</Page>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2020-10-24 18:02:35 +00:00
|
|
|
import {
|
|
|
|
Screen,
|
|
|
|
AndroidApplication,
|
|
|
|
ImageSource,
|
|
|
|
path,
|
|
|
|
getFileAccess,
|
|
|
|
knownFolders,
|
|
|
|
} from "@nativescript/core"
|
2020-10-29 20:12:53 +00:00
|
|
|
import { Mediafilepicker } from "nativescript-mediafilepicker"
|
2020-10-22 18:36:50 +00:00
|
|
|
|
2020-10-14 19:32:32 +00:00
|
|
|
import { mapState, mapActions } from "vuex"
|
2020-10-22 18:36:50 +00:00
|
|
|
|
2020-10-21 17:54:45 +00:00
|
|
|
import ActionDialog from "./modal/ActionDialog.vue"
|
|
|
|
import ConfirmDialog from "./modal/ConfirmDialog.vue"
|
2020-10-29 20:12:53 +00:00
|
|
|
import PromptDialog from "./modal/PromptDialog.vue"
|
2020-10-21 17:54:45 +00:00
|
|
|
|
2020-10-14 19:32:32 +00:00
|
|
|
export default {
|
2020-10-26 20:49:54 +00:00
|
|
|
props: ["recipeIndex", "recipeID", "selectedCategory"],
|
2020-10-14 19:32:32 +00:00
|
|
|
data() {
|
|
|
|
return {
|
2020-10-21 17:54:45 +00:00
|
|
|
title: "New recipe",
|
2020-10-14 19:32:32 +00:00
|
|
|
viewIsScrolled: false,
|
|
|
|
recipeContent: {
|
|
|
|
imageSrc: null,
|
2020-10-29 20:12:53 +00:00
|
|
|
title: undefined,
|
|
|
|
category: "Undefined",
|
2020-10-14 19:32:32 +00:00
|
|
|
prepTime: "00:00",
|
|
|
|
cookTime: "00:00",
|
|
|
|
portionSize: 1,
|
|
|
|
ingredients: [
|
|
|
|
{
|
2020-10-21 17:54:45 +00:00
|
|
|
item: "",
|
2020-10-29 20:12:53 +00:00
|
|
|
quantity: undefined,
|
2020-10-26 20:49:54 +00:00
|
|
|
unit: "unit",
|
|
|
|
},
|
|
|
|
],
|
|
|
|
instructions: [""],
|
|
|
|
notes: [""],
|
|
|
|
references: [""],
|
|
|
|
isFavorite: false,
|
|
|
|
tried: false,
|
|
|
|
lastModified: null,
|
|
|
|
},
|
2020-10-29 20:12:53 +00:00
|
|
|
tempRecipeContent: {},
|
2020-10-21 17:54:45 +00:00
|
|
|
blockModal: false,
|
2020-10-24 18:02:35 +00:00
|
|
|
newRecipeID: null,
|
2020-10-29 20:12:53 +00:00
|
|
|
showFab: false,
|
2020-10-14 19:32:32 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
computed: {
|
2020-10-26 20:49:54 +00:00
|
|
|
...mapState(["icon", "units", "recipes", "categories", "currentComponent"]),
|
2020-10-14 19:32:32 +00:00
|
|
|
screenWidth() {
|
2020-10-22 18:36:50 +00:00
|
|
|
return Screen.mainScreen.widthDIPs
|
2020-10-14 19:32:32 +00:00
|
|
|
},
|
|
|
|
hasEnoughDetails() {
|
2020-10-29 20:12:53 +00:00
|
|
|
return (
|
|
|
|
JSON.stringify(this.recipeContent) !==
|
|
|
|
JSON.stringify(this.tempRecipeContent)
|
|
|
|
)
|
2020-10-14 19:32:32 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
methods: {
|
2020-10-26 20:49:54 +00:00
|
|
|
...mapActions([
|
|
|
|
"setCurrentComponentAction",
|
|
|
|
"addRecipeAction",
|
|
|
|
"overwriteRecipeAction",
|
|
|
|
"addCategoryAction",
|
|
|
|
]),
|
2020-10-29 20:12:53 +00:00
|
|
|
initialize() {
|
|
|
|
this.showFab = true
|
|
|
|
},
|
2020-10-24 18:02:35 +00:00
|
|
|
getRandomID() {
|
|
|
|
let res = ""
|
|
|
|
let chars = "abcdefghijklmnopqrstuvwxyz0123456789"
|
|
|
|
for (let i = 0; i < 10; i++) {
|
|
|
|
res += chars.charAt(Math.floor(Math.random() * chars.length))
|
|
|
|
}
|
|
|
|
return res
|
2020-10-21 17:54:45 +00:00
|
|
|
},
|
|
|
|
setTime(key, time) {
|
|
|
|
if (Date.parse(time)) {
|
|
|
|
let date = new Date(time)
|
2020-10-14 19:32:32 +00:00
|
|
|
let h = date.getHours()
|
|
|
|
let m = date.getMinutes()
|
|
|
|
|
2020-10-21 17:54:45 +00:00
|
|
|
this.recipeContent[key] =
|
2020-10-14 19:32:32 +00:00
|
|
|
(h < 10 ? "0" + h : h) + ":" + (m < 10 ? "0" + m : m)
|
|
|
|
}
|
2020-10-21 17:54:45 +00:00
|
|
|
},
|
|
|
|
clearEmptyFields() {
|
2020-10-29 20:12:53 +00:00
|
|
|
if (!this.recipeContent.title) {
|
|
|
|
this.recipeContent.title = "Untitled Recipe"
|
|
|
|
}
|
2020-10-21 17:54:45 +00:00
|
|
|
if (!this.recipeContent.portionSize) {
|
|
|
|
this.recipeContent.portionSize = 1
|
|
|
|
}
|
|
|
|
this.recipeContent.ingredients.forEach((e, i) => {
|
|
|
|
if (!e.item.length) {
|
|
|
|
this.recipeContent.ingredients.splice(i, 1)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
let vm = this
|
|
|
|
function removeEmpty(arr) {
|
|
|
|
vm.recipeContent[arr].forEach((e, i) => {
|
|
|
|
if (!e.length) {
|
|
|
|
vm.recipeContent[arr].splice(i, 1)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
removeEmpty("instructions")
|
|
|
|
removeEmpty("notes")
|
|
|
|
removeEmpty("references")
|
2020-10-14 19:32:32 +00:00
|
|
|
},
|
|
|
|
saveRecipe() {
|
2020-10-29 20:12:53 +00:00
|
|
|
console.log(
|
|
|
|
JSON.stringify(this.recipeContent),
|
|
|
|
JSON.stringify(this.tempRecipeContent)
|
|
|
|
)
|
2020-10-21 17:54:45 +00:00
|
|
|
this.clearEmptyFields()
|
|
|
|
this.recipeContent.lastModified = new Date()
|
2020-10-24 18:02:35 +00:00
|
|
|
if (this.recipeID) {
|
2020-10-26 20:49:54 +00:00
|
|
|
this.overwriteRecipeAction({
|
|
|
|
index: this.recipeIndex,
|
|
|
|
id: this.recipeID,
|
|
|
|
recipe: this.recipeContent,
|
|
|
|
})
|
2020-10-21 17:54:45 +00:00
|
|
|
} else {
|
2020-10-24 18:02:35 +00:00
|
|
|
this.recipeContent.id = this.newRecipeID
|
2020-10-26 20:49:54 +00:00
|
|
|
this.addRecipeAction({
|
|
|
|
id: this.newRecipeID,
|
|
|
|
recipe: this.recipeContent,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
if (this.tempRecipeContent.imageSrc && !this.recipeContent.imageSrc) {
|
|
|
|
getFileAccess().deleteFile(this.tempRecipeContent.imageSrc)
|
2020-10-21 17:54:45 +00:00
|
|
|
}
|
2020-10-14 19:32:32 +00:00
|
|
|
this.$navigateBack()
|
|
|
|
},
|
|
|
|
onPrepTimeChange(args) {
|
2020-10-21 17:54:45 +00:00
|
|
|
this.setTime("prepTime", args.value)
|
2020-10-14 19:32:32 +00:00
|
|
|
},
|
|
|
|
onCookTimeChange(args) {
|
2020-10-21 17:54:45 +00:00
|
|
|
this.setTime("cookTime", args.value)
|
2020-10-14 19:32:32 +00:00
|
|
|
},
|
|
|
|
onScroll(args) {
|
|
|
|
args.scrollY
|
|
|
|
? (this.viewIsScrolled = true)
|
|
|
|
: (this.viewIsScrolled = false)
|
|
|
|
},
|
|
|
|
showCategories() {
|
2020-10-21 17:54:45 +00:00
|
|
|
this.releaseBackEvent()
|
|
|
|
this.$showModal(ActionDialog, {
|
|
|
|
props: {
|
|
|
|
title: "Category",
|
|
|
|
list: [...this.categories],
|
2020-10-22 18:36:50 +00:00
|
|
|
height: "60%",
|
2020-10-21 17:54:45 +00:00
|
|
|
action: "NEW CATEGORY",
|
|
|
|
},
|
|
|
|
}).then((action) => {
|
|
|
|
if (action == "NEW CATEGORY") {
|
|
|
|
this.$showModal(PromptDialog, {
|
|
|
|
props: {
|
|
|
|
title: "New category",
|
|
|
|
action: "ADD",
|
|
|
|
},
|
2020-10-26 20:49:54 +00:00
|
|
|
}).then((category) => {
|
2020-10-21 17:54:45 +00:00
|
|
|
this.hijackBackEvent()
|
2020-10-26 20:49:54 +00:00
|
|
|
if (category.length) {
|
|
|
|
this.recipeContent.category = category
|
|
|
|
this.addCategoryAction(category)
|
2020-10-21 17:54:45 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
} else if (action) {
|
|
|
|
this.recipeContent.category = action
|
|
|
|
this.hijackBackEvent()
|
|
|
|
} else {
|
|
|
|
this.hijackBackEvent()
|
2020-10-14 19:32:32 +00:00
|
|
|
}
|
2020-10-21 17:54:45 +00:00
|
|
|
})
|
2020-10-14 19:32:32 +00:00
|
|
|
},
|
|
|
|
navigateBack() {
|
2020-10-21 17:54:45 +00:00
|
|
|
if (this.hasEnoughDetails) {
|
|
|
|
this.blockModal = true
|
|
|
|
this.$showModal(ConfirmDialog, {
|
|
|
|
props: {
|
2020-10-29 20:12:53 +00:00
|
|
|
title: "Unsaved changes",
|
2020-10-21 17:54:45 +00:00
|
|
|
description:
|
2020-10-29 20:12:53 +00:00
|
|
|
"Do you want to save the changes you made in this recipe?",
|
|
|
|
cancelButtonText: "DISCARD",
|
|
|
|
okButtonText: "SAVE",
|
2020-10-21 17:54:45 +00:00
|
|
|
},
|
|
|
|
}).then((action) => {
|
|
|
|
this.blockModal = false
|
|
|
|
if (action) {
|
2020-10-29 20:12:53 +00:00
|
|
|
this.saveRecipe()
|
|
|
|
} else if (action != null) {
|
2020-10-21 17:54:45 +00:00
|
|
|
this.$navigateBack()
|
|
|
|
this.releaseBackEvent()
|
|
|
|
}
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
this.$navigateBack()
|
|
|
|
this.releaseBackEvent()
|
|
|
|
}
|
|
|
|
},
|
|
|
|
hijackBackEvent() {
|
2020-10-22 18:36:50 +00:00
|
|
|
AndroidApplication.on(
|
|
|
|
AndroidApplication.activityBackPressedEvent,
|
2020-10-21 17:54:45 +00:00
|
|
|
this.backEvent
|
|
|
|
)
|
|
|
|
},
|
|
|
|
releaseBackEvent() {
|
2020-10-22 18:36:50 +00:00
|
|
|
AndroidApplication.off(
|
|
|
|
AndroidApplication.activityBackPressedEvent,
|
2020-10-21 17:54:45 +00:00
|
|
|
this.backEvent
|
|
|
|
)
|
|
|
|
},
|
|
|
|
backEvent(args) {
|
|
|
|
if (this.hasEnoughDetails && !this.blockModal) {
|
|
|
|
args.cancel = true
|
|
|
|
this.navigateBack()
|
|
|
|
}
|
2020-10-14 19:32:32 +00:00
|
|
|
},
|
2020-10-29 20:12:53 +00:00
|
|
|
photoHandler() {
|
|
|
|
if (this.recipeContent.imageSrc) {
|
|
|
|
this.blockModal = true
|
|
|
|
this.$showModal(ConfirmDialog, {
|
|
|
|
props: {
|
|
|
|
title: "Recipe photo",
|
|
|
|
cancelButtonText: "REMOVE",
|
|
|
|
okButtonText: "REPLACE PHOTO",
|
|
|
|
},
|
|
|
|
}).then((action) => {
|
|
|
|
this.blockModal = false
|
|
|
|
if (action) {
|
|
|
|
this.takePicture()
|
|
|
|
} else if (action != null) {
|
|
|
|
this.removePicture()
|
|
|
|
this.releaseBackEvent()
|
|
|
|
}
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
this.takePicture()
|
|
|
|
}
|
|
|
|
},
|
2020-10-14 19:32:32 +00:00
|
|
|
takePicture() {
|
2020-10-26 20:49:54 +00:00
|
|
|
const vm = this
|
2020-10-29 20:12:53 +00:00
|
|
|
const mediafilepicker = new Mediafilepicker()
|
|
|
|
mediafilepicker.openImagePicker({
|
|
|
|
android: {
|
|
|
|
isCaptureMood: false, // if true then camera will open directly.
|
|
|
|
isNeedCamera: true,
|
|
|
|
maxNumberFiles: 1,
|
|
|
|
isNeedFolderList: true,
|
2020-10-14 19:32:32 +00:00
|
|
|
},
|
|
|
|
})
|
2020-10-29 20:12:53 +00:00
|
|
|
mediafilepicker.on("getFiles", (image) => {
|
|
|
|
let result = image.object.get("results")[0].file
|
|
|
|
ImageSource.fromFile(result).then((savedImg) => {
|
|
|
|
let savedImgPath = path.join(
|
|
|
|
knownFolders.documents().getFolder("enrecipes").path,
|
|
|
|
`${vm.getRandomID()}.jpg`
|
|
|
|
)
|
|
|
|
savedImg.saveToFile(savedImgPath, "jpg")
|
|
|
|
vm.recipeContent.imageSrc = savedImgPath
|
2020-10-24 18:02:35 +00:00
|
|
|
})
|
2020-10-29 20:12:53 +00:00
|
|
|
})
|
|
|
|
mediafilepicker.on("error", function(res) {
|
|
|
|
let msg = res.object.get("msg")
|
|
|
|
console.log(msg)
|
|
|
|
})
|
|
|
|
|
|
|
|
mediafilepicker.on("cancel", function(res) {
|
|
|
|
let msg = res.object.get("msg")
|
|
|
|
console.log(msg)
|
|
|
|
})
|
2020-10-14 19:32:32 +00:00
|
|
|
},
|
|
|
|
removePicture() {
|
|
|
|
confirm({
|
2020-10-21 17:54:45 +00:00
|
|
|
title: "Delete Photo",
|
2020-10-14 19:32:32 +00:00
|
|
|
message: "Are you sure you want to delete the recipe photo?",
|
|
|
|
okButtonText: "Delete",
|
|
|
|
cancelButtonText: "Cancel",
|
|
|
|
}).then((e) => {
|
2020-10-24 18:02:35 +00:00
|
|
|
if (e) {
|
|
|
|
this.recipeContent.imageSrc = null
|
|
|
|
}
|
2020-10-14 19:32:32 +00:00
|
|
|
})
|
|
|
|
},
|
|
|
|
|
|
|
|
addIngredient() {
|
|
|
|
this.recipeContent.ingredients.push({
|
2020-10-21 17:54:45 +00:00
|
|
|
item: "",
|
2020-10-14 19:32:32 +00:00
|
|
|
quantity: null,
|
|
|
|
unit: "unit",
|
|
|
|
})
|
|
|
|
},
|
|
|
|
removeIngredient(index) {
|
|
|
|
this.recipeContent.ingredients.splice(index, 1)
|
|
|
|
},
|
|
|
|
|
|
|
|
addInstruction() {
|
|
|
|
this.recipeContent.instructions.push("")
|
|
|
|
},
|
|
|
|
removeInstruction(index) {
|
|
|
|
this.recipeContent.instructions.splice(index, 1)
|
|
|
|
},
|
|
|
|
|
|
|
|
addNote() {
|
|
|
|
this.recipeContent.notes.push("")
|
|
|
|
},
|
|
|
|
removeNote(index) {
|
|
|
|
this.recipeContent.notes.splice(index, 1)
|
|
|
|
},
|
|
|
|
|
|
|
|
addReference() {
|
|
|
|
this.recipeContent.references.push("")
|
|
|
|
},
|
|
|
|
removeReference(index) {
|
|
|
|
this.recipeContent.references.splice(index, 1)
|
|
|
|
},
|
|
|
|
|
|
|
|
showUnits(e) {
|
2020-10-21 17:54:45 +00:00
|
|
|
this.releaseBackEvent()
|
|
|
|
this.$showModal(ActionDialog, {
|
|
|
|
props: {
|
|
|
|
title: "Unit",
|
|
|
|
list: [...this.units],
|
|
|
|
height: "75%",
|
|
|
|
},
|
|
|
|
}).then((action) => {
|
|
|
|
this.hijackBackEvent()
|
|
|
|
if (action) e.object.text = action
|
|
|
|
})
|
2020-10-14 19:32:32 +00:00
|
|
|
},
|
|
|
|
},
|
2020-10-26 20:49:54 +00:00
|
|
|
created() {
|
|
|
|
setTimeout((e) => {
|
|
|
|
this.setCurrentComponentAction("EditRecipe")
|
|
|
|
}, 500)
|
|
|
|
this.title = this.recipeID ? "Edit recipe" : "New recipe"
|
|
|
|
if (this.recipeID) {
|
|
|
|
let recipe = this.recipes.filter((e) => e.id === this.recipeID)[0]
|
2020-10-29 20:12:53 +00:00
|
|
|
Object.assign(this.recipeContent, JSON.parse(JSON.stringify(recipe)))
|
|
|
|
Object.assign(this.tempRecipeContent, JSON.parse(JSON.stringify(recipe)))
|
2020-10-26 20:49:54 +00:00
|
|
|
} else {
|
2020-10-29 20:12:53 +00:00
|
|
|
Object.assign(
|
|
|
|
this.tempRecipeContent,
|
|
|
|
JSON.parse(JSON.stringify(this.recipeContent))
|
|
|
|
)
|
2020-10-26 20:49:54 +00:00
|
|
|
if (this.selectedCategory)
|
|
|
|
this.recipeContent.category = this.selectedCategory
|
|
|
|
this.newRecipeID = this.getRandomID()
|
|
|
|
}
|
|
|
|
this.hijackBackEvent()
|
|
|
|
},
|
2020-10-14 19:32:32 +00:00
|
|
|
}
|
|
|
|
</script>
|