mirror of
https://github.com/koel/koel
synced 2024-12-21 01:53:11 +00:00
90 lines
1.6 KiB
Vue
90 lines
1.6 KiB
Vue
<template>
|
||
<div class="middle-pane" data-testid="footer-middle-pane">
|
||
<div id="progressPane" class="progress">
|
||
<template v-if="song">
|
||
<h3 class="title">{{ song.title }}</h3>
|
||
<p class="meta">
|
||
<a :href="`/#/artist/${song.artist_id}`" class="artist">{{ song.artist_name }}</a> –
|
||
<a :href="`/#/album/${song.album_id}`" class="album">{{ song.album_name }}</a>
|
||
</p>
|
||
</template>
|
||
|
||
<div class="plyr">
|
||
<audio controls crossorigin="anonymous"></audio>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</template>
|
||
|
||
<script lang="ts" setup>
|
||
import { toRefs } from 'vue'
|
||
|
||
const props = defineProps<{ song?: Song }>()
|
||
const { song } = toRefs(props)
|
||
</script>
|
||
|
||
<style lang="scss" scoped>
|
||
.middle-pane {
|
||
flex: 1;
|
||
display: flex;
|
||
|
||
@media only screen and (max-width: 768px) {
|
||
width: 100%;
|
||
position: absolute;
|
||
top: 0;
|
||
left: 0;
|
||
height: 8px;
|
||
}
|
||
}
|
||
|
||
::v-deep(#progressPane) {
|
||
flex: 1;
|
||
position: relative;
|
||
display: flex;
|
||
flex-direction: column;
|
||
place-content: center;
|
||
place-items: center;
|
||
|
||
.meta {
|
||
font-size: .9rem;
|
||
}
|
||
|
||
// Some little tweaks here and there
|
||
.plyr {
|
||
width: 100%;
|
||
position: absolute;
|
||
top: 0;
|
||
left: 0;
|
||
}
|
||
|
||
.plyr__progress {
|
||
&--seek {
|
||
height: 11px; // increase click area
|
||
}
|
||
}
|
||
|
||
.plyr__controls {
|
||
position: absolute;
|
||
top: 0;
|
||
left: 0;
|
||
width: 100%;
|
||
padding: 0;
|
||
|
||
&--left, &--right {
|
||
display: none;
|
||
}
|
||
}
|
||
|
||
@media only screen and (max-width: 768px) {
|
||
.meta, .title {
|
||
display: none;
|
||
}
|
||
|
||
.plyr__progress {
|
||
&--seek {
|
||
border-bottom-color: var(--color-bg-primary);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
</style>
|