735 lines
23 KiB
Vue
735 lines
23 KiB
Vue
<template>
|
|
<Page @loaded="onPageLoad" @unloaded="onPageUnload">
|
|
<ActionBar height="112" margin="0" flat="true">
|
|
<GridLayout rows="64, 48" columns="auto, *, auto,auto, auto">
|
|
<MDButton
|
|
variant="text"
|
|
row="0"
|
|
col="0"
|
|
class="bx"
|
|
:text="icon.back"
|
|
automationText="Back"
|
|
@tap="$navigateBack()"
|
|
/>
|
|
<ScrollView
|
|
row="1"
|
|
col="1"
|
|
colSpan="3"
|
|
orientation="horizontal"
|
|
scrollBarIndicatorVisible="false"
|
|
>
|
|
<Label
|
|
class="title orkm"
|
|
:text="recipe.title"
|
|
verticalAlignment="bottom"
|
|
/>
|
|
</ScrollView>
|
|
<FlexboxLayout row="0" col="2" alignItems="center">
|
|
<MDButton
|
|
variant="text"
|
|
v-if="!busy"
|
|
class="bx"
|
|
:text="icon.edit"
|
|
@tap="editRecipe"
|
|
/>
|
|
<MDActivityIndicator v-else :busy="busy" />
|
|
<MDButton
|
|
variant="text"
|
|
class="bx"
|
|
:text="recipe.isFavorite ? icon.heart : icon.heartOutline"
|
|
@tap="toggleFavorite"
|
|
/>
|
|
<MDButton
|
|
variant="text"
|
|
v-if="!filterTrylater"
|
|
class="bx"
|
|
:text="recipe.tried ? icon.trylaterOutline : icon.trylater"
|
|
@tap="toggleTrylater"
|
|
/>
|
|
<MDButton
|
|
variant="text"
|
|
v-else
|
|
class="bx"
|
|
:text="icon.share"
|
|
@tap="shareHandler"
|
|
/>
|
|
</FlexboxLayout>
|
|
</GridLayout>
|
|
</ActionBar>
|
|
<AbsoluteLayout>
|
|
<TabView
|
|
:selectedIndex="selectedTabIndex"
|
|
@selectedIndexChange="selectedIndexChange"
|
|
androidElevation="0"
|
|
width="100%"
|
|
height="100%"
|
|
class="viewRecipe"
|
|
>
|
|
<TabViewItem title="Overview">
|
|
<ScrollView scrollBarIndicatorVisible="false">
|
|
<StackLayout>
|
|
<StackLayout
|
|
width="100%"
|
|
:height="screenWidth"
|
|
verticalAlignment="center"
|
|
class="imageHolder"
|
|
>
|
|
<Image
|
|
v-if="recipe.imageSrc"
|
|
:src="recipe.imageSrc"
|
|
stretch="aspectFill"
|
|
decodeWidth="100%"
|
|
:decodeHeight="screenWidth"
|
|
loadMode="async"
|
|
/>
|
|
<Label
|
|
v-else
|
|
horizontalAlignment="center"
|
|
class="bx"
|
|
fontSize="160"
|
|
:text="icon.image"
|
|
/>
|
|
</StackLayout>
|
|
<StackLayout margin="16 8 144">
|
|
<Label class="category orkm" :text="recipe.category" />
|
|
<Label
|
|
margin="0 8"
|
|
class="title orkm"
|
|
:text="recipe.title"
|
|
textWrap="true"
|
|
/>
|
|
<StackLayout orientation="horizontal" class="time">
|
|
<Label text="Time required:" />
|
|
<Label :text="` ${formattedTime(recipe.timeRequired)}`" />
|
|
</StackLayout>
|
|
<GridLayout
|
|
rows="auto, auto"
|
|
columns="*, *"
|
|
class="overviewContainer"
|
|
>
|
|
<GridLayout
|
|
class="overviewItem"
|
|
row="0"
|
|
col="0"
|
|
rows="auto, auto"
|
|
columns="*"
|
|
>
|
|
<MDRipple rowSpan="2" @tap="selectedTabIndex = 1" />
|
|
<Label row="0" class="bx" :text="icon.item" />
|
|
<Label
|
|
row="1"
|
|
class="itemCount"
|
|
:text="
|
|
`${recipe.ingredients.length} ${
|
|
recipe.ingredients.length == 1
|
|
? 'Ingredient'
|
|
: 'Ingredients'
|
|
}`
|
|
"
|
|
textWrap="true"
|
|
/>
|
|
</GridLayout>
|
|
<GridLayout
|
|
class="overviewItem"
|
|
row="0"
|
|
col="1"
|
|
rows="auto, auto"
|
|
columns="*"
|
|
>
|
|
<MDRipple rowSpan="2" @tap="selectedTabIndex = 2" />
|
|
<Label row="0" class="bx" :text="icon.step" />
|
|
<Label
|
|
row="1"
|
|
class="itemCount"
|
|
:text="
|
|
`${recipe.instructions.length} ${
|
|
recipe.instructions.length == 1 ? 'Step' : 'Steps'
|
|
}`
|
|
"
|
|
textWrap="true"
|
|
/>
|
|
</GridLayout>
|
|
<GridLayout
|
|
class="overviewItem"
|
|
row="1"
|
|
col="0"
|
|
rows="auto, auto"
|
|
columns="*"
|
|
>
|
|
<MDRipple rowSpan="2" @tap="selectedTabIndex = 3" />
|
|
<Label row="0" class="bx" :text="icon.note" />
|
|
<Label
|
|
row="1"
|
|
class="itemCount"
|
|
:text="
|
|
`${recipe.notes.length} ${
|
|
recipe.notes.length == 1 ? 'Note' : 'Notes'
|
|
}`
|
|
"
|
|
textWrap="true"
|
|
/>
|
|
</GridLayout>
|
|
<GridLayout
|
|
class="overviewItem"
|
|
row="1"
|
|
col="1"
|
|
rows="auto, auto"
|
|
columns="*"
|
|
>
|
|
<MDRipple rowSpan="2" @tap="selectedTabIndex = 4" />
|
|
<Label row="0" class="bx" :text="icon.source" />
|
|
<Label
|
|
row="1"
|
|
class="itemCount"
|
|
:text="
|
|
`${recipe.references.length} ${
|
|
recipe.references.length == 1
|
|
? 'Reference'
|
|
: 'References'
|
|
}`
|
|
"
|
|
textWrap="true"
|
|
/>
|
|
</GridLayout>
|
|
</GridLayout>
|
|
</StackLayout>
|
|
</StackLayout>
|
|
</ScrollView>
|
|
</TabViewItem>
|
|
<TabViewItem title="Ingredients">
|
|
<ScrollView scrollBarIndicatorVisible="false">
|
|
<GridLayout
|
|
v-if="!recipe.ingredients.length"
|
|
rows="*, auto, *, 88"
|
|
columns="*"
|
|
class="emptyStateContainer"
|
|
>
|
|
<StackLayout col="0" row="1" class="emptyState">
|
|
<Label class="bx icon" :text="icon.item" textWrap="true" />
|
|
<StackLayout orientation="horizontal" class="title orkm">
|
|
<Label text="Use the " />
|
|
<Label class="bx" :text="icon.edit" />
|
|
<Label text=" button" />
|
|
</StackLayout>
|
|
<Label text="to add some ingredients" textWrap="true" />
|
|
</StackLayout>
|
|
</GridLayout>
|
|
<StackLayout v-else padding="32 16 134">
|
|
<AbsoluteLayout class="inputField">
|
|
<TextField
|
|
width="50%"
|
|
v-model="yieldMultiplier"
|
|
keyboardType="number"
|
|
/>
|
|
<Label
|
|
top="0"
|
|
class="fieldLabel"
|
|
:text="`Required ${recipe.yield.unit.toLowerCase()}`"
|
|
/>
|
|
</AbsoluteLayout>
|
|
<StackLayout margin="16 0">
|
|
<Label
|
|
class="title orkm"
|
|
:text="
|
|
`Ingredients for ${
|
|
yieldMultiplier ? yieldMultiplier : 1
|
|
} ${recipe.yield.unit.toLowerCase()}`
|
|
"
|
|
textWrap="true"
|
|
/>
|
|
</StackLayout>
|
|
<StackLayout
|
|
v-for="(item, index) in recipe.ingredients"
|
|
:key="index"
|
|
>
|
|
<check-box
|
|
v-if="filterTrylater"
|
|
class="ingredient-check"
|
|
checkPadding="16"
|
|
fillColor="#ff5200"
|
|
:text="
|
|
`${
|
|
roundedQuantity(item.quantity)
|
|
? roundedQuantity(item.quantity) + ' '
|
|
: ''
|
|
}${roundedQuantity(item.quantity) ? item.unit + ' ' : ''}${
|
|
item.item
|
|
}`
|
|
"
|
|
/>
|
|
<Label
|
|
v-else
|
|
class="ingredient"
|
|
textWrap="true"
|
|
:text="
|
|
`${
|
|
roundedQuantity(item.quantity)
|
|
? roundedQuantity(item.quantity) + ' '
|
|
: ''
|
|
}${roundedQuantity(item.quantity) ? item.unit + ' ' : ''}${
|
|
item.item
|
|
}`
|
|
"
|
|
/>
|
|
</StackLayout>
|
|
</StackLayout>
|
|
</ScrollView>
|
|
</TabViewItem>
|
|
<TabViewItem title="Instructions">
|
|
<ScrollView scrollBarIndicatorVisible="false">
|
|
<GridLayout
|
|
v-if="!recipe.instructions.length"
|
|
rows="*, auto, *, 88"
|
|
columns="*"
|
|
class="emptyStateContainer"
|
|
>
|
|
<StackLayout col="0" row="1" class="emptyState">
|
|
<Label class="bx icon" :text="icon.step" textWrap="true" />
|
|
<StackLayout orientation="horizontal" class="title orkm">
|
|
<Label text="Use the " />
|
|
<Label class="bx" :text="icon.edit" />
|
|
<Label text=" button" />
|
|
</StackLayout>
|
|
<Label text="to add some instructions" textWrap="true" />
|
|
</StackLayout>
|
|
</GridLayout>
|
|
<StackLayout v-else padding="32 16 132">
|
|
<GridLayout
|
|
columns="auto ,*"
|
|
v-for="(instruction, index) in recipe.instructions"
|
|
:key="index"
|
|
>
|
|
<Label
|
|
col="0"
|
|
colSpan="2"
|
|
class="instruction"
|
|
:class="{
|
|
noBorder: index === recipe.instructions.length - 1,
|
|
}"
|
|
:text="instruction"
|
|
textWrap="true"
|
|
/>
|
|
<Label
|
|
verticalAlignment="top"
|
|
horizontalAlignment="center"
|
|
class="count orkm"
|
|
col="0"
|
|
:text="index + 1"
|
|
/>
|
|
</GridLayout>
|
|
</StackLayout>
|
|
</ScrollView>
|
|
</TabViewItem>
|
|
<TabViewItem title="Notes">
|
|
<ScrollView scrollBarIndicatorVisible="false">
|
|
<GridLayout
|
|
v-if="!recipe.notes.length"
|
|
rows="*, auto, *, 88"
|
|
columns="*"
|
|
class="emptyStateContainer"
|
|
>
|
|
<StackLayout col="0" row="1" class="emptyState">
|
|
<Label class="bx icon" :text="icon.note" textWrap="true" />
|
|
<StackLayout orientation="horizontal" class="title orkm">
|
|
<Label text="Use the " />
|
|
<Label class="bx" :text="icon.edit" />
|
|
<Label text=" button" />
|
|
</StackLayout>
|
|
<Label text="to add some notes" textWrap="true" />
|
|
</StackLayout>
|
|
</GridLayout>
|
|
<StackLayout v-else padding="32 16 132">
|
|
<GridLayout
|
|
columns="auto ,*"
|
|
v-for="(note, index) in recipe.notes"
|
|
:key="index"
|
|
>
|
|
<Label
|
|
col="0"
|
|
colSpan="2"
|
|
class="note"
|
|
:text="note"
|
|
textWrap="true"
|
|
/>
|
|
<Label
|
|
verticalAlignment="top"
|
|
horizontalAlignment="center"
|
|
class="count square orkm"
|
|
col="0"
|
|
:text="index + 1"
|
|
/>
|
|
</GridLayout>
|
|
</StackLayout>
|
|
</ScrollView>
|
|
</TabViewItem>
|
|
<TabViewItem title="References">
|
|
<ScrollView scrollBarIndicatorVisible="false">
|
|
<GridLayout
|
|
v-if="!recipe.references.length"
|
|
rows="*, auto, *, 88"
|
|
columns="*"
|
|
class="emptyStateContainer"
|
|
>
|
|
<StackLayout col="0" row="1" class="emptyState">
|
|
<Label class="bx icon" :text="icon.source" textWrap="true" />
|
|
<StackLayout orientation="horizontal" class="title orkm">
|
|
<Label text="Use the " />
|
|
<Label class="bx" :text="icon.edit" />
|
|
<Label text=" button" />
|
|
</StackLayout>
|
|
<Label text="to add some references" textWrap="true" />
|
|
</StackLayout>
|
|
</GridLayout>
|
|
<StackLayout v-else padding="10 0 132">
|
|
<StackLayout
|
|
v-for="(reference, index) in recipe.references"
|
|
:key="index"
|
|
>
|
|
<GridLayout
|
|
v-if="isValidURL(reference)"
|
|
columns="*, auto"
|
|
class="referenceItem"
|
|
androidElevation="1"
|
|
>
|
|
<MDRipple colSpan="3" @tap="copyURL(reference)" />
|
|
<Label
|
|
col="0"
|
|
verticalAlignment="center"
|
|
class="recipeLink"
|
|
:text="reference"
|
|
textWrap="false"
|
|
/>
|
|
<MDButton
|
|
variant="text"
|
|
automationText="openURL"
|
|
col="1"
|
|
class="bx"
|
|
:text="icon.source"
|
|
@tap="openURL(reference)"
|
|
/>
|
|
</GridLayout>
|
|
<Label
|
|
v-else
|
|
class="recipeText"
|
|
:text="reference"
|
|
textWrap="true"
|
|
/>
|
|
</StackLayout>
|
|
</StackLayout>
|
|
</ScrollView>
|
|
</TabViewItem>
|
|
</TabView>
|
|
<GridLayout id="btnFabContainer" rows="*, auto" columns="*, auto">
|
|
<MDFloatingActionButton
|
|
row="1"
|
|
col="1"
|
|
src="res://check"
|
|
@tap="recipeTried"
|
|
v-if="filterTrylater"
|
|
/>
|
|
<transition name="dolly" appear>
|
|
<MDFloatingActionButton
|
|
row="1"
|
|
col="1"
|
|
src="res://share"
|
|
@tap="shareHandler"
|
|
v-if="!filterTrylater && showFab"
|
|
/>
|
|
</transition>
|
|
</GridLayout>
|
|
</AbsoluteLayout>
|
|
</Page>
|
|
</template>
|
|
|
|
<script>
|
|
import {
|
|
Color,
|
|
Device,
|
|
File,
|
|
knownFolders,
|
|
path,
|
|
ImageSource,
|
|
Screen,
|
|
Utils,
|
|
} from "@nativescript/core"
|
|
import { Feedback, FeedbackType, FeedbackPosition } from "nativescript-feedback"
|
|
import * as Toast from "nativescript-toast"
|
|
import * as SocialShare from "@nativescript/social-share"
|
|
import { setText } from "nativescript-clipboard"
|
|
import { Application } from "@nativescript/core"
|
|
import { mapActions, mapState } from "vuex"
|
|
|
|
import EditRecipe from "./EditRecipe.vue"
|
|
import ShareChooser from "./modal/ShareChooser.vue"
|
|
|
|
let feedback = new Feedback()
|
|
|
|
export default {
|
|
props: [
|
|
"filterTrylater",
|
|
"recipeIndex",
|
|
"recipeID",
|
|
"hijackGlobalBackEvent",
|
|
"releaseGlobalBackEvent",
|
|
],
|
|
data() {
|
|
return {
|
|
busy: false,
|
|
yieldMultiplier: 1,
|
|
recipe: null,
|
|
showFab: false,
|
|
selectedTabIndex: 0,
|
|
}
|
|
},
|
|
computed: {
|
|
...mapState(["icon", "recipes"]),
|
|
screenWidth() {
|
|
return Screen.mainScreen.widthDIPs
|
|
},
|
|
isYieldMultiplierPositive() {
|
|
return this.yieldMultiplier && !isNaN(this.yieldMultiplier)
|
|
? parseFloat(this.yieldMultiplier)
|
|
: 1
|
|
},
|
|
isLightMode() {
|
|
return Application.systemAppearance() === "light"
|
|
},
|
|
},
|
|
methods: {
|
|
...mapActions(["toggleStateAction", "setCurrentComponentAction"]),
|
|
onPageLoad() {
|
|
this.releaseGlobalBackEvent()
|
|
this.busy = false
|
|
setTimeout((e) => {
|
|
this.setCurrentComponentAction("ViewRecipe")
|
|
}, 500)
|
|
this.yieldMultiplier = this.recipe.yield.quantity
|
|
this.showFab = true
|
|
this.keepScreenOn(true)
|
|
},
|
|
onPageUnload() {
|
|
feedback.hide()
|
|
this.keepScreenOn(false)
|
|
},
|
|
|
|
// HELPERS
|
|
niceDates(time) {
|
|
let lastTried = new Date(time).getTime()
|
|
let now = new Date().getTime()
|
|
let midnight = new Date().setHours(0, 0, 0, 0)
|
|
let diff = (now - lastTried) / 1000
|
|
let dayDiff = Math.ceil(diff / 86400)
|
|
if (isNaN(dayDiff) || dayDiff < 0) return ""
|
|
return (
|
|
(diff < 86400 && lastTried > midnight && "today") ||
|
|
(dayDiff == 1 && "yesterday") ||
|
|
(dayDiff < 7 && dayDiff + " days ago") ||
|
|
(dayDiff < 31 && Math.round(dayDiff / 7) + " week(s) ago") ||
|
|
(dayDiff < 366 && Math.round(dayDiff / 30) + " month(s) ago") ||
|
|
(dayDiff > 365 && "long time ago")
|
|
)
|
|
},
|
|
selectedIndexChange(args) {
|
|
this.selectedTabIndex = args.object.selectedIndex
|
|
},
|
|
showLastTried() {
|
|
feedback.show({
|
|
title: `You tried this recipe ${this.niceDates(
|
|
this.recipe.lastTried
|
|
)}!`,
|
|
titleColor: new Color(`${this.isLightMode ? "#f1f3f5" : "#212529"}`),
|
|
backgroundColor: new Color("#ff5200"),
|
|
})
|
|
},
|
|
roundedQuantity(quantity) {
|
|
return (
|
|
Math.round(
|
|
(quantity / this.recipe.yield.quantity) *
|
|
this.isYieldMultiplierPositive *
|
|
100
|
|
) / 100
|
|
)
|
|
},
|
|
keepScreenOn(boolean) {
|
|
let activity =
|
|
Application.android.foregroundActivity ||
|
|
Application.android.startActivity
|
|
let window = activity.getWindow()
|
|
if (boolean)
|
|
window.addFlags(
|
|
android.view.WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON
|
|
)
|
|
else
|
|
window.clearFlags(
|
|
android.view.WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON
|
|
)
|
|
},
|
|
formattedTime(time) {
|
|
let t = time.split(":")
|
|
let h = parseInt(t[0])
|
|
let m = parseInt(t[1])
|
|
return h ? (m ? `${h}h ${m}m` : `${h}h`) : `${m}m`
|
|
},
|
|
isValidURL(string) {
|
|
let pattern = new RegExp("^https?|www", "ig")
|
|
return pattern.test(string)
|
|
},
|
|
|
|
// NAVIGATION HANDLERS
|
|
editRecipe() {
|
|
this.showFab = false
|
|
this.busy = true
|
|
this.$navigateTo(EditRecipe, {
|
|
// transition: {
|
|
// name: "slide",
|
|
// duration: 250,
|
|
// curve: "easeOut",
|
|
// },
|
|
props: {
|
|
recipeIndex: this.recipeIndex,
|
|
recipeID: this.recipeID,
|
|
},
|
|
// backstackVisible: false,
|
|
})
|
|
},
|
|
|
|
// SHARE ACTION
|
|
shareHandler() {
|
|
if (this.recipe.imageSrc) {
|
|
this.$showModal(ShareChooser, {
|
|
props: {
|
|
title: "Share",
|
|
},
|
|
}).then((result) => {
|
|
switch (result) {
|
|
case "photo":
|
|
// let cacheFilePath = path.join(
|
|
// knownFolders.temp().path,
|
|
// `${this.recipe.title}.jpg`
|
|
// )
|
|
// if (!File.exists(cacheFilePath)) {
|
|
// File.fromPath(cacheFilePath).writeSync(
|
|
// File.fromPath(this.recipe.imageSrc).readSync()
|
|
// )
|
|
// }
|
|
// let shareFile = new ShareFile()
|
|
// shareFile.open({
|
|
// path: cacheFilePath,
|
|
// title: "Share recipe photo using",
|
|
// })
|
|
ImageSource.fromFile(this.recipe.imageSrc).then((res) => {
|
|
SocialShare.shareImage(res, "Share recipe photo using")
|
|
})
|
|
break
|
|
case "recipe":
|
|
this.shareRecipe()
|
|
break
|
|
|
|
default:
|
|
break
|
|
}
|
|
})
|
|
} else {
|
|
this.shareRecipe()
|
|
}
|
|
},
|
|
shareRecipe() {
|
|
let overview = `${
|
|
this.recipe.title
|
|
}\n\nTime required: ${this.formattedTime(this.recipe.timeRequired)}\n`
|
|
let shareContent = overview
|
|
if (this.recipe.ingredients.length) {
|
|
let ingredients = `\n\nIngredients for ${
|
|
this.yieldMultiplier
|
|
} ${this.recipe.yield.unit.toLowerCase()}\n\n`
|
|
this.recipe.ingredients.forEach((e) => {
|
|
ingredients += `- ${
|
|
e.quantity
|
|
? this.roundedQuantity(e.quantity) + " " + e.unit + " "
|
|
: ""
|
|
}${e.item}\n`
|
|
})
|
|
shareContent += ingredients
|
|
}
|
|
if (this.recipe.instructions.length) {
|
|
let instructions = `\n\nInstructions:\n\n`
|
|
this.recipe.instructions.forEach((e, i) => {
|
|
instructions += `Step ${i + 1}: ${e}\n\n`
|
|
})
|
|
shareContent += instructions
|
|
}
|
|
if (this.recipe.notes.length) {
|
|
let notes = `\nNotes:\n\n`
|
|
this.recipe.notes.forEach((e, i) => {
|
|
notes += `${i + 1}. ${e}\n\n`
|
|
})
|
|
shareContent += notes
|
|
}
|
|
if (this.recipe.references.length) {
|
|
let references = `\nReferences:\n\n`
|
|
this.recipe.references.forEach((e, i) => {
|
|
references += `${i + 1}. ${e}\n\n`
|
|
})
|
|
shareContent += references
|
|
}
|
|
let sharenote =
|
|
"\nCreated and shared via EnRecipes.\nGet it on F-Droid."
|
|
|
|
shareContent += sharenote
|
|
|
|
SocialShare.shareText(shareContent, "Share recipe using")
|
|
},
|
|
|
|
// DATA HANDLERS
|
|
toggle(key, setDate) {
|
|
this.toggleStateAction({
|
|
index: this.recipeIndex,
|
|
id: this.recipeID,
|
|
recipe: this.recipe,
|
|
key,
|
|
setDate,
|
|
})
|
|
},
|
|
toggleFavorite() {
|
|
this.recipe.isFavorite
|
|
? Toast.makeText("Removed from Favorites").show()
|
|
: Toast.makeText("Added to Favorites").show()
|
|
this.toggle("isFavorite")
|
|
},
|
|
toggleTrylater() {
|
|
this.recipe.tried
|
|
? this.filterTrylater
|
|
? Toast.makeText("Added back to Try later").show()
|
|
: Toast.makeText("Added to Try later").show()
|
|
: this.filterTrylater
|
|
? Toast.makeText("You tried this recipe").show()
|
|
: Toast.makeText("Removed from Try later").show()
|
|
this.toggle("tried")
|
|
},
|
|
recipeTried() {
|
|
this.toggle("tried", true)
|
|
this.$navigateBack()
|
|
},
|
|
|
|
// URL ACTION
|
|
openURL(url) {
|
|
Utils.openUrl(url)
|
|
},
|
|
copyURL(url) {
|
|
setText(url).then((e) => {
|
|
Toast.makeText("URL Copied").show()
|
|
})
|
|
},
|
|
},
|
|
created() {
|
|
this.recipe = this.recipes.filter((e) => e.id === this.recipeID)[0]
|
|
},
|
|
mounted() {
|
|
this.showFab = true
|
|
setTimeout(
|
|
(e) => this.recipe.tried && this.recipe.lastTried && this.showLastTried(),
|
|
500
|
|
)
|
|
},
|
|
}
|
|
</script>
|