28 lines
795 B
Vue
28 lines
795 B
Vue
<template>
|
|
<div class="fixed left-0 bottom-0 opacity-1 z-50 w-full bg-white transition-all"
|
|
:class="{ '-bottom-20 opacity-0': !playerStore.currentTrack }">
|
|
<audio ref="audioRef" class="w-full" :src="playerStore.currentTrack?.url || ''" controls />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { ref, onMounted, onUnmounted } from 'vue'
|
|
import { usePlayerStore } from '~/store/player'
|
|
|
|
const playerStore = usePlayerStore()
|
|
const audioRef = ref<HTMLAudioElement | null>(null)
|
|
|
|
onMounted(() => {
|
|
if (audioRef.value) {
|
|
playerStore.audio = audioRef.value
|
|
audioRef.value.addEventListener("timeupdate", playerStore.updateTime)
|
|
}
|
|
})
|
|
|
|
onUnmounted(() => {
|
|
if (audioRef.value) {
|
|
audioRef.value.removeEventListener("timeupdate", playerStore.updateTime)
|
|
}
|
|
})
|
|
</script>
|