mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-08-30 18:43:17 +00:00
Merge pull request #1149 from kskarthik/revamp-chapters
Revamp chapters for desktop view
This commit is contained in:
commit
5be93d23a5
@ -1,14 +1,32 @@
|
|||||||
<template>
|
<template>
|
||||||
<!-- <h2 v-t="'video.chapters'" class="mb-5" /> -->
|
<!-- desktop view -->
|
||||||
<div class="flex overflow-x-auto">
|
<div v-if="!mobileLayout" class="flex-col overflow-y-scroll max-h-75vh min-h-64 <lg:hidden">
|
||||||
<div :key="chapter.start" v-for="chapter in chapters" @click="$emit('seek', chapter.start)" class="chapter">
|
<h2 v-t="'video.chapters'" class="mb-2 bg-gray-500/50 p-2" />
|
||||||
<img :src="chapter.image" :alt="chapter.title" class="" />
|
<div
|
||||||
<div class="m-1 flex">
|
:key="chapter.start"
|
||||||
|
v-for="chapter in chapters"
|
||||||
|
@click="$emit('seek', chapter.start)"
|
||||||
|
class="chapter-vertical"
|
||||||
|
>
|
||||||
|
<div class="flex">
|
||||||
|
<img :src="chapter.image" :alt="chapter.title" />
|
||||||
|
<div class="flex flex-col m-2">
|
||||||
<span class="text-truncate text-sm" :title="chapter.title" v-text="chapter.title" />
|
<span class="text-truncate text-sm" :title="chapter.title" v-text="chapter.title" />
|
||||||
<span class="text-sm font-bold text-blue-500" v-text="timeFormat(chapter.start)" />
|
<span class="text-sm font-bold text-blue-500" v-text="timeFormat(chapter.start)" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- mobile view -->
|
||||||
|
<div v-else class="flex overflow-x-auto">
|
||||||
|
<div :key="chapter.start" v-for="chapter in chapters" @click="$emit('seek', chapter.start)" class="chapter">
|
||||||
|
<img :src="chapter.image" :alt="chapter.title" />
|
||||||
|
<div class="m-1 flex">
|
||||||
|
<span class="text-truncate text-sm" :title="chapter.title" v-text="chapter.title" />
|
||||||
|
<span class="px-1 text-sm font-bold text-blue-500" v-text="timeFormat(chapter.start)" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
@ -16,20 +34,22 @@
|
|||||||
height: 5px;
|
height: 5px;
|
||||||
}
|
}
|
||||||
.chapter {
|
.chapter {
|
||||||
@apply cursor-pointer;
|
@apply cursor-pointer self-center p-2.5;
|
||||||
align-self: center;
|
|
||||||
padding: 10px;
|
|
||||||
img {
|
img {
|
||||||
width: 100%;
|
@apply w-full h-full;
|
||||||
height: 100%;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.chapter-vertical {
|
||||||
|
@apply cursor-pointer self-center p-2.5;
|
||||||
|
img {
|
||||||
|
@apply w-3/10 h-3/10;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.chapter-vertical:hover {
|
||||||
|
@apply bg-gray-500;
|
||||||
|
}
|
||||||
.text-truncate {
|
.text-truncate {
|
||||||
white-space: nowrap;
|
@apply truncate overflow-hidden inline-block w-10em;
|
||||||
width: 10em;
|
|
||||||
overflow: hidden;
|
|
||||||
text-overflow: ellipsis;
|
|
||||||
display: inline-block;
|
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
@ -38,6 +58,10 @@ import { defineProps, defineEmits } from "vue";
|
|||||||
|
|
||||||
defineProps({
|
defineProps({
|
||||||
chapters: Object,
|
chapters: Object,
|
||||||
|
mobileLayout: {
|
||||||
|
type: Boolean,
|
||||||
|
default: () => true,
|
||||||
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
defineEmits(["seek"]);
|
defineEmits(["seek"]);
|
||||||
|
@ -16,6 +16,7 @@
|
|||||||
<ErrorHandler v-if="video && video.error" :message="video.message" :error="video.error" />
|
<ErrorHandler v-if="video && video.error" :message="video.message" :error="video.error" />
|
||||||
|
|
||||||
<div v-show="!video.error">
|
<div v-show="!video.error">
|
||||||
|
<div :class="isMobile ? 'flex-col' : 'flex'">
|
||||||
<VideoPlayer
|
<VideoPlayer
|
||||||
ref="videoPlayer"
|
ref="videoPlayer"
|
||||||
:video="video"
|
:video="video"
|
||||||
@ -25,7 +26,13 @@
|
|||||||
:selected-auto-play="selectedAutoPlay"
|
:selected-auto-play="selectedAutoPlay"
|
||||||
:selected-auto-loop="selectedAutoLoop"
|
:selected-auto-loop="selectedAutoLoop"
|
||||||
/>
|
/>
|
||||||
<ChaptersBar v-if="video?.chapters?.length > 0" :chapters="video.chapters" @seek="navigate" />
|
<ChaptersBar
|
||||||
|
:mobileLayout="isMobile"
|
||||||
|
v-if="video?.chapters?.length > 0"
|
||||||
|
:chapters="video.chapters"
|
||||||
|
@seek="navigate"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
<div class="font-bold mt-2 text-2xl break-words" v-text="video.title" />
|
<div class="font-bold mt-2 text-2xl break-words" v-text="video.title" />
|
||||||
|
|
||||||
<div class="flex mb-1.5">
|
<div class="flex mb-1.5">
|
||||||
@ -203,6 +210,7 @@ export default {
|
|||||||
smallViewQuery: smallViewQuery,
|
smallViewQuery: smallViewQuery,
|
||||||
smallView: smallViewQuery.matches,
|
smallView: smallViewQuery.matches,
|
||||||
showModal: false,
|
showModal: false,
|
||||||
|
isMobile: true,
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
@ -226,6 +234,18 @@ export default {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
|
// check screen size
|
||||||
|
if (window.innerWidth >= 1024) {
|
||||||
|
this.isMobile = false;
|
||||||
|
}
|
||||||
|
// add an event listener to watch for screen size changes
|
||||||
|
window.addEventListener("resize", () => {
|
||||||
|
if (window.innerWidth >= 1024) {
|
||||||
|
this.isMobile = false;
|
||||||
|
} else {
|
||||||
|
this.isMobile = true;
|
||||||
|
}
|
||||||
|
});
|
||||||
this.getVideoData().then(() => {
|
this.getVideoData().then(() => {
|
||||||
(async () => {
|
(async () => {
|
||||||
const videoId = this.getVideoId();
|
const videoId = this.getVideoId();
|
||||||
|
Loading…
Reference in New Issue
Block a user