koel/resources/assets/js/components/ui/LyricsPane.vue
2024-07-06 17:44:59 +02:00

66 lines
2 KiB
Vue

<template>
<article>
<main class="relative">
<template v-if="song">
<div v-show="song.lyrics">
<pre class="font-sans whitespace-pre-wrap leading-relaxed">{{ lyrics }}</pre>
<span class="magnifier-wrapper opacity-0 absolute top-0 right-0 hover:!opacity-100">
<Magnifier @in="zoomIn" @out="zoomOut" />
</span>
</div>
<p v-if="song.id && !song.lyrics" class="text-k-text-secondary">
<template v-if="canUpdateLyrics">
No lyrics found.
<a role="button" @click.prevent="showEditSongForm">
Click here
</a>
to add lyrics.
</template>
<span v-else>No lyrics available. Are you listening to Bach?</span>
</p>
</template>
</main>
</article>
</template>
<script lang="ts" setup>
import { computed, defineAsyncComponent, ref, toRefs, watch } from 'vue'
import { cr2lf, eventBus } from '@/utils'
import { usePolicies } from '@/composables'
import { preferenceStore as preferences } from '@/stores'
const Magnifier = defineAsyncComponent(() => import('@/components/ui/Magnifier.vue'))
const props = defineProps<{ song: Song }>()
const { song } = toRefs(props)
const { currentUserCan } = usePolicies()
const canUpdateLyrics = currentUserCan.editSong(song.value)
const zoomLevel = ref(preferences.lyrics_zoom_level || 1)
const lyrics = computed(() => cr2lf(song.value.lyrics))
const fontSize = computed(() => `${1 + (zoomLevel.value - 1) * 0.2}rem`)
const zoomIn = () => (zoomLevel.value = Math.min(zoomLevel.value + 1, 8))
const zoomOut = () => (zoomLevel.value = Math.max(zoomLevel.value - 1, -2))
const showEditSongForm = () => eventBus.emit('MODAL_SHOW_EDIT_SONG_FORM', song.value, 'lyrics')
watch(zoomLevel, level => (preferences.lyrics_zoom_level = level), { immediate: true })
</script>
<style lang="postcss" scoped>
main {
.magnifier-wrapper {
@apply no-hover:opacity-100;
}
&:hover .magnifier-wrapper {
@apply opacity-50;
}
}
pre {
font-size: v-bind(fontSize);
}
</style>