mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-11-03 18:53:17 -05:00 
			
		
		
		
	* remove head props * lazily compute itemsByLabel with watcher on fetch * remove unused import
		
			
				
	
	
		
			289 lines
		
	
	
		
			7.9 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			289 lines
		
	
	
		
			7.9 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <div>
 | 
						|
    <!-- Merge Dialog -->
 | 
						|
    <BaseDialog v-model="mergeDialog" :icon="$globals.icons.foods" title="Combine Food" @confirm="mergeFoods">
 | 
						|
      <v-card-text>
 | 
						|
        <div>
 | 
						|
          {{ $t("data-pages.foods.merge-dialog-text") }}
 | 
						|
        </div>
 | 
						|
        <v-autocomplete v-model="fromFood" return-object :items="foods" item-text="name" label="Source Food" />
 | 
						|
        <v-autocomplete v-model="toFood" return-object :items="foods" item-text="name" label="Target Food" />
 | 
						|
 | 
						|
        <template v-if="canMerge && fromFood && toFood">
 | 
						|
          <div class="text-center">
 | 
						|
            {{ $t("data-pages.foods.merge-food-example", { food1: fromFood.name, food2: toFood.name }) }}
 | 
						|
          </div>
 | 
						|
        </template>
 | 
						|
      </v-card-text>
 | 
						|
    </BaseDialog>
 | 
						|
 | 
						|
    <!-- Seed Dialog-->
 | 
						|
    <BaseDialog
 | 
						|
      v-model="seedDialog"
 | 
						|
      :icon="$globals.icons.foods"
 | 
						|
      :title="$tc('data-pages.seed-data')"
 | 
						|
      @confirm="seedDatabase"
 | 
						|
    >
 | 
						|
      <v-card-text>
 | 
						|
        <div class="pb-2">
 | 
						|
          {{ $t("data-pages.foods.seed-dialog-text") }}
 | 
						|
        </div>
 | 
						|
        <v-autocomplete
 | 
						|
          v-model="locale"
 | 
						|
          :items="locales"
 | 
						|
          item-text="name"
 | 
						|
          label="Select Language"
 | 
						|
          class="my-3"
 | 
						|
          hide-details
 | 
						|
          outlined
 | 
						|
          offset
 | 
						|
        >
 | 
						|
          <template #item="{ item }">
 | 
						|
            <v-list-item-content>
 | 
						|
              <v-list-item-title> {{ item.name }} </v-list-item-title>
 | 
						|
              <v-list-item-subtitle>
 | 
						|
                {{ item.progress }}% {{ $tc("language-dialog.translated") }}
 | 
						|
              </v-list-item-subtitle>
 | 
						|
            </v-list-item-content>
 | 
						|
          </template>
 | 
						|
        </v-autocomplete>
 | 
						|
 | 
						|
        <v-alert v-if="foods && foods.length > 0" type="error" class="mb-0 text-body-2">
 | 
						|
          {{ $t("data-pages.foods.seed-dialog-warning") }}
 | 
						|
        </v-alert>
 | 
						|
      </v-card-text>
 | 
						|
    </BaseDialog>
 | 
						|
 | 
						|
    <!-- Edit Dialog -->
 | 
						|
    <BaseDialog
 | 
						|
      v-model="editDialog"
 | 
						|
      :icon="$globals.icons.foods"
 | 
						|
      title="Edit Food"
 | 
						|
      :submit-text="$tc('general.save')"
 | 
						|
      @submit="editSaveFood"
 | 
						|
    >
 | 
						|
      <v-card-text v-if="editTarget">
 | 
						|
        <v-form ref="domCreateFoodForm">
 | 
						|
          <v-text-field v-model="editTarget.name" label="Name" :rules="[validators.required]"></v-text-field>
 | 
						|
          <v-text-field v-model="editTarget.description" label="Description"></v-text-field>
 | 
						|
          <v-autocomplete
 | 
						|
            v-model="editTarget.labelId"
 | 
						|
            clearable
 | 
						|
            :items="allLabels"
 | 
						|
            item-value="id"
 | 
						|
            item-text="name"
 | 
						|
            label="Food Label"
 | 
						|
          >
 | 
						|
          </v-autocomplete>
 | 
						|
        </v-form> </v-card-text
 | 
						|
    ></BaseDialog>
 | 
						|
 | 
						|
    <!-- Delete Dialog -->
 | 
						|
    <BaseDialog
 | 
						|
      v-model="deleteDialog"
 | 
						|
      :title="$tc('general.confirm')"
 | 
						|
      :icon="$globals.icons.alertCircle"
 | 
						|
      color="error"
 | 
						|
      @confirm="deleteFood"
 | 
						|
    >
 | 
						|
      <v-card-text>
 | 
						|
        {{ $t("general.confirm-delete-generic") }}
 | 
						|
      </v-card-text>
 | 
						|
    </BaseDialog>
 | 
						|
 | 
						|
    <!-- Recipe Data Table -->
 | 
						|
    <BaseCardSectionTitle :icon="$globals.icons.foods" section title="Food Data"> </BaseCardSectionTitle>
 | 
						|
    <CrudTable
 | 
						|
      :table-config="tableConfig"
 | 
						|
      :headers.sync="tableHeaders"
 | 
						|
      :data="foods || []"
 | 
						|
      :bulk-actions="[]"
 | 
						|
      @delete-one="deleteEventHandler"
 | 
						|
      @edit-one="editEventHandler"
 | 
						|
    >
 | 
						|
      <template #button-row>
 | 
						|
        <BaseButton @click="mergeDialog = true">
 | 
						|
          <template #icon> {{ $globals.icons.foods }} </template>
 | 
						|
          Combine
 | 
						|
        </BaseButton>
 | 
						|
      </template>
 | 
						|
      <template #item.label="{ item }">
 | 
						|
        <MultiPurposeLabel v-if="item.label" :label="item.label">
 | 
						|
          {{ item.label.name }}
 | 
						|
        </MultiPurposeLabel>
 | 
						|
      </template>
 | 
						|
      <template #button-bottom>
 | 
						|
        <BaseButton @click="seedDialog = true">
 | 
						|
          <template #icon> {{ $globals.icons.database }} </template>
 | 
						|
          Seed
 | 
						|
        </BaseButton>
 | 
						|
      </template>
 | 
						|
    </CrudTable>
 | 
						|
  </div>
 | 
						|
