koel/resources/assets/js/components/ui/LyricsPane.vue
2022-07-04 10:36:39 +02:00

69 lines
1.6 KiB
Vue

<template>
<article id="lyrics">
<div class="content">
<template v-if="song">
<div v-show="song.lyrics">
<pre ref="lyricsContainer">{{ song.lyrics }}</pre>
<TextMagnifier :target="lyricsContainer" class="magnifier"/>
</div>
<p v-if="song.id && !song.lyrics" class="none text-secondary">
<template v-if="isAdmin">
No lyrics found.
<button class="text-orange" data-testid="add-lyrics-btn" type="button" @click.prevent="showEditSongForm">
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" setup>
import { defineAsyncComponent, ref, toRefs } from 'vue'
import { eventBus } from '@/utils'
import { useAuthorization } from '@/composables'
const TextMagnifier = defineAsyncComponent(() => import('@/components/ui/TextMagnifier.vue'))
const props = defineProps<{ song: Song }>()
const { song } = toRefs(props)
const lyricsContainer = ref<HTMLElement>()
const { isAdmin } = useAuthorization()
const showEditSongForm = () => eventBus.emit('MODAL_SHOW_EDIT_SONG_FORM', song.value, 'lyrics')
</script>
<style lang="scss" scoped>
.content {
line-height: 1.6;
position: relative;
.magnifier {
opacity: 0;
position: absolute;
top: 0;
right: 0;
@media (hover: none) {
opacity: 1;
}
}
&:hover .magnifier {
opacity: .5;
&:hover {
opacity: 1;
}
}
}
pre {
white-space: pre-wrap;
}
</style>