You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

121 lines
2.7 KiB

  1. <template>
  2. <section class="flex flex-col items-center min-h-screen">
  3. <div class="container w-full p-6 max-w-6xl grow flex flex-col items-center">
  4. <nav
  5. class="w-full flex bg-slate-800 font-semibold rounded-full backdrop-blur sticky top-0 justify-center items-center hover:ring">
  6. <input ref="searchInput" v-model="terms" autofocus placeholder="search" type="search"
  7. class="rounded-full text-xl w-full text-center text-white p-4 bg-transparent focus-visible:border-none"
  8. @keypress.enter="pressEnter()">
  9. <b v-if="films && films.length"
  10. class="px-4 py-2 absolute right-2 block bg-green-400 text-slate-800 rounded-full">
  11. {{ films.length }}
  12. </b>
  13. </nav>
  14. <NuxtLink v-for="(film, index) in films" :key="index" :href="film.title" :to="'/details/' + film.id"
  15. class="hover:bg-slate-200 w-full p-4 flex-col border-b-2 border-GREY-100">
  16. <img :src="config.public.IMG_BASE_URL + film.poster_path" :alt="film.title">
  17. <span class="flex flex-row">
  18. {{ film.title }}
  19. {{ film.original_title }}
  20. {{ film.vote_count }}
  21. {{ film.release_date }}
  22. {{ film.id }}
  23. </span>
  24. </NuxtLink>
  25. </div>
  26. </section>
  27. </template>
  28. <script setup lang="ts">
  29. const config = useRuntimeConfig()
  30. const terms = ref('')
  31. const films = ref([])
  32. const page = ref(1)
  33. const loading = ref(false)
  34. const { onScrollEnd } = useScrollEnd()
  35. const search = async () => {
  36. loading.value = true
  37. if (terms.value !== '') {
  38. const { data } = await useFetch(`/api/search/${terms.value}-${page.value}`)
  39. console.log(data)
  40. films.value.push(...data.value)
  41. } else {
  42. const { data } = await useFetch(`/api/explore/${page.value}`)
  43. films.value.push(...data.value)
  44. }
  45. loading.value = false
  46. }
  47. const pressEnter = () => {
  48. page.value = 1
  49. films.value = []
  50. search()
  51. }
  52. onScrollEnd(() => {
  53. page.value += 1
  54. search()
  55. })
  56. onMounted(() => {
  57. nextTick(() => {
  58. search()
  59. })
  60. })
  61. </script>
  62. <style>
  63. .title b {
  64. @apply text-green-400 capitalize;
  65. }
  66. .icon {
  67. @apply w-4 h-4 mx-2;
  68. }
  69. .icon-container {
  70. color: #8094ae;
  71. @apply flex items-center
  72. }
  73. .icon-container .icon {
  74. color: rgb(109, 109, 109);
  75. }
  76. .icon-size p {
  77. color: rgb(54, 150, 75);
  78. }
  79. .icon-seed p {
  80. color: rgb(12, 108, 233);
  81. }
  82. .loader>div {
  83. animation: loader 2.4s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  84. }
  85. @keyframes loader {
  86. 0%,
  87. 100% {
  88. animation-timing-function: cubic-bezier(0.5, 0, 1, 0.5);
  89. }
  90. 0% {
  91. transform: rotateY(0deg);
  92. }
  93. 50% {
  94. transform: rotateY(1800deg);
  95. animation-timing-function: cubic-bezier(0, 0.5, 0.5, 1);
  96. }
  97. 100% {
  98. transform: rotateY(3600deg);
  99. }
  100. }
  101. </style>