diff --git a/changes/changelog.d/queue-same-track.bugfix b/changes/changelog.d/queue-same-track.bugfix new file mode 100644 index 0000000000000000000000000000000000000000..11a1a08c7ca5c61bbc0dfe999fa82063ee806062 --- /dev/null +++ b/changes/changelog.d/queue-same-track.bugfix @@ -0,0 +1 @@ +Fixed position not being reseted properly when playing the same track multiple times in a row diff --git a/front/src/components/audio/Player.vue b/front/src/components/audio/Player.vue index b5cbd8f81e0bcd1c9bca8cdc7dd192044f94d968..0c5ed44b6ff3493518f21c745fac25c06bb4329d 100644 --- a/front/src/components/audio/Player.vue +++ b/front/src/components/audio/Player.vue @@ -3,7 +3,7 @@ <div class="player"> <audio-track ref="currentAudio" - v-if="currentTrack" + v-if="renderAudio && currentTrack" :key="(currentIndex, currentTrack.id)" :is-current="true" :start-time="$store.state.player.currentTime" @@ -151,6 +151,7 @@ export default { data () { let defaultAmbiantColors = [[46, 46, 46], [46, 46, 46], [46, 46, 46], [46, 46, 46]] return { + renderAudio: true, sliderVolume: this.volume, Track: Track, defaultAmbiantColors: defaultAmbiantColors, @@ -163,7 +164,6 @@ export default { }, methods: { ...mapActions({ - pause: 'player/pause', togglePlay: 'player/togglePlay', clean: 'queue/clean', next: 'queue/next', @@ -230,6 +230,17 @@ export default { this.ambiantColors = this.defaultAmbiantColors } }, + currentIndex (newValue, oldValue) { + if (newValue !== oldValue) { + // why this? to ensure the audio tag is deleted and fully + // rerendered, so we don't have any issues with cached position + // or whatever + this.renderAudio = false + this.$nextTick(() => { + this.renderAudio = true + }) + } + }, volume (newValue) { this.sliderVolume = newValue },