koel/resources/assets/js/components/ui/YouTubeVideoList.vue
2022-07-08 01:15:38 +02:00

63 lines
1.5 KiB
Vue

<template>
<div class="youtube-extra-wrapper">
<template v-if="videos.length">
<ul>
<li v-for="video in videos" :key="video.id.videoId">
<YouTubeVideo :video="video"/>
</li>
</ul>
<Btn v-if="!loading" class="more" data-testid="youtube-search-more-btn" @click.prevent="loadMore">Load More</Btn>
</template>
<p class="nope" v-show="loading">Loading</p>
</div>
</template>
<script lang="ts" setup>
import { defineAsyncComponent, ref, toRefs, watch } from 'vue'
import { youTubeService } from '@/services'
const Btn = defineAsyncComponent(() => import('@/components/ui/Btn.vue'))
const YouTubeVideo = defineAsyncComponent(() => import('@/components/ui/YouTubeVideoItem.vue'))
const props = defineProps<{ song: Song }>()
const { song } = toRefs(props)
const loading = ref(false)
const videos = ref<YouTubeVideo[]>([])
let nextPageToken = ''
const loadMore = async () => {
loading.value = true
try {
const result = await youTubeService.searchVideosBySong(song.value, nextPageToken)
nextPageToken = result.nextPageToken
videos.value.push(...result.items)
} catch (err) {
console.error(err)
} finally {
loading.value = false
}
}
watch(song, () => {
videos.value = []
nextPageToken = ''
loadMore()
}, { immediate: true })
</script>
<style lang="scss" scoped>
.youtube-extra-wrapper {
overflow-x: hidden;
ul {
display: flex;
flex-direction: column;
gap: 16px;
margin-bottom: 24px;
}
}
</style>