koel/resources/assets/js/components/ui/lyrics-pane.vue
2022-04-15 16:24:30 +02:00

92 lines
1.9 KiB
Vue

<template>
<article id="lyrics">
<div class="content">
<template v-if="song">
<div v-show="song.lyrics">
<div ref="lyricsContainer" v-html="song.lyrics"></div>
<text-zoomer :target="textZoomTarget"/>
</div>
<p class="none text-secondary" v-if="song.id && !song.lyrics">
<template v-if="isAdmin">
No lyrics found.
<button
class="text-orange"
@click.prevent="showEditSongForm"
data-test="add-lyrics-btn"
>
Click here
</button>
to add lyrics.
</template>
<span v-else>No lyrics available. Are you listening to Bach?</span>
</p>
</template>
</div>
</article>
</template>
<script lang="ts">
import Vue, { PropOptions } from 'vue'
import { eventBus } from '@/utils'
import { userStore } from '@/stores'
export default Vue.extend({
props: {
song: {
type: Object
} as PropOptions<Song | null>
},
components: {
TextZoomer: () => import('@/components/ui/text-zoomer.vue')
},
data: () => ({
textZoomTarget: null as unknown as Element,
userState: userStore.state
}),
methods: {
showEditSongForm (): void {
eventBus.emit('MODAL_SHOW_EDIT_SONG_FORM', this.song, 'lyrics')
}
},
computed: {
isAdmin (): boolean {
return this.userState.current.is_admin
}
},
updated (): void {
// Since Vue's $refs are not reactive, we work around by assigning to a data property
this.textZoomTarget = this.$refs.lyricsContainer as Element
}
})
</script>
<style lang="scss" scoped>
.content {
line-height: 1.6;
position: relative;
.text-zoomer {
opacity: 0;
position: absolute;
top: 0;
right: 0;
@media (hover: none) {
opacity: 1;
}
}
&:hover .text-zoomer {
opacity: .5;
&:hover {
opacity: 1;
}
}
}
</style>