|
|
@@ -11,23 +11,28 @@ |
|
|
|
{{ 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> |
|
|
|
<main class="flex max-w-screen-2xl justify-center flex-wrap m-6"> |
|
|
|
<NuxtLink v-for="(film, index) in films" :key="index" :href="film.title" :to="'/details/' + film.id" |
|
|
|
class="hover:bg-slate-200 w-full flex flex-col bg-emerald-800 rounded-lg w-60 m-4"> |
|
|
|
<img @error="setPlaceholder" :src="config.public.IMG_BASE_URL + film.poster_path" :alt="film.title" |
|
|
|
class="w-full rounded-t-lg"> |
|
|
|
<span class="p-4"> |
|
|
|
<h2 class="text-xl font-bold"> |
|
|
|
{{ film.title }} |
|
|
|
</h2> |
|
|
|
<span v-if="film.release_date"> |
|
|
|
{{ useDateFormat(film.release_date, 'D MMM YYYY') }} |
|
|
|
</span> |
|
|
|
{{ formatPercentage(film.vote_average) }}% |
|
|
|
</span> |
|
|
|
</NuxtLink> |
|
|
|
</main> |
|
|
|
</div> |
|
|
|
</section> |
|
|
|
</template> |
|
|
|
|
|
|
|
<script setup lang="ts"> |
|
|
|
import { useDateFormat } from '@vueuse/core' |
|
|
|
const config = useRuntimeConfig() |
|
|
|
const terms = ref('') |
|
|
|
const films = ref([]) |
|
|
@@ -54,6 +59,20 @@ const pressEnter = () => { |
|
|
|
search() |
|
|
|
} |
|
|
|
|
|
|
|
const fromPercentToDegree = (percent) => { |
|
|
|
let deg = Math.round((percent / 10) * 180) |
|
|
|
console.log(deg) |
|
|
|
return [`rotate-[calc(${deg}deg-45deg)]`] |
|
|
|
} |
|
|
|
|
|
|
|
const formatPercentage = (percent) => { |
|
|
|
return Math.round(percent * 10) |
|
|
|
} |
|
|
|
|
|
|
|
const setPlaceholder = (event) => { |
|
|
|
event.target.src = 'https://via.placeholder.com/200x300' |
|
|
|
} |
|
|
|
|
|
|
|
onScrollEnd(() => { |
|
|
|
page.value += 1 |
|
|
|
search() |
|
|
|