koel/resources/assets/js/components/screens/YouTubeScreen.vue

75 lines
1.9 KiB
Vue
Raw Normal View History

2022-04-15 14:24:30 +00:00
<template>
<section id="youtubeWrapper">
2022-07-16 15:44:45 +00:00
<ScreenHeader layout="collapsed">{{ title }}</ScreenHeader>
2022-04-15 14:24:30 +00:00
<div id="player">
<ScreenEmptyState data-testid="youtube-placeholder">
2022-04-15 14:24:30 +00:00
<template v-slot:icon>
2022-07-15 07:23:55 +00:00
<icon :icon="faYoutube"/>
2022-04-15 14:24:30 +00:00
</template>
YouTube videos will be played here.
2022-04-23 22:10:46 +00:00
<span class="d-block instruction">Start a video playback from the right sidebar.</span>
</ScreenEmptyState>
2022-04-15 14:24:30 +00:00
</div>
</section>
</template>
2022-04-15 17:00:08 +00:00
<script lang="ts" setup>
2022-07-15 07:23:55 +00:00
import { faYoutube } from '@fortawesome/free-brands-svg-icons'
2022-04-23 22:10:46 +00:00
import createYouTubePlayer from 'youtube-player'
2022-10-13 15:18:47 +00:00
import { ref, watch } from 'vue'
2022-06-10 10:47:46 +00:00
import type { YouTubePlayer } from 'youtube-player/dist/types'
2022-10-13 15:18:47 +00:00
import { eventBus, requireInjection, use } from '@/utils'
2022-04-24 08:50:45 +00:00
import { playbackService } from '@/services'
2022-10-13 15:18:47 +00:00
import { CurrentSongKey } from '@/symbols'
2022-04-15 14:24:30 +00:00
import ScreenHeader from '@/components/ui/ScreenHeader.vue'
import ScreenEmptyState from '@/components/ui/ScreenEmptyState.vue'
2022-04-15 14:24:30 +00:00
let player: YouTubePlayer | null = null
2022-04-15 17:00:08 +00:00
const title = ref('YouTube Video')
2022-04-15 14:24:30 +00:00
2022-04-23 22:10:46 +00:00
const getPlayer = () => {
2022-04-15 17:00:08 +00:00
if (!player) {
player = createYouTubePlayer('player', {
width: '100%',
height: '100%'
})
2022-04-15 14:24:30 +00:00
2022-04-15 17:00:08 +00:00
// Pause song playback when video is played
2022-04-24 08:50:45 +00:00
player.on('stateChange', ({ data }) => data === 1 && playbackService.pause())
2022-04-15 17:00:08 +00:00
}
2022-04-23 22:10:46 +00:00
return player
2022-04-15 17:00:08 +00:00
}
2022-04-15 14:24:30 +00:00
2022-10-13 15:18:47 +00:00
const currentSong = requireInjection(CurrentSongKey)
2022-04-23 22:10:46 +00:00
2022-10-13 15:18:47 +00:00
/**
* Pause video playback when a song is played/resumed.
*/
watch(() => currentSong.value?.playback_state, state => state === 'Playing' && player?.pauseVideo())
eventBus.on('PLAY_YOUTUBE_VIDEO', (payload: { id: string, title: string }) => {
title.value = payload.title
2022-04-15 14:24:30 +00:00
2022-10-13 15:18:47 +00:00
use(getPlayer(), player => {
player.loadVideoById(payload.id)
player.playVideo()
})
2022-04-15 14:24:30 +00:00
})
</script>
<style lang="scss" scoped>
::v-deep(#player) {
2022-04-15 14:24:30 +00:00
height: 100%;
flex: 1;
display: flex;
flex-direction: column;
2022-04-15 14:24:30 +00:00
.instruction {
font-size: 1.5rem;
}
}
</style>