mirror of
https://github.com/koel/koel
synced 2024-11-24 21:23:06 +00:00
28 lines
735 B
TypeScript
28 lines
735 B
TypeScript
import { cache, httpService } from '@/services'
|
|
import { eventBus } from '@/utils'
|
|
import router from '@/router'
|
|
|
|
interface YouTubeSearchResult {
|
|
nextPageToken: string
|
|
items: YouTubeVideo[]
|
|
}
|
|
|
|
export const youTubeService = {
|
|
searchVideosBySong: async (song: Song, nextPageToken: string) => {
|
|
return await cache.remember<YouTubeSearchResult>(
|
|
['youtube.search', song.id, nextPageToken],
|
|
async () => await httpService.get<YouTubeSearchResult>(
|
|
`youtube/search/song/${song.id}?pageToken=${nextPageToken}`
|
|
)
|
|
)
|
|
},
|
|
|
|
play: (video: YouTubeVideo): void => {
|
|
eventBus.emit('PLAY_YOUTUBE_VIDEO', {
|
|
id: video.id.videoId,
|
|
title: video.snippet.title
|
|
})
|
|
|
|
router.go('youtube')
|
|
}
|
|
}
|