mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-11-03 18:53:17 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			108 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			108 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <div v-if="valueNotNull || edit">
 | 
						|
    <v-card class="mt-2">
 | 
						|
      <v-card-title class="pt-2 pb-0">
 | 
						|
        {{ $t("recipe.nutrition") }}
 | 
						|
      </v-card-title>
 | 
						|
      <v-divider class="mx-2 my-1" />
 | 
						|
      <v-card-text v-if="edit">
 | 
						|
        <div
 | 
						|
          v-for="(item, key, index) in modelValue"
 | 
						|
          :key="index"
 | 
						|
        >
 | 
						|
          <v-text-field
 | 
						|
            density="compact"
 | 
						|
            :model-value="modelValue[key]"
 | 
						|
            :label="labels[key].label"
 | 
						|
            :suffix="labels[key].suffix"
 | 
						|
            type="number"
 | 
						|
            autocomplete="off"
 | 
						|
            variant="underlined"
 | 
						|
            @update:model-value="updateValue(key, $event)"
 | 
						|
          />
 | 
						|
        </div>
 | 
						|
      </v-card-text>
 | 
						|
      <v-list
 | 
						|
        v-if="showViewer"
 | 
						|
        density="compact"
 | 
						|
        class="mt-0 pt-0"
 | 
						|
      >
 | 
						|
        <v-list-item
 | 
						|
          v-for="(item, key, index) in renderedList"
 | 
						|
          :key="index"
 | 
						|
          style="min-height: 25px"
 | 
						|
        >
 | 
						|
          <v-list-item-title class="pl-2 d-flex">
 | 
						|
            <div>{{ item.label }}</div>
 | 
						|
            <div class="ml-auto mr-1">
 | 
						|
              {{ item.value }}
 | 
						|
            </div>
 | 
						|
            <div>{{ item.suffix }}</div>
 | 
						|
          </v-list-item-title>
 | 
						|
        </v-list-item>
 | 
						|
      </v-list>
 | 
						|
    </v-card>
 | 
						|
  </div>
 | 
						|
</template>
 | 
						|
 | 
						|
<script lang="ts">
 | 
						|
import { useNutritionLabels } from "~/composables/recipes";
 | 
						|
import type { Nutrition } from "~/lib/api/types/recipe";
 | 
						|
import type { NutritionLabelType } from "~/composables/recipes/use-recipe-nutrition";
 | 
						|
 | 
						|
export default defineNuxtComponent({
 | 
						|
  props: {
 | 
						|
    modelValue: {
 | 
						|
      type: Object as () => Nutrition,
 | 
						|
      required: true,
 | 
						|
    },
 | 
						|
    edit: {
 | 
						|
      type: Boolean,
 | 
						|
      default: true,
 | 
						|
    },
 | 
						|
  },
 | 
						|
  emits: ["update:modelValue"],
 | 
						|
  setup(props, context) {
 | 
						|
    const { labels } = useNutritionLabels();
 | 
						|
    const valueNotNull = computed(() => {
 | 
						|
      let key: keyof Nutrition;
 | 
						|
      for (key in props.modelValue) {
 | 
						|
        if (props.modelValue[key] !== null) {
 | 
						|
          return true;
 | 
						|
        }
 | 
						|
      }
 | 
						|
      return false;
 | 
						|
    });
 | 
						|
 | 
						|
    const showViewer = computed(() => !props.edit && valueNotNull.value);
 | 
						|
 | 
						|
    function updateValue(key: number | string, event: Event) {
 | 
						|
      context.emit("update:modelValue", { ...props.modelValue, [key]: event });
 | 
						|
    }
 | 
						|
 | 
						|
    // Build a new list that only contains nutritional information that has a value
 | 
						|
    const renderedList = computed(() => {
 | 
						|
      return Object.entries(labels).reduce((item: NutritionLabelType, [key, label]) => {
 | 
						|
        if (props.modelValue[key]?.trim()) {
 | 
						|
          item[key] = {
 | 
						|
            ...label,
 | 
						|
            value: props.modelValue[key],
 | 
						|
          };
 | 
						|
        }
 | 
						|
        return item;
 | 
						|
      }, {});
 | 
						|
    });
 | 
						|
 | 
						|
    return {
 | 
						|
      labels,
 | 
						|
      valueNotNull,
 | 
						|
      showViewer,
 | 
						|
      updateValue,
 | 
						|
      renderedList,
 | 
						|
    };
 | 
						|
  },
 | 
						|
});
 | 
						|
</script>
 | 
						|
 | 
						|
<style lang="scss" scoped></style>
 |