mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-11-03 18:53:17 -05:00 
			
		
		
		
	* add groupSlug to most routes * fixed more routing issues * fixed jank and incorrect routes * remove public explore links * remove unused groupSlug and explore routes * nuked explore pages * fixed public toolstore bug * fixed various routes missing group slug * restored public app header menu * fix janky login redirect * 404 recipe API call returns to login * removed unused explore layout * force redirect when using the wrong group slug * fixed dead admin links * removed unused middleware from earlier attempt * 🧹 * improve cookbooks sidebar fixed sidebar link not working fixed sidebar link target hide cookbooks header when there are none * added group slug to user * fix $auth typehints * vastly simplified groupSlug logic * allow logged-in users to view other groups * fixed some edgecases that bypassed isOwnGroup * fixed static home ref * 🧹 * fixed redirect logic * lint warning * removed group slug from group and user pages refactored all components to use route groupSlug or user group slug moved some group pages to recipe pages * fixed some bad types * 🧹 * moved groupSlug routes under /g/groupSlug * move /recipe/ to /r/ * fix backend url generation and metadata injection * moved shopping lists to root/other route fixes * changed shared from /recipes/ to /r/ * fixed 404 redirect not awaiting * removed unused import * fix doc links * fix public recipe setting not affecting public API * fixed backend tests * fix nuxt-generate command --------- Co-authored-by: Hayden <64056131+hay-kot@users.noreply.github.com>
		
			
				
	
	
		
			93 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			93 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <div>
 | 
						|
    <template v-if="!isEditMode && landscape">
 | 
						|
      <v-card-title class="px-0 py-2 ma-0 headline">
 | 
						|
        {{ recipe.name }}
 | 
						|
      </v-card-title>
 | 
						|
      <SafeMarkdown :source="recipe.description" />
 | 
						|
      <div v-if="isOwnGroup" class="pb-2 d-flex justify-center flex-wrap">
 | 
						|
        <RecipeLastMade
 | 
						|
          v-model="recipe.lastMade"
 | 
						|
          :recipe="recipe"
 | 
						|
          class="d-flex justify-center flex-wrap"
 | 
						|
          :class="true ? undefined : 'force-bottom'"
 | 
						|
        />
 | 
						|
      </div>
 | 
						|
      <div class="pb-2 d-flex justify-center flex-wrap">
 | 
						|
        <RecipeTimeCard
 | 
						|
          class="d-flex justify-center flex-wrap"
 | 
						|
          :prep-time="recipe.prepTime"
 | 
						|
          :total-time="recipe.totalTime"
 | 
						|
          :perform-time="recipe.performTime"
 | 
						|
        />
 | 
						|
        <RecipeRating
 | 
						|
          v-if="$vuetify.breakpoint.smAndDown"
 | 
						|
          :key="recipe.slug"
 | 
						|
          v-model="recipe.rating"
 | 
						|
          :name="recipe.name"
 | 
						|
          :slug="recipe.slug"
 | 
						|
        />
 | 
						|
      </div>
 | 
						|
      <v-divider></v-divider>
 | 
						|
    </template>
 | 
						|
    <template v-else-if="isEditMode">
 | 
						|
      <v-text-field
 | 
						|
        v-model="recipe.name"
 | 
						|
        class="my-3"
 | 
						|
        :label="$t('recipe.recipe-name')"
 | 
						|
        :rules="[validators.required]"
 | 
						|
      />
 | 
						|
      <v-text-field v-model="recipe.recipeYield" dense :label="$t('recipe.servings')" />
 | 
						|
      <div class="d-flex flex-wrap" style="gap: 1rem">
 | 
						|
        <v-text-field v-model="recipe.totalTime" :label="$t('recipe.total-time')" />
 | 
						|
        <v-text-field v-model="recipe.prepTime" :label="$t('recipe.prep-time')" />
 | 
						|
        <v-text-field v-model="recipe.performTime" :label="$t('recipe.perform-time')" />
 | 
						|
      </div>
 | 
						|
      <v-textarea v-model="recipe.description" auto-grow min-height="100" :label="$t('recipe.description')" />
 | 
						|
    </template>
 | 
						|
  </div>
 | 
						|
</template>
 | 
						|
 | 
						|
<script lang="ts">
 | 
						|
import { defineComponent } from "@nuxtjs/composition-api";
 | 
						|
import { useLoggedInState } from "~/composables/use-logged-in-state";
 | 
						|
import { usePageState, usePageUser } from "~/composables/recipe-page/shared-state";
 | 
						|
import { validators } from "~/composables/use-validators";
 | 
						|
import { NoUndefinedField } from "~/lib/api/types/non-generated";
 | 
						|
import { Recipe } from "~/lib/api/types/recipe";
 | 
						|
import RecipeRating from "~/components/Domain/Recipe/RecipeRating.vue";
 | 
						|
import RecipeTimeCard from "~/components/Domain/Recipe/RecipeTimeCard.vue";
 | 
						|
import RecipeLastMade from "~/components/Domain/Recipe/RecipeLastMade.vue";
 | 
						|
 | 
						|
export default defineComponent({
 | 
						|
  components: {
 | 
						|
    RecipeRating,
 | 
						|
    RecipeTimeCard,
 | 
						|
    RecipeLastMade,
 | 
						|
  },
 | 
						|
  props: {
 | 
						|
    recipe: {
 | 
						|
      type: Object as () => NoUndefinedField<Recipe>,
 | 
						|
      required: true,
 | 
						|
    },
 | 
						|
    landscape: {
 | 
						|
      type: Boolean,
 | 
						|
      default: false,
 | 
						|
    },
 | 
						|
  },
 | 
						|
  setup(props) {
 | 
						|
    const { user } = usePageUser();
 | 
						|
    const { imageKey, isEditMode } = usePageState(props.recipe.slug);
 | 
						|
    const { isOwnGroup } = useLoggedInState();
 | 
						|
 | 
						|
    return {
 | 
						|
      user,
 | 
						|
      imageKey,
 | 
						|
      validators,
 | 
						|
      isEditMode,
 | 
						|
      isOwnGroup,
 | 
						|
    };
 | 
						|
  },
 | 
						|
});
 | 
						|
</script>
 |