|
|
@@ -5,11 +5,13 @@ |
|
|
|
class="w-full flex bg-slate-800 font-semibold rounded-full backdrop-blur sticky top-0 justify-center items-center hover:ring"> |
|
|
|
<input ref="searchInput" v-model="terms" autofocus placeholder="search" type="search" |
|
|
|
class="rounded-full text-xl w-full text-center text-white p-4 bg-transparent focus-visible:border-none" |
|
|
|
@keypress.enter="search()"> |
|
|
|
<b v-if="films.length" class="px-4 py-2 absolute right-2 block bg-green-400 text-slate-800 rounded-full"> |
|
|
|
@keypress.enter="pressEnter()"> |
|
|
|
<b v-if="films && films.length" |
|
|
|
class="px-4 py-2 absolute right-2 block bg-green-400 text-slate-800 rounded-full"> |
|
|
|
{{ films.length }} |
|
|
|
</b> |
|
|
|
</nav> |
|
|
|
|
|
|
|
<NuxtLink v-for="(film, index) in films" :key="index" :href="film.title" :to="'/details/' + film.id" |
|
|
|
class="hover:bg-slate-200 w-full p-4 flex-col border-b-2 border-GREY-100"> |
|
|
|
<img :src="config.public.IMG_BASE_URL + film.poster_path" :alt="film.title"> |
|
|
@@ -29,26 +31,39 @@ |
|
|
|
const config = useRuntimeConfig() |
|
|
|
const terms = ref('') |
|
|
|
const films = ref([]) |
|
|
|
const page = ref(1) |
|
|
|
const loading = ref(false) |
|
|
|
const { onScrollEnd } = useScrollEnd() |
|
|
|
|
|
|
|
const search = async () => { |
|
|
|
loading.value = true |
|
|
|
if (terms.value !== '') { |
|
|
|
films.value = [] |
|
|
|
const { data } = await useFetch(`/api/search/${terms.value}`) |
|
|
|
films.value = data.value |
|
|
|
const { data } = await useFetch(`/api/search/${terms.value}-${page.value}`) |
|
|
|
console.log(data) |
|
|
|
films.value.push(...data.value) |
|
|
|
} else { |
|
|
|
initList() |
|
|
|
const { data } = await useFetch(`/api/explore/${page.value}`) |
|
|
|
films.value.push(...data.value) |
|
|
|
} |
|
|
|
loading.value = false |
|
|
|
} |
|
|
|
|
|
|
|
const initList = async () => { |
|
|
|
const { data } = await useFetch(`/api/list`) |
|
|
|
films.value = data.value |
|
|
|
const pressEnter = () => { |
|
|
|
page.value = 1 |
|
|
|
films.value = [] |
|
|
|
search() |
|
|
|
} |
|
|
|
|
|
|
|
onScrollEnd(() => { |
|
|
|
page.value += 1 |
|
|
|
search() |
|
|
|
}) |
|
|
|
|
|
|
|
onMounted(() => { |
|
|
|
nextTick(() => { |
|
|
|
initList() |
|
|
|
search() |
|
|
|
}) |
|
|
|
|
|
|
|
}) |
|
|
|
</script> |
|
|
|
|
|
|
|