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.
 
 
 
 
 

106 line
2.4 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="search()">
  9. <b v-if="films.length" class="px-4 py-2 absolute right-2 block bg-green-400 text-slate-800 rounded-full">
  10. {{ films.length }}
  11. </b>
  12. </nav>
  13. <NuxtLink v-for="(film, index) in films" :key="index" :href="film.title" :to="'/details/' + 'id'"
  14. class="hover:bg-slate-200 w-full p-4 flex-col border-b-2 border-GREY-100">
  15. <img :src="imgUrl + film.poster_path" alt="">
  16. <span class="flex flex-row">
  17. {{ film.title }}
  18. {{ film.original_title }}
  19. {{ film.vote_count }}
  20. {{ film.release_date }}
  21. </span>
  22. </NuxtLink>
  23. </div>
  24. </section>
  25. </template>
  26. <script setup lang="ts">
  27. const imgUrl = 'https://media.themoviedb.org/t/p/w220_and_h330_face/'
  28. const terms = ref('')
  29. const films = ref([])
  30. const search = async () => {
  31. if (terms.value !== '') {
  32. films.value = []
  33. const { data } = await useFetch(`/api/search/${terms.value}`)
  34. films.value = data.value
  35. } else {
  36. initList()
  37. }
  38. }
  39. const initList = async () => {
  40. const { data } = await useFetch(`/api/list`)
  41. films.value = data.value
  42. }
  43. onMounted(() => {
  44. nextTick(() => {
  45. initList()
  46. })
  47. })
  48. </script>
  49. <style>
  50. .title b {
  51. @apply text-green-400 capitalize;
  52. }
  53. .icon {
  54. @apply w-4 h-4 mx-2;
  55. }
  56. .icon-container {
  57. color: #8094ae;
  58. @apply flex items-center
  59. }
  60. .icon-container .icon {
  61. color: rgb(109, 109, 109);
  62. }
  63. .icon-size p {
  64. color: rgb(54, 150, 75);
  65. }
  66. .icon-seed p {
  67. color: rgb(12, 108, 233);
  68. }
  69. .loader>div {
  70. animation: loader 2.4s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  71. }
  72. @keyframes loader {
  73. 0%,
  74. 100% {
  75. animation-timing-function: cubic-bezier(0.5, 0, 1, 0.5);
  76. }
  77. 0% {
  78. transform: rotateY(0deg);
  79. }
  80. 50% {
  81. transform: rotateY(1800deg);
  82. animation-timing-function: cubic-bezier(0, 0.5, 0.5, 1);
  83. }
  84. 100% {
  85. transform: rotateY(3600deg);
  86. }
  87. }
  88. </style>