mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-11-03 18:53:17 -05:00 
			
		
		
		
	Co-authored-by: Michael Genson <71845777+michael-genson@users.noreply.github.com> Co-authored-by: Kuchenpirat <24235032+Kuchenpirat@users.noreply.github.com>
		
			
				
	
	
		
			117 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			117 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <div>
 | 
						|
    <RecipePageInfoCard
 | 
						|
      :recipe="recipe"
 | 
						|
      :recipe-scale="recipeScale"
 | 
						|
      :landscape="landscape"
 | 
						|
    />
 | 
						|
    <v-divider />
 | 
						|
    <RecipeActionMenu
 | 
						|
      :recipe="recipe"
 | 
						|
      :slug="recipe.slug"
 | 
						|
      :recipe-scale="recipeScale"
 | 
						|
      :can-edit="canEditRecipe"
 | 
						|
      :name="recipe.name"
 | 
						|
      :logged-in="isOwnGroup"
 | 
						|
      :open="isEditMode"
 | 
						|
      :recipe-id="recipe.id"
 | 
						|
      class="ml-auto mt-n7 pb-4"
 | 
						|
      @close="setMode(PageMode.VIEW)"
 | 
						|
      @json="toggleEditMode()"
 | 
						|
      @edit="setMode(PageMode.EDIT)"
 | 
						|
      @save="$emit('save')"
 | 
						|
      @delete="$emit('delete')"
 | 
						|
      @print="printRecipe"
 | 
						|
    />
 | 
						|
  </div>
 | 
						|
</template>
 | 
						|
 | 
						|
<script lang="ts">
 | 
						|
import { useLoggedInState } from "~/composables/use-logged-in-state";
 | 
						|
import { useRecipePermissions } from "~/composables/recipes";
 | 
						|
import RecipePageInfoCard from "~/components/Domain/Recipe/RecipePage/RecipePageParts/RecipePageInfoCard.vue";
 | 
						|
import RecipeActionMenu from "~/components/Domain/Recipe/RecipeActionMenu.vue";
 | 
						|
import { useStaticRoutes, useUserApi } from "~/composables/api";
 | 
						|
import type { HouseholdSummary } from "~/lib/api/types/household";
 | 
						|
import type { Recipe } from "~/lib/api/types/recipe";
 | 
						|
import type { NoUndefinedField } from "~/lib/api/types/non-generated";
 | 
						|
import { usePageState, usePageUser, PageMode, EditorMode } from "~/composables/recipe-page/shared-state";
 | 
						|
 | 
						|
export default defineNuxtComponent({
 | 
						|
  components: {
 | 
						|
    RecipePageInfoCard,
 | 
						|
    RecipeActionMenu,
 | 
						|
  },
 | 
						|
  props: {
 | 
						|
    recipe: {
 | 
						|
      type: Object as () => NoUndefinedField<Recipe>,
 | 
						|
      required: true,
 | 
						|
    },
 | 
						|
    recipeScale: {
 | 
						|
      type: Number,
 | 
						|
      default: 1,
 | 
						|
    },
 | 
						|
    landscape: {
 | 
						|
      type: Boolean,
 | 
						|
      default: false,
 | 
						|
    },
 | 
						|
  },
 | 
						|
  emits: ["save", "delete"],
 | 
						|
  setup(props) {
 | 
						|
    const { $vuetify } = useNuxtApp();
 | 
						|
    const { recipeImage } = useStaticRoutes();
 | 
						|
    const { imageKey, pageMode, editMode, setMode, toggleEditMode, isEditMode } = usePageState(props.recipe.slug);
 | 
						|
    const { user } = usePageUser();
 | 
						|
    const { isOwnGroup } = useLoggedInState();
 | 
						|
 | 
						|
    const recipeHousehold = ref<HouseholdSummary>();
 | 
						|
    if (user) {
 | 
						|
      const userApi = useUserApi();
 | 
						|
      userApi.households.getOne(props.recipe.householdId).then(({ data }) => {
 | 
						|
        recipeHousehold.value = data || undefined;
 | 
						|
      });
 | 
						|
    }
 | 
						|
    const { canEditRecipe } = useRecipePermissions(props.recipe, recipeHousehold, user);
 | 
						|
 | 
						|
    function printRecipe() {
 | 
						|
      window.print();
 | 
						|
    }
 | 
						|
 | 
						|
    const hideImage = ref(false);
 | 
						|
    const imageHeight = computed(() => {
 | 
						|
      return $vuetify.display.xs.value ? "200" : "400";
 | 
						|
    });
 | 
						|
 | 
						|
    const recipeImageUrl = computed(() => {
 | 
						|
      return recipeImage(props.recipe.id, props.recipe.image, imageKey.value);
 | 
						|
    });
 | 
						|
 | 
						|
    watch(
 | 
						|
      () => recipeImageUrl.value,
 | 
						|
      () => {
 | 
						|
        hideImage.value = false;
 | 
						|
      },
 | 
						|
    );
 | 
						|
 | 
						|
    return {
 | 
						|
      isOwnGroup,
 | 
						|
      setMode,
 | 
						|
      toggleEditMode,
 | 
						|
      recipeImage,
 | 
						|
      canEditRecipe,
 | 
						|
      imageKey,
 | 
						|
      user,
 | 
						|
      PageMode,
 | 
						|
      pageMode,
 | 
						|
      EditorMode,
 | 
						|
      editMode,
 | 
						|
      printRecipe,
 | 
						|
      imageHeight,
 | 
						|
      hideImage,
 | 
						|
      isEditMode,
 | 
						|
      recipeImageUrl,
 | 
						|
    };
 | 
						|
  },
 | 
						|
});
 | 
						|
</script>
 |