Piped/src/components/ChannelPage.vue

262 lines
9.5 KiB
Vue
Raw Normal View History

2020-11-27 06:46:36 +00:00
<template>
<ErrorHandler v-if="channel && channel.error" :message="channel.message" :error="channel.error" />
<LoadingIndicatorPage :show-content="channel != null && !channel.error">
<img
v-if="channel.bannerUrl"
loading="lazy"
:src="channel.bannerUrl"
class="h-30 w-full object-cover py-1.5 md:h-50"
/>
<div class="flex flex-col items-center justify-between md:flex-row">
2023-03-15 14:38:30 +00:00
<div class="flex place-items-center">
<img height="48" width="48" class="m-1 rounded-full" :src="channel.avatarUrl" />
<div class="flex items-center gap-1">
2023-07-27 11:46:05 +00:00
<h1 class="!text-xl" v-text="channel.name" />
2024-03-06 19:45:31 +00:00
<i v-if="channel.verified" class="i-fa6-solid:check !text-xl" />
2023-03-15 14:38:30 +00:00
</div>
</div>
2020-11-27 06:46:36 +00:00
2023-03-15 14:38:30 +00:00
<div class="flex gap-2">
<button
2023-07-27 11:46:05 +00:00
class="btn"
@click="subscribeHandler"
v-text="
$t('actions.' + (subscribed ? 'unsubscribe' : 'subscribe')) +
' - ' +
numberFormat(channel.subscriberCount)
"
2023-03-15 14:38:30 +00:00
></button>
<button
v-if="subscribed"
v-t="'actions.add_to_group'"
class="btn"
@click="showGroupModal = true"
></button>
2023-03-15 14:38:30 +00:00
<!-- RSS Feed button -->
<a
2023-07-27 11:46:05 +00:00
v-if="channel.id"
2023-03-15 14:38:30 +00:00
aria-label="RSS feed"
title="RSS feed"
role="button"
:href="`${apiUrl()}/feed/unauthenticated/rss?channels=${channel.id}`"
target="_blank"
class="btn flex-col"
>
2024-03-06 19:45:31 +00:00
<i class="i-fa6-solid:rss" />
2023-03-15 14:38:30 +00:00
</a>
</div>
</div>
2023-05-23 16:24:32 +00:00
<CollapsableText :text="channel.description" />
2022-09-08 21:24:33 +00:00
2023-07-27 11:46:05 +00:00
<WatchOnButton :link="`https://youtube.com/channel/${channel.id}`" />
2022-11-02 16:10:27 +00:00
<div class="mx-1 my-2 flex">
2022-11-01 12:07:31 +00:00
<button
v-for="(tab, index) in tabs"
:key="tab.name"
class="btn mr-2"
:class="{ active: selectedTab == index }"
2023-07-27 11:46:05 +00:00
@click="loadTab(index)"
2022-11-01 12:07:31 +00:00
>
2022-11-01 11:31:45 +00:00
<span v-text="tab.translatedName"></span>
</button>
</div>
2020-11-27 06:46:36 +00:00
<hr />
2021-12-27 14:46:22 +00:00
<div class="video-grid">
2022-11-01 11:31:45 +00:00
<ContentItem
v-for="item in contentItems"
:key="item.url"
2022-11-01 12:12:54 +00:00
:item="item"
height="94"
width="168"
hide-channel
/>
2020-11-27 06:46:36 +00:00
</div>
<AddToGroupModal v-if="showGroupModal" :channel-id="channel.id.substr(-24)" @close="showGroupModal = false" />
</LoadingIndicatorPage>
2020-11-27 06:46:36 +00:00
</template>
<script>
2022-04-08 15:46:49 +00:00
import ErrorHandler from "./ErrorHandler.vue";
2022-11-01 11:31:45 +00:00
import ContentItem from "./ContentItem.vue";
import WatchOnButton from "./WatchOnButton.vue";
import LoadingIndicatorPage from "./LoadingIndicatorPage.vue";
2023-05-23 16:24:32 +00:00
import CollapsableText from "./CollapsableText.vue";
import AddToGroupModal from "./AddToGroupModal.vue";
2020-11-27 06:46:36 +00:00
export default {
components: {
ErrorHandler,
2022-11-01 11:31:45 +00:00
ContentItem,
WatchOnButton,
LoadingIndicatorPage,
2023-05-23 16:24:32 +00:00
CollapsableText,
AddToGroupModal,
},
2020-11-27 06:46:36 +00:00
data() {
return {
channel: null,
2022-08-02 08:41:35 +00:00
subscribed: false,
2022-11-01 11:31:45 +00:00
tabs: [],
selectedTab: 0,
contentItems: [],
showGroupModal: false,
2020-11-27 06:46:36 +00:00
};
},
mounted() {
this.getChannelData();
},
activated() {
if (this.channel && !this.channel.error) document.title = this.channel.name + " - Piped";
2020-11-27 06:46:36 +00:00
window.addEventListener("scroll", this.handleScroll);
if (this.channel && !this.channel.error) this.updateWatched(this.channel.relatedStreams);
2020-11-27 06:46:36 +00:00
},
deactivated() {
2020-11-27 06:46:36 +00:00
window.removeEventListener("scroll", this.handleScroll);
},
unmounted() {
window.removeEventListener("scroll", this.handleScroll);
},
2020-11-27 06:46:36 +00:00
methods: {
async fetchSubscribedStatus() {
2022-08-02 08:41:35 +00:00
if (!this.channel.id) return;
this.subscribed = await this.fetchSubscriptionStatus(this.channel.id);
},
2020-11-27 06:46:36 +00:00
async fetchChannel() {
2023-03-11 18:44:07 +00:00
const url = this.$route.path.includes("@")
2023-04-27 12:31:46 +00:00
? this.apiUrl() + "/@/" + this.$route.params.channelId
2023-03-11 18:44:07 +00:00
: this.apiUrl() + "/" + this.$route.params.path + "/" + this.$route.params.channelId;
2021-05-28 18:40:54 +00:00
return await this.fetchJson(url);
2020-11-27 06:46:36 +00:00
},
async getChannelData() {
this.fetchChannel()
.then(data => (this.channel = data))
.then(() => {
if (!this.channel.error) {
document.title = this.channel.name + " - Piped";
2022-11-01 11:31:45 +00:00
this.contentItems = this.channel.relatedStreams;
2022-08-02 08:41:35 +00:00
this.fetchSubscribedStatus();
this.updateWatched(this.channel.relatedStreams);
this.fetchDeArrowContent(this.channel.relatedStreams);
2022-11-01 11:31:45 +00:00
this.tabs.push({
translatedName: this.$t("video.videos"),
});
2023-01-26 18:36:20 +00:00
const tabQuery = this.$route.query.tab;
2022-11-01 11:31:45 +00:00
for (let i = 0; i < this.channel.tabs.length; i++) {
let tab = this.channel.tabs[i];
tab.translatedName = this.getTranslatedTabName(tab.name);
this.tabs.push(tab);
2023-01-26 18:36:20 +00:00
if (tab.name === tabQuery) this.loadTab(i + 1);
2022-11-01 11:31:45 +00:00
}
}
});
2020-11-27 06:46:36 +00:00
},
handleScroll() {
if (
this.loading ||
!this.channel ||
!this.channel.nextpage ||
(this.selectedTab != 0 && !this.tabs[this.selectedTab].tabNextPage)
)
return;
if (window.innerHeight + window.scrollY >= document.body.offsetHeight - window.innerHeight) {
2020-11-27 06:46:36 +00:00
this.loading = true;
2022-11-01 11:39:01 +00:00
if (this.selectedTab == 0) {
this.fetchChannelNextPage();
} else {
this.fetchChannelTabNextPage();
}
2020-11-27 06:46:36 +00:00
}
},
2022-11-01 11:39:01 +00:00
fetchChannelNextPage() {
this.fetchJson(this.apiUrl() + "/nextpage/channel/" + this.channel.id, {
nextpage: this.channel.nextpage,
}).then(json => {
this.channel.nextpage = json.nextpage;
this.loading = false;
this.updateWatched(json.relatedStreams);
json.relatedStreams.map(stream => this.contentItems.push(stream));
this.fetchDeArrowContent(this.contentItems);
2022-11-01 11:39:01 +00:00
});
},
fetchChannelTabNextPage() {
this.fetchJson(this.apiUrl() + "/channels/tabs", {
data: this.tabs[this.selectedTab].data,
nextpage: this.tabs[this.selectedTab].tabNextPage,
2022-11-01 11:39:01 +00:00
}).then(json => {
this.tabs[this.selectedTab].tabNextPage = json.nextpage;
2022-11-01 11:39:01 +00:00
this.loading = false;
json.content.map(item => this.contentItems.push(item));
this.fetchDeArrowContent(this.contentItems);
this.tabs[this.selectedTab].content = this.contentItems;
2022-11-01 11:39:01 +00:00
});
},
subscribeHandler() {
this.toggleSubscriptionState(this.channel.id, this.subscribed).then(success => {
if (success) this.subscribed = !this.subscribed;
});
},
2022-11-01 11:31:45 +00:00
getTranslatedTabName(tabName) {
let translatedTabName = tabName;
switch (tabName) {
2022-11-15 21:35:56 +00:00
case "livestreams":
2022-11-01 11:31:45 +00:00
translatedTabName = this.$t("titles.livestreams");
break;
2022-11-15 21:35:56 +00:00
case "playlists":
2022-11-01 11:31:45 +00:00
translatedTabName = this.$t("titles.playlists");
break;
2022-11-15 21:35:56 +00:00
case "channels":
2022-11-01 11:31:45 +00:00
translatedTabName = this.$t("titles.channels");
break;
2022-11-15 21:35:56 +00:00
case "shorts":
2022-11-01 11:31:45 +00:00
translatedTabName = this.$t("video.shorts");
break;
2022-11-01 12:22:23 +00:00
default:
console.error(`Tab name "${tabName}" is not translated yet!`);
break;
2022-11-01 11:31:45 +00:00
}
return translatedTabName;
},
loadTab(index) {
2022-11-01 11:39:01 +00:00
this.selectedTab = index;
// update the tab query in the url path
const url = new URL(window.location);
url.searchParams.set("tab", this.tabs[index].name ?? "videos");
window.history.replaceState(window.history.state, "", url);
2022-11-01 11:31:45 +00:00
if (index == 0) {
this.contentItems = this.channel.relatedStreams;
return;
}
if (this.tabs[index].content) {
this.contentItems = this.tabs[index].content;
return;
}
2022-11-01 11:31:45 +00:00
this.fetchJson(this.apiUrl() + "/channels/tabs", {
data: this.tabs[index].data,
}).then(tab => {
this.contentItems = this.tabs[index].content = tab.content;
this.fetchDeArrowContent(this.contentItems);
this.tabs[this.selectedTab].tabNextPage = tab.nextpage;
2022-11-01 11:31:45 +00:00
});
},
},
2020-11-27 06:46:36 +00:00
};
</script>
2022-11-01 12:07:31 +00:00
<style>
.active {
border: 0.1rem outset red;
}
</style>