Revert "[web] Add lyrics player to the webinterface"

This reverts commit 98a844b409.
This commit is contained in:
ejurgensen
2023-10-21 22:41:45 +02:00
parent e4c47c22b3
commit a9e20abf06
15 changed files with 25 additions and 352 deletions

View File

@@ -9,7 +9,6 @@
class="is-clickable fd-has-shadow fd-cover-big-image"
@click="open_dialog(track)"
/>
<lyrics v-if="lyrics_visible" />
<control-slider
v-model:value="track_progress"
class="mt-5"
@@ -57,7 +56,6 @@
import * as types from '@/store/mutation_types'
import ControlSlider from '@/components/ControlSlider.vue'
import CoverArtwork from '@/components/CoverArtwork.vue'
import Lyrics from '@/components/Lyrics.vue'
import { mdiCancel } from '@mdi/js'
import ModalDialogQueueItem from '@/components/ModalDialogQueueItem.vue'
import webapi from '@/webapi'
@@ -69,7 +67,6 @@ export default {
components: {
ControlSlider,
CoverArtwork,
Lyrics,
ModalDialogQueueItem
},
@@ -85,10 +82,6 @@ export default {
},
computed: {
lyrics_visible() {
return this.$store.getters.lyrics_pane;
},
is_live() {
return this.track.length_ms === 0
},