koel/resources/assets/js/components/layout/app-footer/FooterMiddlePane.vue

97 lines
1.8 KiB
Vue
Raw Normal View History

2022-04-15 14:24:30 +00:00
<template>
<div class="middle-pane" data-testid="footer-middle-pane">
2022-05-05 14:56:31 +00:00
<div id="progressPane" class="progress">
2022-04-15 14:24:30 +00:00
<template v-if="song">
2022-06-10 10:47:46 +00:00
<h3 class="title">{{ song.title }}</h3>
2022-04-15 14:24:30 +00:00
<p class="meta">
2022-06-10 10:47:46 +00:00
<a :href="`/#!/artist/${song.artist_id}`" class="artist">{{ song.artist_name }}</a>
<a :href="`/#!/album/${song.album_id}`" class="album">{{ song.album_name }}</a>
2022-04-15 14:24:30 +00:00
</p>
</template>
<div class="plyr">
2022-05-05 14:56:31 +00:00
<audio controls crossorigin="anonymous"></audio>
2022-04-15 14:24:30 +00:00
</div>
</div>
</div>
</template>
2022-04-15 17:00:08 +00:00
<script lang="ts" setup>
import { toRefs } from 'vue'
2022-04-15 14:24:30 +00:00
2022-05-05 14:56:31 +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
</script>
<style lang="scss">/* no scoping here because we're overriding some plyr classes */
.middle-pane {
flex: 1;
display: flex;
@media only screen and (max-width: 768px) {
width: 100%;
position: absolute;
top: 0;
left: 0;
height: 8px;
}
}
#progressPane {
flex: 1;
position: relative;
display: flex;
flex-direction: column;
place-content: center;
place-items: center;
.meta {
font-size: .9rem;
a {
&:hover {
color: var(--color-highlight);
}
}
}
// 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>