Browse Source

FEAT: details page

master
valere 6 months ago
parent
commit
bffa8f49b0
4 changed files with 38 additions and 7 deletions
  1. +4
    -4
      components/list.vue
  2. +6
    -1
      nuxt.config.ts
  3. +15
    -2
      pages/details/[id].vue
  4. +13
    -0
      server/api/details/[id].ts

+ 4
- 4
components/list.vue View File

@@ -10,14 +10,15 @@
{{ films.length }} {{ films.length }}
</b> </b>
</nav> </nav>
<NuxtLink v-for="(film, index) in films" :key="index" :href="film.title" :to="'/details/' + 'id'"
<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"> class="hover:bg-slate-200 w-full p-4 flex-col border-b-2 border-GREY-100">
<img :src="imgUrl + film.poster_path" alt="">
<img :src="config.public.IMG_BASE_URL + film.poster_path" :alt="film.title">
<span class="flex flex-row"> <span class="flex flex-row">
{{ film.title }} {{ film.title }}
{{ film.original_title }} {{ film.original_title }}
{{ film.vote_count }} {{ film.vote_count }}
{{ film.release_date }} {{ film.release_date }}
{{ film.id }}
</span> </span>
</NuxtLink> </NuxtLink>
</div> </div>
@@ -25,8 +26,7 @@
</template> </template>


<script setup lang="ts"> <script setup lang="ts">
const imgUrl = 'https://media.themoviedb.org/t/p/w220_and_h330_face/'

const config = useRuntimeConfig()
const terms = ref('') const terms = ref('')
const films = ref([]) const films = ref([])




+ 6
- 1
nuxt.config.ts View File

@@ -17,5 +17,10 @@ export default defineNuxtConfig({
} }
}, },


compatibilityDate: '2024-07-10'
runtimeConfig: {
API_BEARER: 'Bearer eyJhbGciOiJIUzI1NiJ9.eyJhdWQiOiI2MmVmZmYzYWU2YWYyNWQ0NTY4OGY3OTkxYjgyNmNhOCIsIm5iZiI6MTcyODA1NTIwMy4wNzcyNywic3ViIjoiNjcwMDA2ZjQ5ZWJlYTE5MDA2ZjgxZmJhIiwic2NvcGVzIjpbImFwaV9yZWFkIl0sInZlcnNpb24iOjF9.XuH-_0UggmULCgQQajKc-QsmlRYW2rqSenyhguE6wRU',
public: {
IMG_BASE_URL: 'https://media.themoviedb.org/t/p/w220_and_h330_face/',
}
},
}) })

+ 15
- 2
pages/details/[id].vue View File

@@ -1,12 +1,25 @@
<template> <template>
<section> <section>
{{ filmId }}
<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>
</section> </section>
</template> </template>


<script setup lang="ts"> <script setup lang="ts">
const config = useRuntimeConfig()
const film = ref()
const route = useRoute() const route = useRoute()
const filmId = ref('') const filmId = ref('')

filmId.value = route.params.id filmId.value = route.params.id

if (filmId.value !== '') {
const { data } = await useFetch(`/api/details/${filmId.value}`)
film.value = data.value
}
</script> </script>

+ 13
- 0
server/api/details/[id].ts View File

@@ -0,0 +1,13 @@
import fetch from 'node-fetch'

export default eventHandler(async (req) => {
const id = req.context.params?.id || ''
const url = `https://api.themoviedb.org/3/movie/${id}`
const config = useRuntimeConfig(req)

const response = await fetch(url, {
method: 'get',
headers: { 'Content-Type': 'application/json', 'Authorization': config.API_BEARER }
})
return await response.json()
})

Loading…
Cancel
Save