mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-11-03 10:43:40 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			92 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			92 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <v-select
 | 
						|
    v-model="selected"
 | 
						|
    :items="households"
 | 
						|
    :label="label"
 | 
						|
    :hint="description"
 | 
						|
    :persistent-hint="!!description"
 | 
						|
    item-text="name"
 | 
						|
    :multiple="multiselect"
 | 
						|
    :prepend-inner-icon="$globals.icons.household"
 | 
						|
    return-object
 | 
						|
  >
 | 
						|
    <template #selection="data">
 | 
						|
      <v-chip
 | 
						|
        :key="data.index"
 | 
						|
        class="ma-1"
 | 
						|
        :input-value="data.selected"
 | 
						|
        small
 | 
						|
        close
 | 
						|
        label
 | 
						|
        color="accent"
 | 
						|
        dark
 | 
						|
        @click:close="removeByIndex(data.index)"
 | 
						|
      >
 | 
						|
        {{ data.item.name || data.item }}
 | 
						|
      </v-chip>
 | 
						|
    </template>
 | 
						|
  </v-select>
 | 
						|
</template>
 | 
						|
 | 
						|
<script lang="ts">
 | 
						|
import { computed, defineComponent, onMounted, useContext } from "@nuxtjs/composition-api";
 | 
						|
import { useHouseholdStore } from "~/composables/store/use-household-store";
 | 
						|
 | 
						|
interface HouseholdLike {
 | 
						|
  id: string;
 | 
						|
  name: string;
 | 
						|
}
 | 
						|
 | 
						|
export default defineComponent({
 | 
						|
  props: {
 | 
						|
    value: {
 | 
						|
      type: Array as () => HouseholdLike[],
 | 
						|
      required: true,
 | 
						|
    },
 | 
						|
    multiselect: {
 | 
						|
      type: Boolean,
 | 
						|
      default: false,
 | 
						|
    },
 | 
						|
    description: {
 | 
						|
      type: String,
 | 
						|
      default: "",
 | 
						|
    },
 | 
						|
  },
 | 
						|
  setup(props, context) {
 | 
						|
    const selected = computed({
 | 
						|
      get: () => props.value,
 | 
						|
      set: (val) => {
 | 
						|
        context.emit("input", val);
 | 
						|
      },
 | 
						|
    });
 | 
						|
 | 
						|
    onMounted(() => {
 | 
						|
      if (selected.value === undefined) {
 | 
						|
        selected.value = [];
 | 
						|
      }
 | 
						|
    });
 | 
						|
 | 
						|
    const { i18n } = useContext();
 | 
						|
    const label = computed(
 | 
						|
      () => props.multiselect ? i18n.tc("household.households") : i18n.tc("household.household")
 | 
						|
    );
 | 
						|
 | 
						|
    const { store: households } = useHouseholdStore();
 | 
						|
    function removeByIndex(index: number) {
 | 
						|
      if (selected.value === undefined) {
 | 
						|
        return;
 | 
						|
      }
 | 
						|
      const newSelected = selected.value.filter((_, i) => i !== index);
 | 
						|
      selected.value = [...newSelected];
 | 
						|
    }
 | 
						|
 | 
						|
    return {
 | 
						|
      selected,
 | 
						|
      label,
 | 
						|
      households,
 | 
						|
      removeByIndex,
 | 
						|
    };
 | 
						|
  },
 | 
						|
});
 | 
						|
</script>
 |