mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-05-30 19:54:44 -04:00
* refactor recipe card section to use unified query construct * rework search page so it uses lazy-loading of RecipeCardSection * remove RecipeQuery again * prettier reformatting * remove recipes/all page * remove max results setting from search * fix typing issues
128 lines
3.2 KiB
Vue
128 lines
3.2 KiB
Vue
<template>
|
|
<v-container>
|
|
<RecipeCardSection
|
|
v-if="category"
|
|
:icon="$globals.icons.tags"
|
|
:title="category.name"
|
|
:recipes="recipes"
|
|
:query="{ categories: [category.slug] }"
|
|
@sortRecipes="assignSorted"
|
|
@replaceRecipes="replaceRecipes"
|
|
@appendRecipes="appendRecipes"
|
|
@delete="removeRecipe"
|
|
>
|
|
<template #title>
|
|
<v-btn icon class="mr-1">
|
|
<v-icon dark large @click="reset">
|
|
{{ $globals.icons.tags }}
|
|
</v-icon>
|
|
</v-btn>
|
|
|
|
<template v-if="edit">
|
|
<v-text-field
|
|
v-model="category.name"
|
|
autofocus
|
|
single-line
|
|
dense
|
|
hide-details
|
|
class="headline"
|
|
@keyup.enter="updateCategory"
|
|
>
|
|
</v-text-field>
|
|
<v-btn icon @click="updateCategory">
|
|
<v-icon size="28">
|
|
{{ $globals.icons.save }}
|
|
</v-icon>
|
|
</v-btn>
|
|
<v-btn icon class="mr-1" @click="reset">
|
|
<v-icon size="28">
|
|
{{ $globals.icons.close }}
|
|
</v-icon>
|
|
</v-btn>
|
|
</template>
|
|
|
|
<template v-else>
|
|
<v-tooltip top>
|
|
<template #activator="{ on, attrs }">
|
|
<v-toolbar-title v-bind="attrs" style="cursor: pointer" class="headline" v-on="on" @click="edit = true">
|
|
{{ category.name }}
|
|
</v-toolbar-title>
|
|
</template>
|
|
<span> Click to Edit </span>
|
|
</v-tooltip>
|
|
</template>
|
|
</template>
|
|
</RecipeCardSection>
|
|
</v-container>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent, useAsync, useRoute, reactive, toRefs, useRouter } from "@nuxtjs/composition-api";
|
|
import { useLazyRecipes } from "~/composables/recipes";
|
|
import RecipeCardSection from "~/components/Domain/Recipe/RecipeCardSection.vue";
|
|
import { useUserApi } from "~/composables/api";
|
|
|
|
export default defineComponent({
|
|
components: { RecipeCardSection },
|
|
setup() {
|
|
const { recipes, appendRecipes, assignSorted, removeRecipe, replaceRecipes } = useLazyRecipes();
|
|
|
|
const api = useUserApi();
|
|
const route = useRoute();
|
|
const router = useRouter();
|
|
const slug = route.value.params.slug;
|
|
|
|
const state = reactive({
|
|
initialValue: "",
|
|
edit: false,
|
|
});
|
|
|
|
const category = useAsync(async () => {
|
|
const { data } = await api.categories.bySlug(slug);
|
|
if (data) {
|
|
state.initialValue = data.name;
|
|
}
|
|
return data;
|
|
}, slug);
|
|
|
|
function reset() {
|
|
state.edit = false;
|
|
|
|
if (category.value) {
|
|
category.value.name = state.initialValue;
|
|
}
|
|
}
|
|
|
|
async function updateCategory() {
|
|
state.edit = false;
|
|
|
|
if (!category.value) {
|
|
return;
|
|
}
|
|
const { data } = await api.categories.updateOne(category.value.id, category.value);
|
|
|
|
if (data) {
|
|
router.push("/recipes/categories/" + data.slug);
|
|
}
|
|
}
|
|
|
|
return {
|
|
category,
|
|
reset,
|
|
...toRefs(state),
|
|
updateCategory,
|
|
appendRecipes,
|
|
assignSorted,
|
|
recipes,
|
|
removeRecipe,
|
|
replaceRecipes,
|
|
};
|
|
},
|
|
head() {
|
|
return {
|
|
title: this.$t("category.categories") as string,
|
|
};
|
|
},
|
|
});
|
|
</script>
|