337 lines
13 KiB
Vue
337 lines
13 KiB
Vue
<template>
|
|
<div id="app">
|
|
<template v-if="loading">
|
|
<loading-spinner></loading-spinner>
|
|
</template>
|
|
|
|
<div v-if="!loading">
|
|
<RecipeSwitcher ref="ref_recipe_switcher" @switch="quickSwitch($event)"/>
|
|
<div class="row">
|
|
<div class="col-12" style="text-align: center">
|
|
<h3>{{ recipe.name }}</h3>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row text-center">
|
|
<div class="col col-md-12">
|
|
<recipe-rating :recipe="recipe"></recipe-rating>
|
|
<last-cooked :recipe="recipe" class="mt-2"></last-cooked>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="my-auto">
|
|
<div class="col-12" style="text-align: center">
|
|
<i>{{ recipe.description }}</i>
|
|
</div>
|
|
</div>
|
|
|
|
<div style="text-align: center">
|
|
<keywords-component :recipe="recipe"></keywords-component>
|
|
</div>
|
|
|
|
<hr/>
|
|
<div class="row align-items-center">
|
|
<div class="col col-md-3">
|
|
<div class="d-flex">
|
|
<div class="my-auto mr-1">
|
|
<i class="fas fa-fw fa-user-clock fa-2x text-primary"></i>
|
|
</div>
|
|
<div class="my-auto mr-1">
|
|
<span class="text-primary"><b>{{ $t("Preparation") }}</b></span><br/>
|
|
{{ recipe.working_time }} {{ $t("min") }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col col-md-3">
|
|
<div class="row d-flex">
|
|
<div class="my-auto mr-1">
|
|
<i class="far fa-fw fa-clock fa-2x text-primary"></i>
|
|
</div>
|
|
<div class="my-auto mr-1">
|
|
<span class="text-primary"><b>{{ $t("Waiting") }}</b></span><br/>
|
|
{{ recipe.waiting_time }} {{ $t("min") }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col col-md-4 col-10 mt-2 mt-md-0">
|
|
<div class="d-flex">
|
|
<div class="my-auto mr-1">
|
|
<i class="fas fa-fw fa-pizza-slice fa-2x text-primary"></i>
|
|
</div>
|
|
<div class="my-auto mr-1">
|
|
<CustomInputSpinButton v-model.number="servings"/>
|
|
</div>
|
|
<div class="my-auto mr-1">
|
|
<span class="text-primary">
|
|
<b>
|
|
<template v-if="recipe.servings_text === ''">{{ $t("Servings") }}</template>
|
|
<template v-else>{{ recipe.servings_text }}</template>
|
|
</b>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col col-md-2 col-2 mt-2 mt-md-0 text-right">
|
|
<recipe-context-menu v-bind:recipe="recipe" :servings="servings"></recipe-context-menu>
|
|
</div>
|
|
</div>
|
|
<hr/>
|
|
|
|
<div class="row">
|
|
<div class="col-md-6 order-md-1 col-sm-12 order-sm-2 col-12 order-2"
|
|
v-if="recipe && ingredient_count > 0 && (recipe.show_ingredient_overview || recipe.steps.length < 2)">
|
|
<ingredients-card
|
|
:recipe="recipe.id"
|
|
:steps="recipe.steps"
|
|
:ingredient_factor="ingredient_factor"
|
|
:servings="servings"
|
|
:header="true"
|
|
id="ingredient_container"
|
|
@checked-state-changed="updateIngredientCheckedState"
|
|
@change-servings="servings = $event"
|
|
/>
|
|
</div>
|
|
|
|
<div class="col-12 order-1 col-sm-12 order-sm-1 col-md-6 order-md-2">
|
|
<div class="row">
|
|
<div class="col-12">
|
|
<img class="img img-fluid rounded" :src="recipe.image" :alt="$t('Recipe_Image')"
|
|
v-if="recipe.image !== null" @load="onImgLoad"
|
|
:style="{ 'max-height': ingredient_height }"/>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row" style="margin-top: 2vh; margin-bottom: 2vh">
|
|
<div class="col-12">
|
|
<Nutrition-component :recipe="recipe" id="nutrition_container"
|
|
:ingredient_factor="ingredient_factor"></Nutrition-component>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<template v-if="!recipe.internal">
|
|
<div v-if="recipe.file_path.includes('.pdf')">
|
|
<PdfViewer :recipe="recipe"></PdfViewer>
|
|
</div>
|
|
<div
|
|
v-if="recipe.file_path.includes('.png') || recipe.file_path.includes('.jpg') || recipe.file_path.includes('.jpeg') || recipe.file_path.includes('.gif')">
|
|
<ImageViewer :recipe="recipe"></ImageViewer>
|
|
</div>
|
|
</template>
|
|
|
|
<div v-for="(s, index) in recipe.steps" v-bind:key="s.id" style="margin-top: 1vh">
|
|
<step-component
|
|
:recipe="recipe"
|
|
:step="s"
|
|
:ingredient_factor="ingredient_factor"
|
|
:index="index"
|
|
:start_time="start_time"
|
|
@update-start-time="updateStartTime"
|
|
@checked-state-changed="updateIngredientCheckedState"
|
|
></step-component>
|
|
</div>
|
|
|
|
<div v-if="recipe.source_url !== null">
|
|
<h6 class="d-print-none"><i class="fas fa-file-import"></i> {{ $t("Imported_From") }}</h6>
|
|
<span class="text-muted mt-1"><a style="overflow-wrap: break-word;" :href="recipe.source_url">{{ recipe.source_url }}</a></span>
|
|
</div>
|
|
</div>
|
|
|
|
<add-recipe-to-book :recipe="recipe"></add-recipe-to-book>
|
|
|
|
<div class="row text-center d-print-none" style="margin-top: 3vh; margin-bottom: 3vh"
|
|
v-if="share_uid !== 'None'">
|
|
<div class="col col-md-12">
|
|
<a :href="resolveDjangoUrl('view_report_share_abuse', share_uid)">{{ $t("Report Abuse") }}</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Vue from "vue"
|
|
import {BootstrapVue} from "bootstrap-vue"
|
|
import "bootstrap-vue/dist/bootstrap-vue.css"
|
|
|
|
import {apiLoadRecipe} from "@/utils/api"
|
|
|
|
import RecipeContextMenu from "@/components/RecipeContextMenu"
|
|
import {ResolveUrlMixin, ToastMixin} from "@/utils/utils"
|
|
|
|
import PdfViewer from "@/components/PdfViewer"
|
|
import ImageViewer from "@/components/ImageViewer"
|
|
|
|
import moment from "moment"
|
|
import LoadingSpinner from "@/components/LoadingSpinner"
|
|
import AddRecipeToBook from "@/components/Modals/AddRecipeToBook"
|
|
import RecipeRating from "@/components/RecipeRating"
|
|
import LastCooked from "@/components/LastCooked"
|
|
import IngredientsCard from "@/components/IngredientsCard"
|
|
import StepComponent from "@/components/StepComponent"
|
|
import KeywordsComponent from "@/components/KeywordsComponent"
|
|
import NutritionComponent from "@/components/NutritionComponent"
|
|
import RecipeSwitcher from "@/components/Buttons/RecipeSwitcher"
|
|
import CustomInputSpinButton from "@/components/CustomInputSpinButton"
|
|
|
|
Vue.prototype.moment = moment
|
|
|
|
Vue.use(BootstrapVue)
|
|
|
|
export default {
|
|
name: "RecipeView",
|
|
mixins: [ResolveUrlMixin, ToastMixin],
|
|
components: {
|
|
LastCooked,
|
|
RecipeRating,
|
|
PdfViewer,
|
|
ImageViewer,
|
|
IngredientsCard,
|
|
StepComponent,
|
|
RecipeContextMenu,
|
|
NutritionComponent,
|
|
KeywordsComponent,
|
|
LoadingSpinner,
|
|
AddRecipeToBook,
|
|
RecipeSwitcher,
|
|
CustomInputSpinButton,
|
|
},
|
|
computed: {
|
|
ingredient_factor: function () {
|
|
return this.servings / this.recipe.servings
|
|
},
|
|
ingredient_count() {
|
|
return this.recipe?.steps.map((x) => x.ingredients).flat().length
|
|
},
|
|
},
|
|
data() {
|
|
return {
|
|
loading: true,
|
|
recipe: undefined,
|
|
rootrecipe: undefined,
|
|
servings: 1,
|
|
servings_cache: {},
|
|
start_time: "",
|
|
share_uid: window.SHARE_UID,
|
|
wake_lock: null,
|
|
ingredient_height: '250'
|
|
}
|
|
},
|
|
watch: {
|
|
servings(newVal, oldVal) {
|
|
this.servings_cache[this.recipe.id] = this.servings
|
|
},
|
|
},
|
|
mounted() {
|
|
this.loadRecipe(window.RECIPE_ID)
|
|
this.$i18n.locale = window.CUSTOM_LOCALE
|
|
this.requestWakeLock()
|
|
window.addEventListener('resize', this.handleResize);
|
|
},
|
|
beforeUnmount() {
|
|
this.destroyWakeLock()
|
|
},
|
|
methods: {
|
|
requestWakeLock: async function () {
|
|
if ('wakeLock' in navigator) {
|
|
try {
|
|
this.wake_lock = await navigator.wakeLock.request('screen')
|
|
document.addEventListener('visibilitychange', this.visibilityChange)
|
|
} catch (err) {
|
|
console.log(err)
|
|
}
|
|
}
|
|
},
|
|
handleResize: function () {
|
|
if (document.getElementById('nutrition_container') !== null) {
|
|
this.ingredient_height = document.getElementById('ingredient_container').clientHeight - document.getElementById('nutrition_container').clientHeight
|
|
} else {
|
|
this.ingredient_height = document.getElementById('ingredient_container').clientHeight
|
|
}
|
|
},
|
|
destroyWakeLock: function () {
|
|
if (this.wake_lock != null) {
|
|
this.wake_lock.release()
|
|
.then(() => {
|
|
this.wake_lock = null
|
|
});
|
|
}
|
|
|
|
document.removeEventListener('visibilitychange', this.visibilityChange)
|
|
},
|
|
visibilityChange: async function () {
|
|
if (this.wake_lock != null && document.visibilityState === 'visible') {
|
|
await this.requestWakeLock()
|
|
}
|
|
},
|
|
loadRecipe: function (recipe_id) {
|
|
apiLoadRecipe(recipe_id).then((recipe) => {
|
|
let total_time = 0
|
|
for (let step of recipe.steps) {
|
|
for (let ingredient of step.ingredients) {
|
|
this.$set(ingredient, "checked", false)
|
|
}
|
|
|
|
step.time_offset = total_time
|
|
total_time += step.time
|
|
}
|
|
|
|
// set start time only if there are any steps with timers (otherwise no timers are rendered)
|
|
if (total_time > 0) {
|
|
this.start_time = moment().format("yyyy-MM-DDTHH:mm")
|
|
}
|
|
|
|
|
|
if (recipe.image === null) this.printReady()
|
|
|
|
this.recipe = this.rootrecipe = recipe
|
|
this.servings = this.servings_cache[this.rootrecipe.id] = recipe.servings
|
|
this.loading = false
|
|
|
|
setTimeout(() => {
|
|
this.handleResize()
|
|
}, 100)
|
|
})
|
|
},
|
|
updateStartTime: function (e) {
|
|
this.start_time = e
|
|
},
|
|
updateIngredientCheckedState: function (e) {
|
|
for (let step of this.recipe.steps) {
|
|
for (let ingredient of step.ingredients) {
|
|
if (ingredient.id === e.id) {
|
|
this.$set(ingredient, "checked", !ingredient.checked)
|
|
}
|
|
}
|
|
}
|
|
},
|
|
quickSwitch: function (e) {
|
|
if (e === -1) {
|
|
this.recipe = this.rootrecipe
|
|
this.servings = this.servings_cache[this.rootrecipe?.id ?? 1]
|
|
} else {
|
|
this.recipe = e
|
|
this.servings = this.servings_cache?.[e.id] ?? e.servings
|
|
}
|
|
},
|
|
printReady: function () {
|
|
const template = document.createElement("template");
|
|
template.id = "printReady";
|
|
document.body.appendChild(template);
|
|
},
|
|
onImgLoad: function () {
|
|
this.printReady()
|
|
},
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
#app > div > div {
|
|
break-inside: avoid;
|
|
}
|
|
</style>
|