import _ from 'lodash'; import $ from 'jquery'; import queueStore from '../stores/queue'; import songStore from '../stores/song'; import artistStore from '../stores/artist'; import preferenceStore from '../stores/preference'; import config from '../config'; import plyr from 'plyr'; export default { app: null, player: null, $volumeInput: null, repeatModes: ['NO_REPEAT', 'REPEAT_ALL', 'REPEAT_ONE'], initialized: false, /** * Initialize the playback service for this whole Koel app. * * @param {Vue} app The root Vue component. */ init(app) { // We don't need to init this service twice, or the media events will be duplicated. if (this.initialized) { return; } this.app = app; this.player = plyr.setup({ controls: [], })[0]; this.audio = $('audio'); this.$volumeInput = $('#volumeRange'); /** * Listen to 'error' event on the audio player and play the next song if any. */ document.querySelector('.plyr').addEventListener('error', e => { this.playNext(); }, true); /** * Listen to 'ended' event on the audio player and play the next song in the queue. */ document.querySelector('.plyr').addEventListener('ended', e => { songStore.scrobble(queueStore.current); if (preferenceStore.get('repeatMode') === 'REPEAT_ONE') { this.restart(); return; } this.playNext(); }); /** * Attempt to preload the next song if the current song is about to end. */ document.querySelector('.plyr').addEventListener('timeupdate', e => { if (!this.player.media.duration || this.player.media.currentTime + 10 < this.player.media.duration) { return; } // The current song has only 10 seconds left to play. let nextSong = queueStore.next; if (!nextSong || nextSong.preloaded) { return; } let $preloader = $('