2020-11-27 06:46:36 +00:00
|
|
|
<template>
|
2021-06-06 18:47:43 +00:00
|
|
|
<ErrorHandler v-if="channel && channel.error" :message="channel.message" :error="channel.error" />
|
|
|
|
|
|
|
|
<div v-if="channel" v-show="!channel.error">
|
2021-04-23 19:11:51 +00:00
|
|
|
<h1 class="uk-text-center"><img height="48" width="48" v-bind:src="channel.avatarUrl" />{{ channel.name }}</h1>
|
2021-04-07 11:45:40 +00:00
|
|
|
<img v-if="channel.bannerUrl" v-bind:src="channel.bannerUrl" style="width: 100%" loading="lazy" />
|
2021-06-07 17:25:16 +00:00
|
|
|
<p style="white-space: pre-wrap">{{ channel.description }}</p>
|
2020-11-27 06:46:36 +00:00
|
|
|
|
2021-07-16 22:56:41 +00:00
|
|
|
<button
|
|
|
|
v-if="authenticated"
|
|
|
|
@click="subscribeHandler"
|
|
|
|
class="uk-button uk-button-small"
|
|
|
|
style="background: #222"
|
|
|
|
type="button"
|
|
|
|
>
|
|
|
|
{{ subscribed ? "Unsubscribe" : "Subscribe" }}
|
|
|
|
</button>
|
|
|
|
|
2020-11-27 06:46:36 +00:00
|
|
|
<hr />
|
|
|
|
|
|
|
|
<div class="uk-grid-xl" uk-grid="parallax: 0">
|
|
|
|
<div
|
|
|
|
class="uk-width-1-2 uk-width-1-3@m uk-width-1-4@l uk-width-1-5@xl"
|
2021-06-16 19:14:46 +00:00
|
|
|
v-bind:key="video.url"
|
|
|
|
v-for="video in this.channel.relatedStreams"
|
2020-11-27 06:46:36 +00:00
|
|
|
>
|
2021-06-16 19:14:46 +00:00
|
|
|
<VideoItem :video="video" height="94" width="168" hideChannel />
|
2020-11-27 06:46:36 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2021-06-06 18:47:43 +00:00
|
|
|
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 {
|
|
|
|
data() {
|
|
|
|
return {
|
2021-04-07 11:45:40 +00:00
|
|
|
channel: null,
|
2021-07-16 22:56:41 +00:00
|
|
|
subscribed: false,
|
2020-11-27 06:46:36 +00:00
|
|
|
};
|
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
this.getChannelData();
|
2021-07-07 14:18:09 +00:00
|
|
|
},
|
|
|
|
activated() {
|
2020-11-27 06:46:36 +00:00
|
|
|
window.addEventListener("scroll", this.handleScroll);
|
|
|
|
},
|
2021-07-07 14:18:09 +00:00
|
|
|
deactivated() {
|
2020-11-27 06:46:36 +00:00
|
|
|
window.removeEventListener("scroll", this.handleScroll);
|
|
|
|
},
|
|
|
|
methods: {
|
2021-07-16 22:56:41 +00:00
|
|
|
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() {
|
2021-07-04 18:26:02 +00:00
|
|
|
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))
|
2021-06-06 18:47:43 +00:00
|
|
|
.then(() => {
|
2021-07-16 22:56:41 +00:00
|
|
|
if (!this.channel.error) {
|
|
|
|
document.title = this.channel.name + " - Piped";
|
|
|
|
if (this.authenticated) this.fetchSubscribedStatus();
|
|
|
|
}
|
2021-06-06 18:47:43 +00:00
|
|
|
});
|
2020-11-27 06:46:36 +00:00
|
|
|
},
|
|
|
|
handleScroll() {
|
2021-06-05 19:35:14 +00:00
|
|
|
if (this.loading || !this.channel || !this.channel.nextpage) return;
|
2021-04-07 11:45:40 +00:00
|
|
|
if (window.innerHeight + window.scrollY >= document.body.offsetHeight - window.innerHeight) {
|
2020-11-27 06:46:36 +00:00
|
|
|
this.loading = true;
|
2021-07-04 18:26:02 +00:00
|
|
|
this.fetchJson(this.apiUrl() + "/nextpage/channel/" + this.channel.id, {
|
2021-06-15 11:37:35 +00:00
|
|
|
nextpage: this.channel.nextpage,
|
|
|
|
}).then(json => {
|
2021-02-24 09:35:41 +00:00
|
|
|
this.channel.relatedStreams.concat(json.relatedStreams);
|
|
|
|
this.channel.nextpage = json.nextpage;
|
|
|
|
this.loading = false;
|
2021-04-07 11:45:40 +00:00
|
|
|
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
|
|
|
}
|
2021-04-07 11:45:40 +00:00
|
|
|
},
|
2021-07-16 22:56:41 +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;
|
|
|
|
},
|
2021-04-07 11:45:40 +00:00
|
|
|
},
|
2021-06-06 18:47:43 +00:00
|
|
|
components: {
|
|
|
|
ErrorHandler,
|
2021-06-16 19:14:46 +00:00
|
|
|
VideoItem,
|
2021-06-06 18:47:43 +00:00
|
|
|
},
|
2020-11-27 06:46:36 +00:00
|
|
|
};
|
|
|
|
</script>
|