From 8154e5d67b22397bed5cbce3f3e1f71d6883be89 Mon Sep 17 00:00:00 2001 From: Jonas Heinrich Date: Sun, 25 Oct 2020 10:03:23 +0100 Subject: [PATCH] fix global player volume from store --- src/components/Main.vue | 25 +++++++++++++------------ src/components/Player.vue | 4 ++-- 2 files changed, 15 insertions(+), 14 deletions(-) diff --git a/src/components/Main.vue b/src/components/Main.vue index 011e277..443f026 100644 --- a/src/components/Main.vue +++ b/src/components/Main.vue @@ -53,11 +53,9 @@ export default { pageLoading: false, blurHashes: require('../assets/blurHashes.json'), }), - provide: { - player: { - isPlaying: false, - isBuffering: false, - volume: 0, + computed: { + player() { + return this.$store.state.player }, }, watch: { @@ -109,23 +107,22 @@ export default { * @param {Object} station Station object */ doPlay(station) { + const vm = this if (audioPlayer !== null) { - audioPlayer.fade(1, 0, 500) // FIXME persistent volume state - // FIXME fade out + audioPlayer.fade(vm.player.volume, 0, 500) } this.$jquery.get('http://de1.api.radio-browser.info/json/url/' + station.stationuuid, { 'User-Agent': 'Nextcloud Radio/1.0.0', // FIXME global version, doesnt seem to work }) - const vm = this audioPlayer = new Howl({ src: [station.url_resolved], - volume: 0, - onfade() { + volume: vm.player.volume, + /* onfade() { // FIXME if (this.volume() === 0) { this.unload() } - }, + }, */ onplay() { vm.$store.dispatch('isPlaying', true) vm.$store.dispatch('isBuffering', false) @@ -138,9 +135,13 @@ export default { vm.$store.dispatch('isPlaying', true) vm.$store.dispatch('isBuffering', true) }, + onstop() { + vm.$store.dispatch('isPlaying', false) + vm.$store.dispatch('isBuffering', false) + }, }) audioPlayer.play() - audioPlayer.fade(0.1, 1, 500) // FIXME persistent volume state + audioPlayer.fade(0, vm.player.volume, 500) /* const stationMetadata = document.getElementById('stationMetadata') stationMetadata.textContent = station.name */ diff --git a/src/components/Player.vue b/src/components/Player.vue index af402f0..989ec1b 100644 --- a/src/components/Player.vue +++ b/src/components/Player.vue @@ -9,16 +9,16 @@