mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-05-24 01:12:54 -04:00
* fix geFavorites return * add support for toggling to dense cards on desktop * add favorites page link * implement basic favorites page
40 lines
980 B
Vue
40 lines
980 B
Vue
<template>
|
|
<v-container>
|
|
<RecipeCardSection v-if="user" :icon="$globals.icons.heart" title="User Favorites" :recipes="user.favoriteRecipes">
|
|
</RecipeCardSection>
|
|
</v-container>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent, useAsync, useRoute } from "@nuxtjs/composition-api";
|
|
import RecipeCardSection from "~/components/Domain/Recipe/RecipeCardSection.vue";
|
|
import { useUserApi } from "~/composables/api";
|
|
import { useAsyncKey } from "~/composables/use-utils";
|
|
|
|
export default defineComponent({
|
|
components: { RecipeCardSection },
|
|
setup() {
|
|
const api = useUserApi();
|
|
const route = useRoute();
|
|
|
|
const userId = route.value.params.id;
|
|
|
|
const user = useAsync(async () => {
|
|
const { data } = await api.users.getFavorites(userId);
|
|
return data;
|
|
}, useAsyncKey());
|
|
|
|
return {
|
|
user,
|
|
};
|
|
},
|
|
head() {
|
|
return {
|
|
title: this.$t("general.favorites") as string,
|
|
};
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<style scoped></style>
|