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( ['youtube.search', song.id, nextPageToken], async () => await http.get( `youtube/search/song/${song.id}?pageToken=${nextPageToken}` ) ) }, play: (video: YouTubeVideo): void => { eventBus.emit('PLAY_YOUTUBE_VIDEO', { id: video.id.videoId, title: video.snippet.title }) } }