mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-08-14 23:57:27 +00:00
Fixed autoplay. Added index query. Handled continuations.
This commit is contained in:
parent
b83f06cf1f
commit
329715aeb5
3 changed files with 40 additions and 1 deletions
|
@ -354,7 +354,9 @@ export default {
|
|||
} else searchParams.set(param, index + 1);
|
||||
break;
|
||||
case "list":
|
||||
if (playlistEnded) searchParams.delete("list");
|
||||
if (playlistEnded) {
|
||||
searchParams.delete("list");
|
||||
}
|
||||
break;
|
||||
default:
|
||||
searchParams.set(param, params[param]);
|
||||
|
|
|
@ -83,6 +83,13 @@ export default {
|
|||
this.fetchJson(this.apiUrl() + "/nextpage/playlists/" + this.$route.query.list, {
|
||||
nextpage: this.playlist.nextpage,
|
||||
}).then(json => {
|
||||
json.relatedStreams.forEach((video, i) => {
|
||||
video.url +=
|
||||
"&list=" +
|
||||
this.$route.query.list +
|
||||
"&index=" +
|
||||
(this.playlist.relatedStreams.length + i + 1);
|
||||
});
|
||||
this.playlist.relatedStreams.concat(json.relatedStreams);
|
||||
this.playlist.nextpage = json.nextpage;
|
||||
this.loading = false;
|
||||
|
|
|
@ -357,6 +357,36 @@ export default {
|
|||
this.subscribed = !this.subscribed;
|
||||
},
|
||||
handleScroll() {
|
||||
if (this.loading || !this.isPlaylist || !this.playlist.nextpage) return;
|
||||
if (window.innerHeight + window.scrollY >= document.body.offsetHeight - window.innerHeight) {
|
||||
this.loading = true;
|
||||
this.fetchJson(this.apiUrl() + "/nextpage/playlists/" + this.$route.query.list, {
|
||||
nextpage: this.playlist.nextpage,
|
||||
}).then(json => {
|
||||
const params = this.$route.query;
|
||||
const searchParams = new URLSearchParams();
|
||||
json.relatedStreams.forEach((video, i) => {
|
||||
for (var param in params)
|
||||
switch (param) {
|
||||
case "v":
|
||||
case "t":
|
||||
break;
|
||||
case "index":
|
||||
searchParams.set(param, i + 1);
|
||||
break;
|
||||
case "list":
|
||||
break;
|
||||
default:
|
||||
searchParams.set(param, params[param]);
|
||||
break;
|
||||
}
|
||||
});
|
||||
this.playlist.relatedStreams.concat(json.relatedStreams);
|
||||
this.playlist.nextpage = json.nextpage;
|
||||
this.loading = false;
|
||||
json.relatedStreams.map(stream => this.playlist.relatedStreams.push(stream));
|
||||
});
|
||||
}
|
||||
if (this.loading || !this.comments || !this.comments.nextpage) return;
|
||||
if (window.innerHeight + window.scrollY >= this.$refs.comments.offsetHeight - window.innerHeight) {
|
||||
this.loading = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue