mirror of
https://github.com/koel/koel
synced 2024-12-21 01:53:11 +00:00
67 lines
1.7 KiB
Vue
67 lines
1.7 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, watchEffect } 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[]>([])
|
|
|
|
const loadMore = async () => {
|
|
loading.value = true
|
|
|
|
try {
|
|
song.value.youtube = song.value.youtube || { nextPageToken: '', items: [] }
|
|
|
|
const result = await youTubeService.searchVideosRelatedToSong(song.value, song.value.youtube.nextPageToken!)
|
|
song.value.youtube.nextPageToken = result.nextPageToken
|
|
song.value.youtube.items.push(...result.items as YouTubeVideo[])
|
|
|
|
videos.value = song.value.youtube.items
|
|
} catch (err) {
|
|
console.error(err)
|
|
} finally {
|
|
loading.value = false
|
|
}
|
|
}
|
|
|
|
watchEffect(() => {
|
|
videos.value = song.value.youtube?.items || []
|
|
|
|
if (videos.value.length === 0) {
|
|
loadMore()
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.youtube-extra-wrapper {
|
|
overflow-x: hidden;
|
|
|
|
ul {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 16px;
|
|
margin-bottom: 24px;
|
|
}
|
|
}
|
|
</style>
|