</template>
 | 
						|
 | 
						|
<script lang="ts">
 | 
						|
import { defineComponent, onMounted, ref } from "@nuxtjs/composition-api";
 | 
						|
import { computed } from "vue-demi";
 | 
						|
import type { LocaleObject } from "@nuxtjs/i18n";
 | 
						|
import { validators } from "~/composables/use-validators";
 | 
						|
import { useUserApi } from "~/composables/api";
 | 
						|
import { IngredientFood } from "~/types/api-types/recipe";
 | 
						|
import MultiPurposeLabel from "~/components/Domain/ShoppingList/MultiPurposeLabel.vue";
 | 
						|
import { useLocales } from "~/composables/use-locales";
 | 
						|
import { useFoodStore, useLabelStore } from "~/composables/store";
 | 
						|
 | 
						|
export default defineComponent({
 | 
						|
  components: { MultiPurposeLabel },
 | 
						|
  setup() {
 | 
						|
    const userApi = useUserApi();
 | 
						|
    const tableConfig = {
 | 
						|
      hideColumns: true,
 | 
						|
      canExport: true,
 | 
						|
    };
 | 
						|
    const tableHeaders = [
 | 
						|
      {
 | 
						|
        text: "Id",
 | 
						|
        value: "id",
 | 
						|
        show: false,
 | 
						|
      },
 | 
						|
      {
 | 
						|
        text: "Name",
 | 
						|
        value: "name",
 | 
						|
        show: true,
 | 
						|
      },
 | 
						|
      {
 | 
						|
        text: "Description",
 | 
						|
        value: "description",
 | 
						|
        show: true,
 | 
						|
      },
 | 
						|
      {
 | 
						|
        text: "Label",
 | 
						|
        value: "label",
 | 
						|
        show: true,
 | 
						|
      },
 | 
						|
    ];
 | 
						|
 | 
						|
    const foodStore = useFoodStore();
 | 
						|
 | 
						|
    // ===============================================================
 | 
						|
    // Food Editor
 | 
						|
 | 
						|
    const editDialog = ref(false);
 | 
						|
    const editTarget = ref<IngredientFood | null>(null);
 | 
						|
 | 
						|
    function editEventHandler(item: IngredientFood) {
 | 
						|
      editTarget.value = item;
 | 
						|
      editDialog.value = true;
 | 
						|
    }
 | 
						|
 | 
						|
    async function editSaveFood() {
 | 
						|
      if (!editTarget.value) {
 | 
						|
        return;
 | 
						|
      }
 | 
						|
 | 
						|
      await foodStore.actions.updateOne(editTarget.value);
 | 
						|
      editDialog.value = false;
 | 
						|
    }
 | 
						|
 | 
						|
    // ===============================================================
 | 
						|
    // Food Delete
 | 
						|
 | 
						|
    const deleteDialog = ref(false);
 | 
						|
    const deleteTarget = ref<IngredientFood | null>(null);
 | 
						|
    function deleteEventHandler(item: IngredientFood) {
 | 
						|
      deleteTarget.value = item;
 | 
						|
      deleteDialog.value = true;
 | 
						|
    }
 | 
						|
    async function deleteFood() {
 | 
						|
      if (!deleteTarget.value) {
 | 
						|
        return;
 | 
						|
      }
 | 
						|
 | 
						|
      await foodStore.actions.deleteOne(deleteTarget.value.id);
 | 
						|
      deleteDialog.value = false;
 | 
						|
    }
 | 
						|
 | 
						|
    // ============================================================
 | 
						|
    // Merge Foods
 | 
						|
 | 
						|
    const mergeDialog = ref(false);
 | 
						|
    const fromFood = ref<IngredientFood | null>(null);
 | 
						|
    const toFood = ref<IngredientFood | null>(null);
 | 
						|
 | 
						|
    const canMerge = computed(() => {
 | 
						|
      return fromFood.value && toFood.value && fromFood.value.id !== toFood.value.id;
 | 
						|
    });
 | 
						|
 | 
						|
    async function mergeFoods() {
 | 
						|
      if (!canMerge.value || !fromFood.value || !toFood.value) {
 | 
						|
        return;
 | 
						|
      }
 | 
						|
 | 
						|
      const { data } = await userApi.foods.merge(fromFood.value.id, toFood.value.id);
 | 
						|
 | 
						|
      if (data) {
 | 
						|
        foodStore.actions.refresh();
 | 
						|
      }
 | 
						|
    }
 | 
						|
 | 
						|
    // ============================================================
 | 
						|
    // Labels
 | 
						|
 | 
						|
    const { labels: allLabels } = useLabelStore();
 | 
						|
 | 
						|
    // ============================================================
 | 
						|
    // Seed
 | 
						|
 | 
						|
    const seedDialog = ref(false);
 | 
						|
    const locale = ref("");
 | 
						|
 | 
						|
    const { locales: LOCALES, locale: currentLocale, i18n } = useLocales();
 | 
						|
 | 
						|
    onMounted(() => {
 | 
						|
      locale.value = currentLocale.value;
 | 
						|
    });
 | 
						|
 | 
						|
    const locales = LOCALES.filter((locale) =>
 | 
						|
      (i18n.locales as LocaleObject[]).map((i18nLocale) => i18nLocale.code).includes(locale.value)
 | 
						|
    );
 | 
						|
 | 
						|
    async function seedDatabase() {
 | 
						|
      const { data } = await userApi.seeders.foods({ locale: locale.value });
 | 
						|
 | 
						|
      if (data) {
 | 
						|
        foodStore.actions.refresh();
 | 
						|
      }
 | 
						|
    }
 | 
						|
 | 
						|
    return {
 | 
						|
      tableConfig,
 | 
						|
      tableHeaders,
 | 
						|
      foods: foodStore.foods,
 | 
						|
      allLabels,
 | 
						|
      validators,
 | 
						|
      // Edit
 | 
						|
      editDialog,
 | 
						|
      editEventHandler,
 | 
						|
      editSaveFood,
 | 
						|
      editTarget,
 | 
						|
      // Delete
 | 
						|
      deleteEventHandler,
 | 
						|
      deleteDialog,
 | 
						|
      deleteFood,
 | 
						|
      // Merge
 | 
						|
      canMerge,
 | 
						|
      mergeFoods,
 | 
						|
      mergeDialog,
 | 
						|
      fromFood,
 | 
						|
      toFood,
 | 
						|
      // Seed Data
 | 
						|
      locale,
 | 
						|
      locales,
 | 
						|
      seedDialog,
 | 
						|
      seedDatabase,
 | 
						|
    };
 | 
						|
  },
 | 
						|
});
 | 
						|
</script>
 |