Piped/src/components/Channel.vue

126 lines
4.4 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" />
<div v-if="channel" v-show="!channel.error">
<h1 class="uk-text-center">
<img height="48" width="48" class="uk-border-circle" :src="channel.avatarUrl" />{{ channel.name }}
</h1>
<img v-if="channel.bannerUrl" :src="channel.bannerUrl" style="width: 100%" loading="lazy" />
<!-- eslint-disable-next-line vue/no-v-html -->
<p style="white-space: pre-wrap"><span v-html="purifyHTML(urlify(channel.description))"></span></p>
2020-11-27 06:46:36 +00:00
<button
v-if="authenticated"
class="uk-button uk-button-small"
style="background: #222"
type="button"
@click="subscribeHandler"
>
{{ subscribed ? $t("actions.unsubscribe") : $t("actions.subscribe") }}
</button>
2020-11-27 06:46:36 +00:00
<hr />
<div class="uk-grid-xl" uk-grid="parallax: 0">
<div
v-for="video in channel.relatedStreams"
:key="video.url"
2020-11-27 06:46:36 +00:00
class="uk-width-1-2 uk-width-1-3@m uk-width-1-4@l uk-width-1-5@xl"
>
<VideoItem :video="video" height="94" width="168" hide-channel />
2020-11-27 06:46:36 +00:00
</div>
</div>
</div>
</template>
<script>
import ErrorHandler from "@/components/ErrorHandler.vue";
2021-06-16 19:14:46 +00:00
import VideoItem from "@/components/VideoItem.vue";
2020-11-27 06:46:36 +00:00
export default {
components: {
ErrorHandler,
VideoItem,
},
2020-11-27 06:46:36 +00:00
data() {
return {
channel: null,
subscribed: 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() {
this.fetchJson(
this.apiUrl() + "/subscribed",
{
channelId: this.channel.id,
},
{
headers: {
Authorization: this.getAuthToken(),
},
},
).then(json => {
this.subscribed = json.subscribed;
});
},
2020-11-27 06:46:36 +00:00
async fetchChannel() {
const url = 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";
if (this.authenticated) this.fetchSubscribedStatus();
this.updateWatched(this.channel.relatedStreams);
}
});
2020-11-27 06:46:36 +00:00
},
handleScroll() {
if (this.loading || !this.channel || !this.channel.nextpage) return;
if (window.innerHeight + window.scrollY >= document.body.offsetHeight - window.innerHeight) {
2020-11-27 06:46:36 +00:00
this.loading = true;
this.fetchJson(this.apiUrl() + "/nextpage/channel/" + this.channel.id, {
nextpage: this.channel.nextpage,
}).then(json => {
2021-02-24 09:35:41 +00:00
this.channel.nextpage = json.nextpage;
this.loading = false;
this.updateWatched(json.relatedStreams);
json.relatedStreams.map(stream => this.channel.relatedStreams.push(stream));
2021-02-24 09:35:41 +00:00
});
2020-11-27 06:46:36 +00:00
}
},
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 06:46:36 +00:00
};
</script>