1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-08-02 20:15:24 +02:00

refator: reuse search page component (#2240)

* wip: fix recipe card section

* refactor basic search to share composable

* fix dialog results

* use search for cat/tag/tool pages

* update organizer to support name edits

* fix composable typing
This commit is contained in:
Hayden 2023-03-12 12:59:28 -08:00 committed by GitHub
parent b06517fdf4
commit 9650ba9b00
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 205 additions and 538 deletions

View file

@ -50,9 +50,9 @@
v-if="!dialog.note"
v-model="newMeal.recipeId"
:label="$t('meal-plan.meal-recipe')"
:items="recipes.data"
:loading="recipes.loading"
:search-input.sync="recipes.search"
:items="search.data.value"
:loading="search.loading.value"
:search-input.sync="search.query.value"
cache-items
item-text="name"
item-value="id"
@ -218,6 +218,7 @@ import { PlanEntryType } from "~/lib/api/types/meal-plan";
import { useUserApi } from "~/composables/api";
import { useGroupSelf } from "~/composables/use-groups";
import { RecipeSummary } from "~/lib/api/types/recipe";
import { useRecipeSearch } from "~/composables/recipes/use-recipe-search";
export default defineComponent({
components: {
@ -330,44 +331,7 @@ export default defineComponent({
// =====================================================
// Search
const recipes = ref({
search: "",
loading: false,
error: false,
data: [] as RecipeSummary[],
});
async function searchRecipes(term: string) {
recipes.value.loading = true;
const { data, error } = await api.recipes.search({
search: term,
page: 1,
orderBy: "name",
orderDirection: "asc",
perPage: 20,
});
if (error) {
console.error(error);
recipes.value.loading = false;
recipes.value.data = [];
return;
}
if (data) {
recipes.value.data = data.items;
}
recipes.value.loading = false;
}
watchDebounced(
() => recipes.value.search,
async (term: string) => {
await searchRecipes(term);
},
{ debounce: 500 }
);
const search = useRecipeSearch(api);
return {
state,
@ -382,7 +346,7 @@ export default defineComponent({
randomMeal,
// Search
recipes,
search,
firstDayOfWeek,
};
},