mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-11-13 03:38:23 +00:00
149 lines
5.4 KiB
Vue
149 lines
5.4 KiB
Vue
<template>
|
|
<ErrorHandler v-if="playlist && playlist.error" :message="playlist.message" :error="playlist.error" />
|
|
|
|
<div v-if="playlist" v-show="!playlist.error">
|
|
<h1 class="text-center my-4" v-text="playlist.name" />
|
|
|
|
<div class="grid grid-cols-2">
|
|
<div>
|
|
<router-link class="link" :to="playlist.uploaderUrl || '/'">
|
|
<img :src="playlist.uploaderAvatar" loading="lazy" class="rounded-full" />
|
|
<strong v-text="playlist.uploader" />
|
|
</router-link>
|
|
</div>
|
|
<div>
|
|
<div class="right-2vw absolute">
|
|
<strong v-text="`${playlist.videos} ${$t('video.videos')}`" />
|
|
<br />
|
|
<button class="btn mr-1" v-if="authenticated && !isPipedPlaylist" @click="clonePlaylist">
|
|
{{ $t("actions.clone_playlist") }}<font-awesome-icon class="ml-3" icon="clone" />
|
|
</button>
|
|
<button class="btn mr-1" @click="downloadPlaylistAsTxt">
|
|
{{ $t("actions.download_as_txt") }}
|
|
</button>
|
|
<a class="btn" :href="getRssUrl">
|
|
<font-awesome-icon icon="rss" />
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<hr />
|
|
|
|
<div class="video-grid">
|
|
<VideoItem
|
|
v-for="(video, index) in playlist.relatedStreams"
|
|
:key="video.url"
|
|
:video="video"
|
|
:index="index"
|
|
:playlist-id="$route.query.list"
|
|
:admin="admin"
|
|
@remove="removeVideo(index)"
|
|
height="94"
|
|
width="168"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import ErrorHandler from "./ErrorHandler.vue";
|
|
import VideoItem from "./VideoItem.vue";
|
|
|
|
export default {
|
|
components: {
|
|
ErrorHandler,
|
|
VideoItem,
|
|
},
|
|
data() {
|
|
return {
|
|
playlist: null,
|
|
admin: false,
|
|
};
|
|
},
|
|
computed: {
|
|
getRssUrl: _this => {
|
|
return _this.authApiUrl() + "/rss/playlists/" + _this.$route.query.list;
|
|
},
|
|
isPipedPlaylist: _this => {
|
|
// regex to determine whether it's a Piped plalylist
|
|
return /[\da-fA-F]{8}-[\da-fA-F]{4}-[\da-fA-F]{4}-[\da-fA-F]{4}-[\da-fA-F]{12}/.test(
|
|
_this.$route.query.list,
|
|
);
|
|
},
|
|
},
|
|
mounted() {
|
|
this.getPlaylistData();
|
|
const playlistId = this.$route.query.list;
|
|
if (this.authenticated && playlistId?.length == 36)
|
|
this.fetchJson(this.authApiUrl() + "/user/playlists", null, {
|
|
headers: {
|
|
Authorization: this.getAuthToken(),
|
|
},
|
|
}).then(json => {
|
|
if (json.error) alert(json.error);
|
|
else if (json.filter(playlist => playlist.id === playlistId).length > 0) this.admin = true;
|
|
});
|
|
},
|
|
activated() {
|
|
window.addEventListener("scroll", this.handleScroll);
|
|
if (this.playlist) this.updateTitle();
|
|
},
|
|
deactivated() {
|
|
window.removeEventListener("scroll", this.handleScroll);
|
|
},
|
|
methods: {
|
|
async fetchPlaylist() {
|
|
return await await this.fetchJson(this.authApiUrl() + "/playlists/" + this.$route.query.list);
|
|
},
|
|
async getPlaylistData() {
|
|
this.fetchPlaylist()
|
|
.then(data => (this.playlist = data))
|
|
.then(() => this.updateTitle());
|
|
},
|
|
async updateTitle() {
|
|
document.title = this.playlist.name + " - Piped";
|
|
},
|
|
handleScroll() {
|
|
if (this.loading || !this.playlist || !this.playlist.nextpage) return;
|
|
if (window.innerHeight + window.scrollY >= document.body.offsetHeight - window.innerHeight) {
|
|
this.loading = true;
|
|
this.fetchJson(this.authApiUrl() + "/nextpage/playlists/" + this.$route.query.list, {
|
|
nextpage: this.playlist.nextpage,
|
|
}).then(json => {
|
|
this.playlist.relatedStreams.concat(json.relatedStreams);
|
|
this.playlist.nextpage = json.nextpage;
|
|
this.loading = false;
|
|
json.relatedStreams.map(stream => this.playlist.relatedStreams.push(stream));
|
|
});
|
|
}
|
|
},
|
|
removeVideo(index) {
|
|
this.playlist.relatedStreams.splice(index, 1);
|
|
},
|
|
async clonePlaylist() {
|
|
this.fetchJson(this.authApiUrl() + "/import/playlist", null, {
|
|
method: "POST",
|
|
headers: {
|
|
Authorization: this.getAuthToken(),
|
|
},
|
|
body: JSON.stringify({
|
|
playlistId: this.$route.query.list,
|
|
}),
|
|
}).then(resp => {
|
|
if (!resp.error) {
|
|
alert(this.$t("actions.clone_playlist_success"));
|
|
} else alert(resp.error);
|
|
});
|
|
},
|
|
downloadPlaylistAsTxt() {
|
|
var data = "";
|
|
this.playlist.relatedStreams.forEach(element => {
|
|
data += "https://piped.kavin.rocks" + element.url + "\n";
|
|
});
|
|
this.download(data, this.playlist.name + ".txt", "text/plain");
|
|
},
|
|
},
|
|
};
|
|
</script>
|