koel/resources/assets/js/components/ui/LyricsPane.vue

70 lines
1.6 KiB
Vue
Raw Normal View History

2022-04-15 14:24:30 +00:00
<template>
<article id="lyrics">
<div class="content">
<template v-if="song">
<div v-show="song.lyrics">
2022-06-10 10:47:46 +00:00
<pre ref="lyricsContainer">{{ song.lyrics }}</pre>
<TextMagnifier :target="lyricsContainer" class="magnifier"/>
2022-04-15 14:24:30 +00:00
</div>
2022-04-21 09:38:24 +00:00
<p v-if="song.id && !song.lyrics" class="none text-secondary">
2022-04-15 14:24:30 +00:00
<template v-if="isAdmin">
No lyrics found.
<button class="text-orange" data-testid="add-lyrics-btn" type="button" @click.prevent="showEditSongForm">
2022-04-15 14:24:30 +00:00
Click here
</button>
to add lyrics.
</template>
<span v-else>No lyrics available. Are you listening to Bach?</span>
</p>
</template>
</div>
</article>
</template>
2022-04-15 17:00:08 +00:00
<script lang="ts" setup>
import { defineAsyncComponent, ref, toRefs } from 'vue'
2022-04-15 14:24:30 +00:00
import { eventBus } from '@/utils'
import { useAuthorization } from '@/composables'
2022-04-15 14:24:30 +00:00
const TextMagnifier = defineAsyncComponent(() => import('@/components/ui/TextMagnifier.vue'))
2022-04-15 14:24:30 +00:00
2022-04-29 13:32:12 +00:00
const props = defineProps<{ song: Song }>()
2022-04-15 17:00:08 +00:00
const { song } = toRefs(props)
2022-04-15 14:24:30 +00:00
const lyricsContainer = ref<HTMLElement>()
2022-04-15 14:24:30 +00:00
const { isAdmin } = useAuthorization()
2022-04-15 14:24:30 +00:00
const showEditSongForm = () => eventBus.emit('MODAL_SHOW_EDIT_SONG_FORM', song.value, 'lyrics')
2022-04-15 14:24:30 +00:00
</script>
<style lang="scss" scoped>
.content {
line-height: 1.6;
position: relative;
.magnifier {
2022-04-15 14:24:30 +00:00
opacity: 0;
position: absolute;
top: 0;
right: 0;
@media (hover: none) {
opacity: 1;
}
}
&:hover .magnifier {
2022-04-15 14:24:30 +00:00
opacity: .5;
&:hover {
opacity: 1;
}
}
}
2022-06-10 10:47:46 +00:00
pre {
white-space: pre-wrap;
}
2022-04-15 14:24:30 +00:00
</style>