mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2026-07-12 20:31:36 +00:00
Add expand/collapse option
This commit is contained in:
parent
0ced0721db
commit
a4d3dfa9b2
1 changed files with 47 additions and 21 deletions
|
|
@ -36,18 +36,25 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="relative min-h-[176px]">
|
<div class="relative min-h-[176px]">
|
||||||
<template v-if="podcastType === 'serial'">
|
<template v-if="podcastType === 'serial'">
|
||||||
<template v-for="group in groupedEpisodesBySeason">
|
<template v-for="group in seasonGroups">
|
||||||
<div class="w-full my-2">
|
<div class="w-full my-2">
|
||||||
<div class="w-full bg-primary px-6 py-2 flex items-center">
|
<div class="w-full bg-primary px-4 md:px-6 py-2 flex items-center cursor-pointer" @click.stop="clickBar(group)">
|
||||||
<p class="pr-4">{{ $strings.LabelSeason }} {{ group.season }}</p>
|
<p class="pr-4">{{ $strings.LabelSeason }} {{ group.season }}</p>
|
||||||
<span class="bg-black-400 rounded-xl py-1 px-2 text-sm font-mono">{{ group.episodes.length }}</span>
|
<span class="bg-black-400 rounded-xl py-1 px-2 text-sm font-mono">{{ group.episodes.length }}</span>
|
||||||
<div class="flex-grow" />
|
<div class="flex-grow" />
|
||||||
|
<div class="cursor-pointer h-10 w-10 rounded-full hover:bg-black-400 flex justify-center items-center duration-500" :class="group.showSeason ? 'transform rotate-180' : ''">
|
||||||
|
<span class="material-icons text-4xl">expand_more</span>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<template v-for="episode in group.episodes">
|
<transition name="slide">
|
||||||
<div :key="episode" :id="`episode-${episode}`" class="w-full h-44 px-2 py-3 overflow-hidden relative border-b border-white/10">
|
<div class="w-full" v-if="group.showSeason">
|
||||||
<!-- episode is mounted here -->
|
<template v-for="episode in group.episodes">
|
||||||
</div>
|
<div :key="episode" :id="`episode-${episode}`" class="w-full h-44 px-2 py-3 overflow-hidden relative border-b border-white/10">
|
||||||
</template>
|
<!-- episode is mounted here -->
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</div>
|
||||||
|
</transition>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</template>
|
</template>
|
||||||
|
|
@ -104,7 +111,8 @@ export default {
|
||||||
episodeComponentRefs: {},
|
episodeComponentRefs: {},
|
||||||
windowHeight: 0,
|
windowHeight: 0,
|
||||||
episodesTableOffsetTop: 0,
|
episodesTableOffsetTop: 0,
|
||||||
episodeRowHeight: 176
|
episodeRowHeight: 176,
|
||||||
|
seasonGroups: {}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
|
|
@ -112,6 +120,9 @@ export default {
|
||||||
handler() {
|
handler() {
|
||||||
this.refresh()
|
this.refresh()
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
episodesList() {
|
||||||
|
this.updateSeasonGroups();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
|
|
@ -259,29 +270,41 @@ export default {
|
||||||
timeFormat() {
|
timeFormat() {
|
||||||
return this.$store.state.serverSettings.timeFormat
|
return this.$store.state.serverSettings.timeFormat
|
||||||
},
|
},
|
||||||
groupedEpisodesBySeason() {
|
},
|
||||||
if (this.podcastType !== 'serial') {
|
methods: {
|
||||||
return [];
|
updateSeasonGroups() {
|
||||||
|
if (!this.episodesSorted.length) {
|
||||||
|
this.seasonGroups = {};
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
return this.episodesList.reduce((grouped, episode, index) => {
|
const grouped = this.episodesSorted.reduce((grouped, episode, index) => {
|
||||||
let season = episode.season || 'unknown';
|
let season = Number(episode.season);
|
||||||
const seasonGroup = grouped.find(group => group.season === season);
|
season = Number.isInteger(season) ? season : 'unknown';
|
||||||
|
const seasonGroup = grouped[season];
|
||||||
|
|
||||||
if (!seasonGroup) {
|
if (!seasonGroup) {
|
||||||
grouped.push({
|
const newGroup = {
|
||||||
season,
|
season,
|
||||||
episodes: [index]
|
episodes: [index],
|
||||||
});
|
showSeason: false
|
||||||
|
};
|
||||||
|
grouped[season] = newGroup;
|
||||||
} else {
|
} else {
|
||||||
seasonGroup.episodes.push(index);
|
seasonGroup.episodes.push(index);
|
||||||
}
|
}
|
||||||
|
|
||||||
return grouped;
|
return grouped;
|
||||||
}, []).sort((a, b) => b.season - a.season);
|
}, {});
|
||||||
}
|
|
||||||
},
|
const sortedGrouped = Object.values(grouped).sort((a, b) => b.season - a.season);
|
||||||
methods: {
|
|
||||||
|
if (sortedGrouped.length > 0) {
|
||||||
|
sortedGrouped[0].showSeason = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
this.seasonGroups = sortedGrouped;
|
||||||
|
},
|
||||||
submit() {},
|
submit() {},
|
||||||
inputUpdate() {
|
inputUpdate() {
|
||||||
clearTimeout(this.searchTimeout)
|
clearTimeout(this.searchTimeout)
|
||||||
|
|
@ -479,6 +502,9 @@ export default {
|
||||||
this.episodeComponentRefs = {}
|
this.episodeComponentRefs = {}
|
||||||
this.episodeIndexesMounted = []
|
this.episodeIndexesMounted = []
|
||||||
},
|
},
|
||||||
|
clickBar(group) {
|
||||||
|
group.showSeason = !group.showSeason
|
||||||
|
},
|
||||||
mountEpisode(index) {
|
mountEpisode(index) {
|
||||||
const episodeEl = document.getElementById(`episode-${index}`)
|
const episodeEl = document.getElementById(`episode-${index}`)
|
||||||
if (!episodeEl) {
|
if (!episodeEl) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue