Componentize video sorting functionality

This commit is contained in:
Tomasz Rymkiewicz
2021-12-28 00:34:59 +01:00
committed by FireMasterK
parent 53197b5e2d
commit f576ca74d1
3 changed files with 50 additions and 48 deletions

View File

@@ -6,13 +6,7 @@
</div>
<div style="text-align: right">
<label for="ddlSortBy" v-text="$t('actions.sort_by')" />
<select id="ddlSortBy" v-model="selectedSort" class="select w-auto" @change="onChange()">
<option v-t="'actions.most_recent'" value="descending" />
<option v-t="'actions.least_recent'" value="ascending" />
<option v-t="'actions.channel_name_asc'" value="channel_ascending" />
<option v-t="'actions.channel_name_desc'" value="channel_descending" />
</select>
<Sorting by-key="watchedAt" @apply="order => videos.sort(order)" />
</div>
<hr />
@@ -26,15 +20,16 @@
<script>
import VideoItem from "@/components/VideoItem.vue";
import Sorting from "@/components/Sorting.vue";
export default {
components: {
VideoItem,
Sorting,
},
data() {
return {
videos: [],
selectedSort: "descending",
};
},
mounted() {
@@ -67,22 +62,6 @@ export default {
document.title = "Watch History - Piped";
},
methods: {
onChange() {
switch (this.selectedSort) {
case "ascending":
this.videos.sort((a, b) => a.watchedAt - b.watchedAt);
break;
case "descending":
this.videos.sort((a, b) => b.watchedAt - a.watchedAt);
break;
case "channel_ascending":
this.videos.sort((a, b) => a.uploaderName.localeCompare(b.uploaderName));
break;
case "channel_descending":
this.videos.sort((a, b) => b.uploaderName.localeCompare(a.uploaderName));
break;
}
},
clearHistory() {
if (window.db) {
var tx = window.db.transaction("watch_history", "readwrite");