mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-10-31 02:03:35 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			173 lines
		
	
	
		
			4.3 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			173 lines
		
	
	
		
			4.3 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
|   <v-data-table
 | |
|     v-model="selected"
 | |
|     item-key="id"
 | |
|     show-select
 | |
|     :headers="headers"
 | |
|     :items="recipes"
 | |
|     :items-per-page="15"
 | |
|     class="elevation-0"
 | |
|     :loading="loading"
 | |
|     @input="setValue(selected)"
 | |
|   >
 | |
|     <template #body.preappend>
 | |
|       <tr>
 | |
|         <td></td>
 | |
|         <td>Hello</td>
 | |
|         <td colspan="4"></td>
 | |
|       </tr>
 | |
|     </template>
 | |
|     <template #item.name="{ item }">
 | |
|       <a :href="`/recipe/${item.slug}`" style="color: inherit; text-decoration: inherit; " @click="$emit('click')">{{ item.name }}</a>
 | |
|     </template>
 | |
|     <template #item.tags="{ item }">
 | |
|       <RecipeChip small :items="item.tags" :is-category="false" url-prefix="tags" />
 | |
|     </template>
 | |
|     <template #item.recipeCategory="{ item }">
 | |
|       <RecipeChip small :items="item.recipeCategory" />
 | |
|     </template>
 | |
|     <template #item.tools="{ item }">
 | |
|       <RecipeChip small :items="item.tools" url-prefix="tools" />
 | |
|     </template>
 | |
|     <template #item.userId="{ item }">
 | |
|       <v-list-item class="justify-start">
 | |
|         <UserAvatar :user-id="item.userId" size="40" />
 | |
|         <v-list-item-content>
 | |
|           <v-list-item-title>
 | |
|             {{ getMember(item.userId) }}
 | |
|           </v-list-item-title>
 | |
|         </v-list-item-content>
 | |
|       </v-list-item>
 | |
|     </template>
 | |
|   </v-data-table>
 | |
| </template>
 | |
| 
 | |
| <script lang="ts">
 | |
| import { computed, defineComponent, onMounted, ref, useContext } from "@nuxtjs/composition-api";
 | |
| import UserAvatar from "../User/UserAvatar.vue";
 | |
| import RecipeChip from "./RecipeChips.vue";
 | |
| import { Recipe } from "~/lib/api/types/recipe";
 | |
| import { useUserApi } from "~/composables/api";
 | |
| import { UserOut } from "~/lib/api/types/user";
 | |
| 
 | |
| const INPUT_EVENT = "input";
 | |
| 
 | |
| interface ShowHeaders {
 | |
|   id: boolean;
 | |
|   owner: boolean;
 | |
|   tags: boolean;
 | |
|   categories: boolean;
 | |
|   tools: boolean;
 | |
|   recipeYield: boolean;
 | |
|   dateAdded: boolean;
 | |
| }
 | |
| 
 | |
| export default defineComponent({
 | |
|   components: { RecipeChip, UserAvatar },
 | |
|   props: {
 | |
|     value: {
 | |
|       type: Array,
 | |
|       required: false,
 | |
|       default: () => [],
 | |
|     },
 | |
|     loading: {
 | |
|       type: Boolean,
 | |
|       required: false,
 | |
|       default: false,
 | |
|     },
 | |
|     recipes: {
 | |
|       type: Array as () => Recipe[],
 | |
|       default: () => [],
 | |
|     },
 | |
|     showHeaders: {
 | |
|       type: Object as () => ShowHeaders,
 | |
|       required: false,
 | |
|       default: () => {
 | |
|         return {
 | |
|           id: true,
 | |
|           owner: false,
 | |
|           tags: true,
 | |
|           categories: true,
 | |
|           recipeYield: true,
 | |
|           dateAdded: true,
 | |
|         };
 | |
|       },
 | |
|     },
 | |
|   },
 | |
|   setup(props, context) {
 | |
|     const { i18n } = useContext();
 | |
| 
 | |
|     function setValue(value: Recipe[]) {
 | |
|       context.emit(INPUT_EVENT, value);
 | |
|     }
 | |
| 
 | |
|     const headers = computed(() => {
 | |
|       const hdrs = [];
 | |
| 
 | |
|       if (props.showHeaders.id) {
 | |
|         hdrs.push({ text: i18n.t("general.id"), value: "id" });
 | |
|       }
 | |
|       if (props.showHeaders.owner) {
 | |
|         hdrs.push({ text: i18n.t("general.owner"), value: "userId", align: "center" });
 | |
|       }
 | |
|       hdrs.push({ text: i18n.t("general.name"), value: "name" });
 | |
|       if (props.showHeaders.categories) {
 | |
|         hdrs.push({ text: i18n.t("recipe.categories"), value: "recipeCategory" });
 | |
|       }
 | |
| 
 | |
|       if (props.showHeaders.tags) {
 | |
|         hdrs.push({ text: i18n.t("tag.tags"), value: "tags" });
 | |
|       }
 | |
|       if (props.showHeaders.tools) {
 | |
|         hdrs.push({ text: i18n.t("tool.tools"), value: "tools" });
 | |
|       }
 | |
|       if (props.showHeaders.recipeYield) {
 | |
|         hdrs.push({ text: i18n.t("recipe.yield"), value: "recipeYield" });
 | |
|       }
 | |
|       if (props.showHeaders.dateAdded) {
 | |
|         hdrs.push({ text: i18n.t("general.date-added"), value: "dateAdded" });
 | |
|       }
 | |
| 
 | |
|       return hdrs;
 | |
|     });
 | |
| 
 | |
|     // ============
 | |
|     // Group Members
 | |
|     const api = useUserApi();
 | |
|     const members = ref<UserOut[]>([]);
 | |
| 
 | |
|     async function refreshMembers() {
 | |
|       const { data } = await api.groups.fetchMembers();
 | |
|       if (data) {
 | |
|         members.value = data;
 | |
|       }
 | |
|     }
 | |
| 
 | |
|     onMounted(() => {
 | |
|       refreshMembers();
 | |
|     });
 | |
| 
 | |
|     function getMember(id: string) {
 | |
|       if (members.value[0]) {
 | |
|         return members.value.find((m) => m.id === id)?.username;
 | |
|       }
 | |
| 
 | |
|       return i18n.t("general.none");
 | |
|     }
 | |
| 
 | |
|     return { setValue, headers, members, getMember };
 | |
|   },
 | |
| 
 | |
|   data() {
 | |
|     return {
 | |
|       selected: [],
 | |
|     };
 | |
|   },
 | |
|   watch: {
 | |
|     value(val) {
 | |
|       this.selected = val;
 | |
|     },
 | |
|   },
 | |
| });
 | |
| </script>
 |