mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-08-14 23:57:27 +00:00
173 lines
6 KiB
Vue
173 lines
6 KiB
Vue
<template>
|
|
<h1 v-t="'titles.feed'" class="my-4 text-center font-bold" />
|
|
|
|
<div class="flex flex-col flex-wrap gap-2 children:(flex items-center gap-1) md:flex-row md:items-center">
|
|
<span>
|
|
<label for="filters">
|
|
<strong v-text="`${$t('actions.filter')}:`" />
|
|
</label>
|
|
<select
|
|
id="filters"
|
|
v-model="selectedFilter"
|
|
default="all"
|
|
class="select flex-grow"
|
|
@change="onFilterChange()"
|
|
>
|
|
<option v-for="filter in availableFilters" :key="filter" v-t="`video.${filter}`" :value="filter" />
|
|
</select>
|
|
</span>
|
|
|
|
<span>
|
|
<label for="group-selector">
|
|
<strong v-text="`${$t('titles.channel_groups')}:`" />
|
|
</label>
|
|
<select id="group-selector" v-model="selectedGroupName" default="" class="select flex-grow">
|
|
<option v-t="`video.all`" value="" />
|
|
<option
|
|
v-for="group in channelGroups"
|
|
:key="group.groupName"
|
|
:value="group.groupName"
|
|
v-text="group.groupName"
|
|
/>
|
|
</select>
|
|
</span>
|
|
|
|
<span class="md:ml-auto">
|
|
<SortingSelector by-key="uploaded" @apply="order => videos.sort(order)" />
|
|
</span>
|
|
</div>
|
|
<hr />
|
|
|
|
<span class="flex gap-2">
|
|
<router-link v-t="'titles.subscriptions'" class="btn" to="/subscriptions" />
|
|
<a :href="getRssUrl" class="btn">
|
|
<i class="i-fa6-solid:rss" />
|
|
</a>
|
|
</span>
|
|
<hr />
|
|
|
|
<LoadingIndicatorPage :show-content="videosStore != null" class="video-grid">
|
|
<template v-for="video in filteredVideos" :key="video.url">
|
|
<VideoItem v-if="shouldShowVideo(video)" :is-feed="true" :item="video" />
|
|
</template>
|
|
</LoadingIndicatorPage>
|
|
</template>
|
|
|
|
<script>
|
|
import VideoItem from "./VideoItem.vue";
|
|
import SortingSelector from "./SortingSelector.vue";
|
|
import LoadingIndicatorPage from "./LoadingIndicatorPage.vue";
|
|
|
|
export default {
|
|
components: {
|
|
VideoItem,
|
|
SortingSelector,
|
|
LoadingIndicatorPage,
|
|
},
|
|
data() {
|
|
return {
|
|
currentVideoCount: 0,
|
|
videoStep: 100,
|
|
videosStore: null,
|
|
videos: [],
|
|
availableFilters: ["all", "shorts", "videos"],
|
|
selectedFilter: "all",
|
|
selectedGroupName: "",
|
|
channelGroups: [],
|
|
};
|
|
},
|
|
computed: {
|
|
getRssUrl(_this) {
|
|
if (_this.authenticated) return _this.authApiUrl() + "/feed/rss?authToken=" + _this.getAuthToken();
|
|
else return _this.authApiUrl() + "/feed/unauthenticated/rss?channels=" + _this.getUnauthenticatedChannels();
|
|
},
|
|
filteredVideos(_this) {
|
|
const selectedGroup = _this.channelGroups.filter(group => group.groupName == _this.selectedGroupName);
|
|
|
|
const videos = this.getPreferenceBoolean("hideWatched", false)
|
|
? this.videos.filter(video => !video.watched)
|
|
: this.videos;
|
|
|
|
return _this.selectedGroupName == ""
|
|
? videos
|
|
: videos.filter(video => selectedGroup[0].channels.includes(video.uploaderUrl.substr(-11)));
|
|
},
|
|
},
|
|
mounted() {
|
|
this.fetchFeed().then(videos => {
|
|
this.videosStore = videos;
|
|
this.loadMoreVideos();
|
|
this.updateWatched(this.videos);
|
|
});
|
|
|
|
this.selectedFilter = this.getPreferenceString("feedFilter") ?? "all";
|
|
|
|
if (!window.db) return;
|
|
|
|
this.loadChannelGroups();
|
|
},
|
|
activated() {
|
|
document.title = this.$t("titles.feed") + " - Piped";
|
|
if (this.videos.length > 0) this.updateWatched(this.videos);
|
|
window.addEventListener("scroll", this.handleScroll);
|
|
},
|
|
deactivated() {
|
|
window.removeEventListener("scroll", this.handleScroll);
|
|
},
|
|
unmounted() {
|
|
window.removeEventListener("scroll", this.handleScroll);
|
|
},
|
|
methods: {
|
|
async fetchFeed() {
|
|
if (this.authenticated) {
|
|
return await this.fetchJson(this.authApiUrl() + "/feed", {
|
|
authToken: this.getAuthToken(),
|
|
});
|
|
} else {
|
|
const channels = this.getUnauthenticatedChannels();
|
|
const split = channels.split(",");
|
|
if (split.length > 100) {
|
|
return await this.fetchJson(this.authApiUrl() + "/feed/unauthenticated", null, {
|
|
method: "POST",
|
|
body: JSON.stringify(split),
|
|
});
|
|
} else {
|
|
return await this.fetchJson(this.authApiUrl() + "/feed/unauthenticated", {
|
|
channels: channels,
|
|
});
|
|
}
|
|
}
|
|
},
|
|
async loadChannelGroups() {
|
|
const groups = await this.getChannelGroups();
|
|
this.channelGroups.push(...groups);
|
|
},
|
|
loadMoreVideos() {
|
|
if (!this.videosStore) return;
|
|
this.currentVideoCount = Math.min(this.currentVideoCount + this.videoStep, this.videosStore.length);
|
|
if (this.videos.length != this.videosStore.length) {
|
|
this.videos = this.videosStore.slice(0, this.currentVideoCount);
|
|
this.fetchDeArrowContent(this.videos);
|
|
}
|
|
},
|
|
handleScroll() {
|
|
if (window.innerHeight + window.scrollY >= document.body.offsetHeight - window.innerHeight) {
|
|
this.loadMoreVideos();
|
|
}
|
|
},
|
|
shouldShowVideo(video) {
|
|
switch (this.selectedFilter.toLowerCase()) {
|
|
case "shorts":
|
|
return video.isShort;
|
|
case "videos":
|
|
return !video.isShort;
|
|
default:
|
|
return true;
|
|
}
|
|
},
|
|
onFilterChange() {
|
|
this.setPreference("feedFilter", this.selectedFilter);
|
|
},
|
|
},
|
|
};
|
|
</script>
|