mirror of
https://github.com/mealie-recipes/mealie.git
synced 2024-12-26 05:51:21 -08:00
51 lines
1.4 KiB
Vue
51 lines
1.4 KiB
Vue
<template>
|
|
<v-sheet :class="$vuetify.breakpoint.smAndDown ? 'pa-0' : 'px-3 py-0'">
|
|
<BasePageTitle v-if="groupName">
|
|
<template #header>
|
|
<v-img max-height="200" max-width="150" :src="require('~/static/svgs/manage-members.svg')" />
|
|
</template>
|
|
<template #title> {{ $t("recipe.group-global-timeline", { groupName }) }} </template>
|
|
</BasePageTitle>
|
|
<RecipeTimeline v-if="queryFilter" v-model="ready" show-recipe-cards :query-filter="queryFilter" />
|
|
</v-sheet>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent, ref } from "@nuxtjs/composition-api";
|
|
import { useUserApi } from "~/composables/api";
|
|
import RecipeTimeline from "~/components/Domain/Recipe/RecipeTimeline.vue";
|
|
|
|
export default defineComponent({
|
|
components: { RecipeTimeline },
|
|
middleware: ["auth", "group-only"],
|
|
setup() {
|
|
const api = useUserApi();
|
|
const ready = ref<boolean>(false);
|
|
|
|
const groupName = ref<string>("");
|
|
const queryFilter = ref<string>("");
|
|
async function fetchHousehold() {
|
|
const { data } = await api.households.getCurrentUserHousehold();
|
|
if (data) {
|
|
queryFilter.value = `recipe.group_id="${data.groupId}"`;
|
|
groupName.value = data.group;
|
|
}
|
|
|
|
ready.value = true;
|
|
}
|
|
|
|
fetchHousehold();
|
|
return {
|
|
groupName,
|
|
queryFilter,
|
|
ready,
|
|
};
|
|
},
|
|
head() {
|
|
return {
|
|
title: this.$t("recipe.timeline") as string,
|
|
};
|
|
},
|
|
});
|
|
</script>
|