1
0
mirror of https://github.com/TeamPiped/Piped.git synced 2024-12-16 23:30:27 +05:30
Piped/src/components/ChannelPage.vue

131 lines
4.5 KiB
Vue
Raw Normal View History

2020-11-27 12:16:36 +05:30
<template>
<ErrorHandler v-if="channel && channel.error" :message="channel.message" :error="channel.error" />
<div v-if="channel" v-show="!channel.error">
2021-12-27 20:16:30 +05:30
<div class="flex justify-center place-items-center">
<img height="48" width="48" class="rounded-full m-1" :src="channel.avatarUrl" />
2021-12-27 21:59:25 +05:30
<h1 v-text="channel.name" />
<font-awesome-icon class="ml-1.5 !text-3xl" v-if="channel.verified" icon="check" />
2021-12-27 20:16:30 +05:30
</div>
<img v-if="channel.bannerUrl" :src="channel.bannerUrl" class="w-full pb-1.5" loading="lazy" />
<!-- eslint-disable-next-line vue/no-v-html -->
<p class="whitespace-pre-wrap">
2021-12-28 04:03:55 +05:30
<span v-html="purifyHTML(urlify(channel.description))" />
</p>
2020-11-27 12:16:36 +05:30
2021-12-27 21:59:25 +05:30
<button
v-if="authenticated"
class="btn"
@click="subscribeHandler"
v-t="{
path: `actions.${subscribed ? 'unsubscribe' : 'subscribe'}`,
args: { count: numberFormat(channel.subscriberCount) },
}"
></button>
2020-11-27 12:16:36 +05:30
<hr />
2021-12-27 20:16:22 +05:30
<div class="video-grid">
<VideoItem
v-for="video in channel.relatedStreams"
:key="video.url"
:video="video"
height="94"
width="168"
hide-channel
/>
2020-11-27 12:16:36 +05:30
</div>
</div>
</template>
<script>
2022-04-08 21:16:49 +05:30
import ErrorHandler from "./ErrorHandler.vue";
import VideoItem from "./VideoItem.vue";
2020-11-27 12:16:36 +05:30
export default {
components: {
ErrorHandler,
VideoItem,
},
2020-11-27 12:16:36 +05:30
data() {
return {
channel: null,
subscribed: false,
2020-11-27 12:16:36 +05:30
};
},
mounted() {
this.getChannelData();
},
activated() {
if (this.channel && !this.channel.error) document.title = this.channel.name + " - Piped";
2020-11-27 12:16:36 +05:30
window.addEventListener("scroll", this.handleScroll);
if (this.channel && !this.channel.error) this.updateWatched(this.channel.relatedStreams);
2020-11-27 12:16:36 +05:30
},
deactivated() {
2020-11-27 12:16:36 +05:30
window.removeEventListener("scroll", this.handleScroll);
},
unmounted() {
window.removeEventListener("scroll", this.handleScroll);
},
2020-11-27 12:16:36 +05:30
methods: {
async fetchSubscribedStatus() {
this.fetchJson(
this.apiUrl() + "/subscribed",
{
channelId: this.channel.id,
},
{
headers: {
Authorization: this.getAuthToken(),
},
},
).then(json => {
this.subscribed = json.subscribed;
});
},
2020-11-27 12:16:36 +05:30
async fetchChannel() {
const url = this.apiUrl() + "/" + this.$route.params.path + "/" + this.$route.params.channelId;
2021-05-29 00:10:54 +05:30
return await this.fetchJson(url);
2020-11-27 12:16:36 +05:30
},
async getChannelData() {
this.fetchChannel()
.then(data => (this.channel = data))
.then(() => {
if (!this.channel.error) {
document.title = this.channel.name + " - Piped";
if (this.authenticated) this.fetchSubscribedStatus();
this.updateWatched(this.channel.relatedStreams);
}
});
2020-11-27 12:16:36 +05:30
},
handleScroll() {
if (this.loading || !this.channel || !this.channel.nextpage) return;
if (window.innerHeight + window.scrollY >= document.body.offsetHeight - window.innerHeight) {
2020-11-27 12:16:36 +05:30
this.loading = true;
this.fetchJson(this.apiUrl() + "/nextpage/channel/" + this.channel.id, {
nextpage: this.channel.nextpage,
}).then(json => {
2021-02-24 15:05:41 +05:30
this.channel.nextpage = json.nextpage;
this.loading = false;
this.updateWatched(json.relatedStreams);
json.relatedStreams.map(stream => this.channel.relatedStreams.push(stream));
2021-02-24 15:05:41 +05:30
});
2020-11-27 12:16:36 +05:30
}
},
subscribeHandler() {
this.fetchJson(this.apiUrl() + (this.subscribed ? "/unsubscribe" : "/subscribe"), null, {
method: "POST",
body: JSON.stringify({
channelId: this.channel.id,
}),
headers: {
Authorization: this.getAuthToken(),
"Content-Type": "application/json",
},
});
this.subscribed = !this.subscribed;
},
},
2020-11-27 12:16:36 +05:30
};
</script>