mirror of
https://github.com/VueTubeApp/VueTube
synced 2024-11-01 09:22:39 +00:00
66 lines
1.4 KiB
Vue
66 lines
1.4 KiB
Vue
<template>
|
|
<div>
|
|
<v-progress-linear
|
|
v-for="block in blocks"
|
|
:key="block.UUID"
|
|
:buffer-value="(block.segment[1] / duration) * 100"
|
|
:value="(block.segment[0] / duration) * 100"
|
|
style="
|
|
position: absolute;
|
|
pointer-events: none;
|
|
background: transparent;
|
|
transform: translateY(50%);
|
|
"
|
|
:class="!fullscreen || controls ? '' : 'invisible'"
|
|
:background-color="colors[block.category]"
|
|
background-opacity="1"
|
|
color="transparent"
|
|
:height="seeking ? 4 : 2"
|
|
:style="
|
|
fullscreen
|
|
? 'width: calc(100% - 2rem); left: 1rem; bottom: 3.5rem;'
|
|
: 'width: 100%; left: 0; bottom: 1px;'
|
|
"
|
|
/>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
blocks: {
|
|
type: Array,
|
|
required: true,
|
|
},
|
|
duration: {
|
|
type: Number,
|
|
required: true,
|
|
},
|
|
seeking: {
|
|
type: Boolean,
|
|
required: true,
|
|
},
|
|
fullscreen: {
|
|
type: Boolean,
|
|
required: true,
|
|
},
|
|
controls: {
|
|
type: Boolean,
|
|
required: true,
|
|
},
|
|
},
|
|
data: () => ({
|
|
colors: {
|
|
sponsor: "green",
|
|
selfpromo: "yellow",
|
|
exclusive_access: "teal",
|
|
interaction: "fuchsia",
|
|
poi_highlight: "deeppink",
|
|
intro: "lightblue",
|
|
outro: "blue",
|
|
music_offtopic: "orange",
|
|
filter: "purple",
|
|
},
|
|
}),
|
|
};
|
|
</script>
|