mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-08-30 18:43:17 +00:00
Dynamically update the button in the playlist page
This commit is contained in:
parent
8e3d3d5061
commit
031fa6e45e
@ -15,7 +15,8 @@
|
|||||||
<strong v-text="`${playlist.videos} ${$t('video.videos')}`" />
|
<strong v-text="`${playlist.videos} ${$t('video.videos')}`" />
|
||||||
<br />
|
<br />
|
||||||
<button class="btn mr-1" v-if="!isPipedPlaylist" @click="bookmarkPlaylist">
|
<button class="btn mr-1" v-if="!isPipedPlaylist" @click="bookmarkPlaylist">
|
||||||
{{ $t("actions.bookmark_playlist") }}<font-awesome-icon class="ml-3" icon="bookmark" />
|
{{ $t(`actions.${isBookmarked ? "playlist_bookmarked" : "bookmark_playlist"}`)
|
||||||
|
}}<font-awesome-icon class="ml-3" icon="bookmark" />
|
||||||
</button>
|
</button>
|
||||||
<button class="btn mr-1" v-if="authenticated && !isPipedPlaylist" @click="clonePlaylist">
|
<button class="btn mr-1" v-if="authenticated && !isPipedPlaylist" @click="clonePlaylist">
|
||||||
{{ $t("actions.clone_playlist") }}<font-awesome-icon class="ml-3" icon="clone" />
|
{{ $t("actions.clone_playlist") }}<font-awesome-icon class="ml-3" icon="clone" />
|
||||||
@ -63,6 +64,7 @@ export default {
|
|||||||
return {
|
return {
|
||||||
playlist: null,
|
playlist: null,
|
||||||
admin: false,
|
admin: false,
|
||||||
|
isBookmarked: false,
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
@ -88,6 +90,7 @@ export default {
|
|||||||
if (json.error) alert(json.error);
|
if (json.error) alert(json.error);
|
||||||
else if (json.filter(playlist => playlist.id === playlistId).length > 0) this.admin = true;
|
else if (json.filter(playlist => playlist.id === playlistId).length > 0) this.admin = true;
|
||||||
});
|
});
|
||||||
|
this.isPlaylistBookmarked();
|
||||||
},
|
},
|
||||||
activated() {
|
activated() {
|
||||||
window.addEventListener("scroll", this.handleScroll);
|
window.addEventListener("scroll", this.handleScroll);
|
||||||
@ -149,6 +152,12 @@ export default {
|
|||||||
},
|
},
|
||||||
async bookmarkPlaylist() {
|
async bookmarkPlaylist() {
|
||||||
if (!this.playlist) return;
|
if (!this.playlist) return;
|
||||||
|
|
||||||
|
if (this.isBookmarked) {
|
||||||
|
this.removePlaylistBookmark();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (window.db) {
|
if (window.db) {
|
||||||
const playlistId = this.$route.query.list;
|
const playlistId = this.$route.query.list;
|
||||||
var tx = window.db.transaction("playlist_bookmarks", "readwrite");
|
var tx = window.db.transaction("playlist_bookmarks", "readwrite");
|
||||||
@ -162,8 +171,27 @@ export default {
|
|||||||
uploaderAvatar: this.playlist.uploaderAvatar,
|
uploaderAvatar: this.playlist.uploaderAvatar,
|
||||||
videos: this.playlist.videos,
|
videos: this.playlist.videos,
|
||||||
});
|
});
|
||||||
|
this.isBookmarked = true;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
async removePlaylistBookmark() {
|
||||||
|
var tx = window.db.transaction("playlist_bookmarks", "readwrite");
|
||||||
|
var store = tx.objectStore("playlist_bookmarks");
|
||||||
|
store.delete(this.$route.query.list);
|
||||||
|
this.isBookmarked = false;
|
||||||
|
},
|
||||||
|
async isPlaylistBookmarked() {
|
||||||
|
// needed in order to change the is bookmarked var later
|
||||||
|
const App = this;
|
||||||
|
const playlistId = this.$route.query.list;
|
||||||
|
var tx = window.db.transaction("playlist_bookmarks", "readwrite");
|
||||||
|
var store = tx.objectStore("playlist_bookmarks");
|
||||||
|
var req = store.openCursor(playlistId);
|
||||||
|
req.onsuccess = function (e) {
|
||||||
|
var cursor = e.target.result;
|
||||||
|
App.isBookmarked = cursor ? true : false;
|
||||||
|
};
|
||||||
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
@ -59,10 +59,10 @@
|
|||||||
:title="playlist.name"
|
:title="playlist.name"
|
||||||
v-text="playlist.name"
|
v-text="playlist.name"
|
||||||
/>
|
/>
|
||||||
<div class="flex items-center">
|
<a :href="playlist.uploaderUrl" class="flex items-center">
|
||||||
<img class="rounded-full w-32px h-32px" :src="playlist.uploaderAvatar" />
|
<img class="rounded-full w-32px h-32px" :src="playlist.uploaderAvatar" />
|
||||||
<span class="ml-3" v-text="playlist.uploader" />
|
<span class="ml-3 hover:underline" v-text="playlist.uploader" />
|
||||||
</div>
|
</a>
|
||||||
</router-link>
|
</router-link>
|
||||||
</div>
|
</div>
|
||||||
<br />
|
<br />
|
||||||
|
@ -122,7 +122,8 @@
|
|||||||
"reply_count": "{count} replies",
|
"reply_count": "{count} replies",
|
||||||
"no_valid_playlists": "The file doesn't contain valid playlists!",
|
"no_valid_playlists": "The file doesn't contain valid playlists!",
|
||||||
"with_playlist": "Share with playlist",
|
"with_playlist": "Share with playlist",
|
||||||
"bookmark_playlist": "Bookmark"
|
"bookmark_playlist": "Bookmark",
|
||||||
|
"playlist_bookmarked": "Bookmarked"
|
||||||
},
|
},
|
||||||
"comment": {
|
"comment": {
|
||||||
"pinned_by": "Pinned by {author}",
|
"pinned_by": "Pinned by {author}",
|
||||||
|
Loading…
Reference in New Issue
Block a user