|
- <template>
- <section class="flex flex-col items-center min-h-screen">
- <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">
- <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">
- {{ 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">
- <span class="flex flex-row">
- {{ film.title }}
- {{ film.original_title }}
- {{ film.vote_count }}
- {{ film.release_date }}
- {{ film.id }}
- </span>
- </NuxtLink>
- </div>
- </section>
- </template>
-
- <script setup lang="ts">
- const config = useRuntimeConfig()
- const terms = ref('')
- const films = ref([])
-
- const search = async () => {
- if (terms.value !== '') {
- films.value = []
- const { data } = await useFetch(`/api/search/${terms.value}`)
- films.value = data.value
- } else {
- initList()
- }
- }
-
- const initList = async () => {
- const { data } = await useFetch(`/api/list`)
- films.value = data.value
- }
-
- onMounted(() => {
- nextTick(() => {
- initList()
- })
- })
- </script>
-
- <style>
- .title b {
- @apply text-green-400 capitalize;
- }
-
- .icon {
- @apply w-4 h-4 mx-2;
- }
-
- .icon-container {
- color: #8094ae;
- @apply flex items-center
- }
-
- .icon-container .icon {
- color: rgb(109, 109, 109);
- }
-
- .icon-size p {
- color: rgb(54, 150, 75);
- }
-
- .icon-seed p {
- color: rgb(12, 108, 233);
- }
-
- .loader>div {
- animation: loader 2.4s cubic-bezier(0, 0.2, 0.8, 1) infinite;
- }
-
- @keyframes loader {
-
- 0%,
- 100% {
- animation-timing-function: cubic-bezier(0.5, 0, 1, 0.5);
- }
-
- 0% {
- transform: rotateY(0deg);
- }
-
- 50% {
- transform: rotateY(1800deg);
- animation-timing-function: cubic-bezier(0, 0.5, 0.5, 1);
- }
-
- 100% {
- transform: rotateY(3600deg);
- }
- }
- </style>
|