mirror of
https://github.com/koel/koel
synced 2024-12-20 17:43:36 +00:00
60 lines
1.9 KiB
Vue
60 lines
1.9 KiB
Vue
<template>
|
|
<footer
|
|
class="h-[18vh] w-screen flex justify-around items-center border-t border-solid border-t-white/10 py-4 text-[5vmin]"
|
|
>
|
|
<a class="has-[.yep]:text-k-love" @click.prevent="toggleFavorite">
|
|
<Icon :class="song.liked && 'yep'" :icon="song.liked ? faHeart : faEmptyHeart" />
|
|
</a>
|
|
|
|
<a class="text-[6vmin]" @click="playPrev">
|
|
<Icon :icon="faStepBackward" />
|
|
</a>
|
|
|
|
<a
|
|
class="text-[7vmin] w-[16vmin] aspect-square border border-solid border-k-text-primary rounded-full flex
|
|
items-center justify-center has-[.paused]:pl-[4px]"
|
|
@click.prevent="togglePlayback"
|
|
>
|
|
<Icon :class="playing || 'paused'" :icon="playing ? faPause : faPlay" />
|
|
</a>
|
|
|
|
<a class="text-[6vmin]" @click.prevent="playNext">
|
|
<Icon :icon="faStepForward" />
|
|
</a>
|
|
|
|
<VolumeControl />
|
|
</footer>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { faHeart, faPause, faPlay, faStepBackward, faStepForward, } from '@fortawesome/free-solid-svg-icons'
|
|
import { faHeart as faEmptyHeart } from '@fortawesome/free-regular-svg-icons'
|
|
import { computed, toRefs } from 'vue'
|
|
import { socketService } from '@/services'
|
|
|
|
import VolumeControl from '@/remote/components/VolumeControl.vue'
|
|
|
|
const props = defineProps<{ song: Playable }>()
|
|
const { song } = toRefs(props)
|
|
|
|
const toggleFavorite = () => {
|
|
song.value.liked = !song.value.liked
|
|
socketService.broadcast('SOCKET_TOGGLE_FAVORITE')
|
|
}
|
|
|
|
const playing = computed(() => song.value.playback_state === 'Playing')
|
|
|
|
const togglePlayback = () => {
|
|
song.value.playback_state = song.value.playback_state === 'Playing' ? 'Paused' : 'Playing'
|
|
socketService.broadcast('SOCKET_TOGGLE_PLAYBACK')
|
|
}
|
|
|
|
const playNext = () => socketService.broadcast('SOCKET_PLAY_NEXT')
|
|
const playPrev = () => socketService.broadcast('SOCKET_PLAY_PREV')
|
|
</script>
|
|
|
|
<style lang="postcss" scoped>
|
|
a {
|
|
@apply text-k-text-primary active:opacity-80;
|
|
}
|
|
</style>
|