koel/resources/assets/js/services/youTubeService.ts
2024-10-14 00:37:01 +07:00

25 lines
669 B
TypeScript

import { cache, http } from '@/services'
import { eventBus } from '@/utils'
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 http.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,
})
},
}