|
|
@@ -1,5 +1,6 @@ |
|
|
|
<template> |
|
|
|
<section class="flex flex-col items-center min-h-screen"> |
|
|
|
<loader v-if="isLoading" class="fixed z-50 backdrop-blur-sm p-4 rounded-full top-1/2" /> |
|
|
|
<div class="container w-full p-6 max-w-6xl grow flex flex-col items-center"> |
|
|
|
<nav |
|
|
|
class="w-full flex bg-slate-800 font-semibold rounded-full backdrop-blur sticky top-0 justify-center items-center hover:ring"> |
|
|
@@ -33,15 +34,16 @@ |
|
|
|
|
|
|
|
<script setup lang="ts"> |
|
|
|
import { useDateFormat } from '@vueuse/core' |
|
|
|
|
|
|
|
const config = useRuntimeConfig() |
|
|
|
const terms = ref('') |
|
|
|
const films = ref([]) |
|
|
|
const page = ref(1) |
|
|
|
const loading = ref(false) |
|
|
|
const isLoading = ref(true) |
|
|
|
const { onScrollEnd } = useScrollEnd() |
|
|
|
|
|
|
|
const search = async () => { |
|
|
|
loading.value = true |
|
|
|
isLoading.value = true |
|
|
|
if (terms.value !== '') { |
|
|
|
const { data } = await useFetch(`/api/search/${terms.value}-${page.value}`) |
|
|
|
console.log(data) |
|
|
@@ -50,7 +52,7 @@ const search = async () => { |
|
|
|
const { data } = await useFetch(`/api/explore/${page.value}`) |
|
|
|
films.value.push(...data.value) |
|
|
|
} |
|
|
|
loading.value = false |
|
|
|
isLoading.value = false |
|
|
|
} |
|
|
|
|
|
|
|
const pressEnter = () => { |
|
|
|