mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-11-04 03:03:18 -05:00 
			
		
		
		
	* update naming * refactor tests to use shared structure * shorten names * add tools test case * refactor to support multi-tenant * set group_id on creation * initial refactor for multitenant tags/cats * spelling * additional test case for same valued resources * fix recipe update tests * apply indexes to foreign keys * fix performance regressions * handle unknown exception * utility decorator for function debugging * migrate recipe_id to UUID * GUID for recipes * remove unused import * move image functions into package * move utilities to packages dir * update import * linter * image image and asset routes * update assets and images to use UUIDs * fix migration base * image asset test coverage * use ids for categories and tag crud functions * refactor recipe organizer test suite to reduce duplication * add uuid serlization utility * organizer base router * slug routes testing and fixes * fix postgres error * adopt UUIDs * move tags, categories, and tools under "organizers" umbrella * update composite label * generate ts types * fix import error * update frontend types * fix type errors * fix postgres errors * fix #978 * add null check for title validation * add note in docs on multi-tenancy
		
			
				
	
	
		
			350 lines
		
	
	
		
			9.2 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			350 lines
		
	
	
		
			9.2 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <div class="text-center">
 | 
						|
    <!-- Recipe Share Dialog -->
 | 
						|
    <RecipeDialogShare v-model="shareDialog" :recipe-id="recipeId" :name="name" />
 | 
						|
    <BaseDialog
 | 
						|
      v-model="recipeDeleteDialog"
 | 
						|
      :title="$t('recipe.delete-recipe')"
 | 
						|
      color="error"
 | 
						|
      :icon="$globals.icons.alertCircle"
 | 
						|
      @confirm="deleteRecipe()"
 | 
						|
    >
 | 
						|
      <v-card-text>
 | 
						|
        {{ $t("recipe.delete-confirmation") }}
 | 
						|
      </v-card-text>
 | 
						|
    </BaseDialog>
 | 
						|
    <BaseDialog
 | 
						|
      v-model="mealplannerDialog"
 | 
						|
      title="Add Recipe to Mealplan"
 | 
						|
      color="primary"
 | 
						|
      :icon="$globals.icons.calendar"
 | 
						|
      @confirm="addRecipeToPlan()"
 | 
						|
    >
 | 
						|
      <v-card-text>
 | 
						|
        <v-menu
 | 
						|
          v-model="pickerMenu"
 | 
						|
          :close-on-content-click="false"
 | 
						|
          transition="scale-transition"
 | 
						|
          offset-y
 | 
						|
          max-width="290px"
 | 
						|
          min-width="auto"
 | 
						|
        >
 | 
						|
          <template #activator="{ on, attrs }">
 | 
						|
            <v-text-field
 | 
						|
              v-model="newMealdate"
 | 
						|
              label="Date"
 | 
						|
              hint="MM/DD/YYYY format"
 | 
						|
              persistent-hint
 | 
						|
              :prepend-icon="$globals.icons.calendar"
 | 
						|
              v-bind="attrs"
 | 
						|
              readonly
 | 
						|
              v-on="on"
 | 
						|
            ></v-text-field>
 | 
						|
          </template>
 | 
						|
          <v-date-picker v-model="newMealdate" no-title @input="pickerMenu = false"></v-date-picker>
 | 
						|
        </v-menu>
 | 
						|
        <v-select v-model="newMealType" :return-object="false" :items="planTypeOptions" label="Entry Type"></v-select>
 | 
						|
      </v-card-text>
 | 
						|
    </BaseDialog>
 | 
						|
    <BaseDialog v-model="shoppingListDialog" title="Add to List" :icon="$globals.icons.cartCheck">
 | 
						|
      <v-card-text>
 | 
						|
        <v-card
 | 
						|
          v-for="list in shoppingLists"
 | 
						|
          :key="list.id"
 | 
						|
          hover
 | 
						|
          class="my-2 left-border"
 | 
						|
          @click="addRecipeToList(list.id)"
 | 
						|
        >
 | 
						|
          <v-card-title class="py-2">
 | 
						|
            {{ list.name }}
 | 
						|
          </v-card-title>
 | 
						|
        </v-card>
 | 
						|
      </v-card-text>
 | 
						|
    </BaseDialog>
 | 
						|
    <v-menu
 | 
						|
      offset-y
 | 
						|
      left
 | 
						|
      :bottom="!menuTop"
 | 
						|
      :nudge-bottom="!menuTop ? '5' : '0'"
 | 
						|
      :top="menuTop"
 | 
						|
      :nudge-top="menuTop ? '5' : '0'"
 | 
						|
      allow-overflow
 | 
						|
      close-delay="125"
 | 
						|
      open-on-hover
 | 
						|
      content-class="d-print-none"
 | 
						|
    >
 | 
						|
      <template #activator="{ on, attrs }">
 | 
						|
        <v-btn :fab="fab" :small="fab" :color="color" :icon="!fab" dark v-bind="attrs" v-on="on" @click.prevent>
 | 
						|
          <v-icon>{{ icon }}</v-icon>
 | 
						|
        </v-btn>
 | 
						|
      </template>
 | 
						|
      <v-list dense>
 | 
						|
        <v-list-item v-for="(item, index) in menuItems" :key="index" @click="contextMenuEventHandler(item.event)">
 | 
						|
          <v-list-item-icon>
 | 
						|
            <v-icon :color="item.color" v-text="item.icon"></v-icon>
 | 
						|
          </v-list-item-icon>
 | 
						|
          <v-list-item-title>{{ item.title }}</v-list-item-title>
 | 
						|
        </v-list-item>
 | 
						|
      </v-list>
 | 
						|
    </v-menu>
 | 
						|
  </div>
 | 
						|
