import { httpService } from '@/services' import { eventBus } from '@/utils' import router from '@/router' interface YouTubeSearchResult { nextPageToken: string items: Array> } export const youTubeService = { searchVideosRelatedToSong: async (song: Song, nextPageToken: string): Promise => { return await httpService.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 }) router.go('youtube') } }