mirror of
https://github.com/rjNemo/meal_planner
synced 2026-06-06 02:26:49 +00:00
81 lines
2.2 KiB
Vue
81 lines
2.2 KiB
Vue
<script setup lang="ts">
|
|
import type { Recipe } from "~/types/recipe";
|
|
|
|
const route = useRoute();
|
|
const searchQuery = computed(() => route.query.q as string);
|
|
const searchResults = ref<Recipe[]>([]);
|
|
|
|
const { data, status, error } = await useRecipeSearch(searchQuery.value || "");
|
|
if (error.value) {
|
|
throw createError({
|
|
statusCode: 500,
|
|
message: error.value.message,
|
|
});
|
|
}
|
|
|
|
searchResults.value = data.value;
|
|
|
|
watch(searchQuery, async (newQuery) => {
|
|
const { data, error } = await useRecipeSearch(newQuery.trim());
|
|
if (error.value) {
|
|
throw createError({
|
|
statusCode: 500,
|
|
message: error.value.message,
|
|
});
|
|
}
|
|
|
|
searchResults.value = data.value;
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<div class="container mx-auto px-4">
|
|
<div v-if="status === 'pending'" class="flex justify-center my-8">
|
|
<span class="loading loading-spinner loading-lg text-primary" />
|
|
</div>
|
|
|
|
<div
|
|
v-else-if="searchResults.length > 0"
|
|
class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6 my-8"
|
|
>
|
|
<div
|
|
v-for="recipe in searchResults"
|
|
:key="recipe.id"
|
|
class="card bg-base-100 shadow-xl"
|
|
>
|
|
<figure><img :src="recipe.pictureUrl" :alt="recipe.title" /></figure>
|
|
<div class="card-body">
|
|
<h2 class="card-title">{{ recipe.title }}</h2>
|
|
<p>{{ recipe.category }} • {{ recipe.origin }}</p>
|
|
<div class="card-actions justify-end">
|
|
<nuxt-link :to="`/${recipe.id}`" class="btn btn-primary">
|
|
View Recipe
|
|
</nuxt-link>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div
|
|
v-else-if="searchQuery"
|
|
class="alert alert-info my-8 flex-col items-center"
|
|
>
|
|
<div class="flex items-center">
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
fill="none"
|
|
viewBox="0 0 24 24"
|
|
class="stroke-current shrink-0 w-6 h-6"
|
|
>
|
|
<path
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
stroke-width="2"
|
|
d="M13 16h-1v-4h-1m1-4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"
|
|
/>
|
|
</svg>
|
|
<span>No recipes found for "{{ searchQuery }}"</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|