</template>
 | 
						|
 | 
						|
<script lang="ts">
 | 
						|
import { defineComponent, reactive, toRefs, useContext, useRouter, ref } from "@nuxtjs/composition-api";
 | 
						|
import RecipeDialogShare from "./RecipeDialogShare.vue";
 | 
						|
import { useUserApi } from "~/composables/api";
 | 
						|
import { alert } from "~/composables/use-toast";
 | 
						|
import { MealType, planTypeOptions } from "~/composables/use-group-mealplan";
 | 
						|
import { ShoppingListSummary } from "~/types/api-types/group";
 | 
						|
 | 
						|
export interface ContextMenuIncludes {
 | 
						|
  delete: boolean;
 | 
						|
  edit: boolean;
 | 
						|
  download: boolean;
 | 
						|
  mealplanner: boolean;
 | 
						|
  shoppingList: boolean;
 | 
						|
  print: boolean;
 | 
						|
  share: boolean;
 | 
						|
}
 | 
						|
 | 
						|
export interface ContextMenuItem {
 | 
						|
  title: string;
 | 
						|
  icon: string;
 | 
						|
  color: string | undefined;
 | 
						|
  event: string;
 | 
						|
}
 | 
						|
 | 
						|
export default defineComponent({
 | 
						|
  components: {
 | 
						|
    RecipeDialogShare,
 | 
						|
  },
 | 
						|
  props: {
 | 
						|
    useItems: {
 | 
						|
      type: Object as () => ContextMenuIncludes,
 | 
						|
      default: () => ({
 | 
						|
        delete: true,
 | 
						|
        edit: true,
 | 
						|
        download: true,
 | 
						|
        mealplanner: true,
 | 
						|
        shoppingList: true,
 | 
						|
        print: true,
 | 
						|
        share: true,
 | 
						|
      }),
 | 
						|
    },
 | 
						|
    // Append items are added at the end of the useItems list
 | 
						|
    appendItems: {
 | 
						|
      type: Array as () => ContextMenuItem[],
 | 
						|
      default: () => [],
 | 
						|
    },
 | 
						|
    // Append items are added at the beginning of the useItems list
 | 
						|
    leadingItems: {
 | 
						|
      type: Array as () => ContextMenuItem[],
 | 
						|
      default: () => [],
 | 
						|
    },
 | 
						|
    menuTop: {
 | 
						|
      type: Boolean,
 | 
						|
      default: true,
 | 
						|
    },
 | 
						|
    fab: {
 | 
						|
      type: Boolean,
 | 
						|
      default: false,
 | 
						|
    },
 | 
						|
    color: {
 | 
						|
      type: String,
 | 
						|
      default: "primary",
 | 
						|
    },
 | 
						|
    slug: {
 | 
						|
      type: String,
 | 
						|
      required: true,
 | 
						|
    },
 | 
						|
    menuIcon: {
 | 
						|
      type: String,
 | 
						|
      default: null,
 | 
						|
    },
 | 
						|
    name: {
 | 
						|
      required: true,
 | 
						|
      type: String,
 | 
						|
    },
 | 
						|
    recipeId: {
 | 
						|
      required: true,
 | 
						|
      type: String,
 | 
						|
    },
 | 
						|
  },
 | 
						|
  setup(props, context) {
 | 
						|
    const api = useUserApi();
 | 
						|
 | 
						|
    const state = reactive({
 | 
						|
      shareDialog: false,
 | 
						|
      recipeDeleteDialog: false,
 | 
						|
      mealplannerDialog: false,
 | 
						|
      shoppingListDialog: false,
 | 
						|
      loading: false,
 | 
						|
      menuItems: [] as ContextMenuItem[],
 | 
						|
      newMealdate: "",
 | 
						|
      newMealType: "dinner" as MealType,
 | 
						|
      pickerMenu: false,
 | 
						|
    });
 | 
						|
 | 
						|
    const { i18n, $globals } = useContext();
 | 
						|
 | 
						|
    // ===========================================================================
 | 
						|
    // Context Menu Setup
 | 
						|
 | 
						|
    const defaultItems: { [key: string]: ContextMenuItem } = {
 | 
						|
      edit: {
 | 
						|
        title: i18n.t("general.edit") as string,
 | 
						|
        icon: $globals.icons.edit,
 | 
						|
        color: undefined,
 | 
						|
        event: "edit",
 | 
						|
      },
 | 
						|
      delete: {
 | 
						|
        title: i18n.t("general.delete") as string,
 | 
						|
        icon: $globals.icons.delete,
 | 
						|
        color: "error",
 | 
						|
        event: "delete",
 | 
						|
      },
 | 
						|
      download: {
 | 
						|
        title: i18n.t("general.download") as string,
 | 
						|
        icon: $globals.icons.download,
 | 
						|
        color: undefined,
 | 
						|
        event: "download",
 | 
						|
      },
 | 
						|
      mealplanner: {
 | 
						|
        title: "Add to Plan",
 | 
						|
        icon: $globals.icons.calendar,
 | 
						|
        color: undefined,
 | 
						|
        event: "mealplanner",
 | 
						|
      },
 | 
						|
      shoppingList: {
 | 
						|
        title: "Add to List",
 | 
						|
        icon: $globals.icons.cartCheck,
 | 
						|
        color: undefined,
 | 
						|
        event: "shoppingList",
 | 
						|
      },
 | 
						|
      print: {
 | 
						|
        title: i18n.t("general.print") as string,
 | 
						|
        icon: $globals.icons.printer,
 | 
						|
        color: undefined,
 | 
						|
        event: "print",
 | 
						|
      },
 | 
						|
      share: {
 | 
						|
        title: i18n.t("general.share") as string,
 | 
						|
        icon: $globals.icons.shareVariant,
 | 
						|
        color: undefined,
 | 
						|
        event: "share",
 | 
						|
      },
 | 
						|
    };
 | 
						|
 | 
						|
    // Get Default Menu Items Specified in Props
 | 
						|
    for (const [key, value] of Object.entries(props.useItems)) {
 | 
						|
      if (value) {
 | 
						|
        const item = defaultItems[key];
 | 
						|
        if (item) {
 | 
						|
          state.menuItems.push(item);
 | 
						|
        }
 | 
						|
      }
 | 
						|
    }
 | 
						|
 | 
						|
    // Add leading and Apppending Items
 | 
						|
    state.menuItems = [...state.menuItems, ...props.leadingItems, ...props.appendItems];
 | 
						|
 | 
						|
    const icon = props.menuIcon || $globals.icons.dotsVertical;
 | 
						|
 | 
						|
    // ===========================================================================
 | 
						|
    // Context Menu Event Handler
 | 
						|
 | 
						|
    const shoppingLists = ref<ShoppingListSummary[]>();
 | 
						|
 | 
						|
    async function getShoppingLists() {
 | 
						|
      const { data } = await api.shopping.lists.getAll();
 | 
						|
      if (data) {
 | 
						|
        shoppingLists.value = data;
 | 
						|
      }
 | 
						|
    }
 | 
						|
 | 
						|
    async function addRecipeToList(listId: string) {
 | 
						|
      const { data } = await api.shopping.lists.addRecipe(listId, props.recipeId);
 | 
						|
      if (data) {
 | 
						|
        alert.success("Recipe added to list");
 | 
						|
        state.shoppingListDialog = false;
 | 
						|
      }
 | 
						|
    }
 | 
						|
 | 
						|
    const router = useRouter();
 | 
						|
 | 
						|
    async function deleteRecipe() {
 | 
						|
      await api.recipes.deleteOne(props.slug);
 | 
						|
      context.emit("delete", props.slug);
 | 
						|
    }
 | 
						|
 | 
						|
    async function handleDownloadEvent() {
 | 
						|
      const { data } = await api.recipes.getZipToken(props.slug);
 | 
						|
 | 
						|
      if (data) {
 | 
						|
        window.open(api.recipes.getZipRedirectUrl(props.slug, data.token));
 | 
						|
      }
 | 
						|
    }
 | 
						|
 | 
						|
    async function addRecipeToPlan() {
 | 
						|
      const { response } = await api.mealplans.createOne({
 | 
						|
        date: state.newMealdate,
 | 
						|
        entryType: state.newMealType,
 | 
						|
        title: "",
 | 
						|
        text: "",
 | 
						|
        recipeId: props.recipeId,
 | 
						|
      });
 | 
						|
 | 
						|
      if (response?.status === 201) {
 | 
						|
        alert.success("Recipe added to mealplan");
 | 
						|
      } else {
 | 
						|
        alert.error("Failed to add recipe to mealplan");
 | 
						|
      }
 | 
						|
    }
 | 
						|
 | 
						|
    // Note: Print is handled as an event in the parent component
 | 
						|
    const eventHandlers: { [key: string]: () => void } = {
 | 
						|
      delete: () => {
 | 
						|
        state.recipeDeleteDialog = true;
 | 
						|
      },
 | 
						|
      edit: () => router.push(`/recipe/${props.slug}` + "?edit=true"),
 | 
						|
      download: handleDownloadEvent,
 | 
						|
      mealplanner: () => {
 | 
						|
        state.mealplannerDialog = true;
 | 
						|
      },
 | 
						|
      shoppingList: () => {
 | 
						|
        getShoppingLists();
 | 
						|
        state.shoppingListDialog = true;
 | 
						|
      },
 | 
						|
      share: () => {
 | 
						|
        state.shareDialog = true;
 | 
						|
      },
 | 
						|
    };
 | 
						|
 | 
						|
    function contextMenuEventHandler(eventKey: string) {
 | 
						|
      const handler = eventHandlers[eventKey];
 | 
						|
 | 
						|
      if (handler && typeof handler === "function") {
 | 
						|
        handler();
 | 
						|
        state.loading = false;
 | 
						|
        return;
 | 
						|
      }
 | 
						|
 | 
						|
      context.emit(eventKey);
 | 
						|
      state.loading = false;
 | 
						|
    }
 | 
						|
 | 
						|
    return {
 | 
						|
      shoppingLists,
 | 
						|
      addRecipeToList,
 | 
						|
      ...toRefs(state),
 | 
						|
      contextMenuEventHandler,
 | 
						|
      deleteRecipe,
 | 
						|
      addRecipeToPlan,
 | 
						|
      icon,
 | 
						|
      planTypeOptions,
 | 
						|
    };
 | 
						|
  },
 | 
						|
});
 | 
						|
</script>
 |