123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727 |
- <template>
- <modal
- :title="
- userId === playlist.createdBy ? 'Edit Playlist' : 'View Playlist'
- "
- class="edit-playlist-modal"
- >
- <template #body>
- <div
- :class="{
- 'view-only': !isEditable(),
- 'edit-playlist-modal-inner-container': true
- }"
- >
- <div id="first-column">
- <div id="playlist-info-section" class="section">
- <h3>{{ playlist.displayName }}</h3>
- <h5>Song Count: {{ playlist.songs.length }}</h5>
- <h5>Duration: {{ totalLength() }}</h5>
- </div>
- <div id="tabs-container">
- <div id="tab-selection">
- <button
- class="button is-default"
- :class="{ selected: tab === 'settings' }"
- ref="settings-tab"
- @click="showTab('settings')"
- v-if="
- userId === playlist.createdBy ||
- isEditable() ||
- (playlist.type === 'genre' && isAdmin())
- "
- >
- Settings
- </button>
- <button
- class="button is-default"
- :class="{ selected: tab === 'youtube' }"
- ref="youtube-tab"
- @click="showTab('youtube')"
- v-if="isEditable()"
- >
- YouTube
- </button>
- </div>
- <settings
- class="tab"
- v-show="tab === 'settings'"
- v-if="
- userId === playlist.createdBy ||
- isEditable() ||
- (playlist.type === 'genre' && isAdmin())
- "
- />
- <youtube
- class="tab"
- v-show="tab === 'youtube'"
- v-if="isEditable()"
- />
- </div>
- <!--
- <div
- id="import-from-youtube-section"
- -->
- </div>
- <div id="second-column">
- <div id="rearrange-songs-section" class="section">
- <div v-if="isEditable()">
- <h4 class="section-title">Rearrange Songs</h4>
- <p class="section-description">
- Drag and drop songs to change their order
- </p>
- <hr class="section-horizontal-rule" />
- </div>
- <aside class="menu">
- <draggable
- tag="transition-group"
- :component-data="{
- name: !drag
- ? 'draggable-list-transition'
- : null
- }"
- v-if="playlistSongs.length > 0"
- v-model="playlistSongs"
- item-key="_id"
- v-bind="dragOptions"
- @start="drag = true"
- @end="drag = false"
- @change="repositionSong"
- >
- <template #item="{element, index}">
- <div class="menu-list scrollable-list">
- <song-item
- :song="element"
- :class="{
- 'item-draggable': isEditable()
- }"
- >
- <template #actions>
- <i
- class="material-icons add-to-queue-icon"
- v-if="
- station.partyMode &&
- !station.locked
- "
- @click="
- addSongToQueue(
- element.youtubeId
- )
- "
- content="Add Song to Queue"
- v-tippy
- >queue</i
- >
- <confirm
- v-if="
- userId ===
- playlist.createdBy ||
- isEditable()
- "
- placement="left"
- @confirm="
- removeSongFromPlaylist(
- element.youtubeId
- )
- "
- >
- <i
- class="material-icons delete-icon"
- content="Remove Song from Playlist"
- v-tippy
- >delete_forever</i
- >
- </confirm>
- <i
- class="material-icons"
- v-if="
- isEditable() &&
- index > 0
- "
- @click="
- moveSongToTop(
- element,
- index
- )
- "
- content="Move to top of Playlist"
- v-tippy
- >vertical_align_top</i
- >
- <i
- v-if="
- isEditable() &&
- playlistSongs.length -
- 1 !==
- index
- "
- @click="
- moveSongToBottom(
- element,
- index
- )
- "
- class="material-icons"
- content="Move to bottom of Playlist"
- v-tippy
- >vertical_align_bottom</i
- >
- </template>
- </song-item>
- </div>
- </template>
- </draggable>
- <p v-else class="nothing-here-text">
- This playlist doesn't have any songs.
- </p>
- </aside>
- </div>
- </div>
- <!--
-
-
- <button
- class="button is-info"
- @click="shuffle()"
- v-if="playlist.isUserModifiable"
- >
- Shuffle
- </button>
- <h5>Edit playlist details:</h5>
- -->
- </div>
- </template>
- <template #footer>
- <a
- class="button is-default"
- v-if="
- userId === playlist.createdBy ||
- isEditable() ||
- playlist.privacy === 'public'
- "
- @click="downloadPlaylist()"
- href="#"
- >
- Download Playlist
- </a>
- <div class="right">
- <confirm
- v-if="playlist.type === 'station'"
- @confirm="clearAndRefillStationPlaylist()"
- >
- <a class="button is-danger">
- Clear and refill station playlist
- </a>
- </confirm>
- <confirm
- v-if="playlist.type === 'genre'"
- @confirm="clearAndRefillGenrePlaylist()"
- >
- <a class="button is-danger">
- Clear and refill genre playlist
- </a>
- </confirm>
- <confirm v-if="isEditable()" @confirm="removePlaylist()">
- <a class="button is-danger"> Remove Playlist </a>
- </confirm>
- </div>
- </template>
- </modal>
- </template>
- <script>
- import { mapState, mapGetters, mapActions } from "vuex";
- import draggable from "vuedraggable";
- import Toast from "toasters";
- import Confirm from "@/components/Confirm.vue";
- import Modal from "../../Modal.vue";
- import SongItem from "../../SongItem.vue";
- import Settings from "./Tabs/Settings.vue";
- import Youtube from "./Tabs/Youtube.vue";
- import utils from "../../../../js/utils";
- export default {
- components: { Modal, draggable, Confirm, SongItem, Settings, Youtube },
- data() {
- return {
- utils,
- drag: false,
- apiDomain: ""
- };
- },
- computed: {
- ...mapState("station", {
- station: state => state.station
- }),
- ...mapState("user/playlists", {
- editing: state => state.editing
- }),
- ...mapState("modals/editPlaylist", {
- tab: state => state.tab,
- playlist: state => state.playlist
- }),
- playlistSongs: {
- get() {
- return this.$store.state.modals.editPlaylist.playlist.songs;
- },
- set(value) {
- this.$store.commit(
- "modals/editPlaylist/updatePlaylistSongs",
- value
- );
- }
- },
- ...mapState({
- userId: state => state.user.auth.userId,
- userRole: state => state.user.auth.role
- }),
- dragOptions() {
- return {
- animation: 200,
- group: "songs",
- disabled: !this.isEditable(),
- ghostClass: "draggable-list-ghost"
- };
- },
- ...mapGetters({
- socket: "websockets/getSocket"
- })
- },
- mounted() {
- this.socket.dispatch("playlists.getPlaylist", this.editing, res => {
- if (res.status === "success") {
- // this.playlist = res.data.playlist;
- // this.playlist.songs.sort((a, b) => a.position - b.position);
- this.setPlaylist(res.data.playlist);
- } else new Toast(res.message);
- });
- this.socket.on(
- "event:playlist.song.added",
- res => {
- if (this.playlist._id === res.data.playlistId)
- this.addSong(res.data.song);
- },
- { modal: "editPlaylist" }
- );
- this.socket.on(
- "event:playlist.song.removed",
- res => {
- if (this.playlist._id === res.data.playlistId) {
- // remove song from array of playlists
- this.removeSong(res.data.youtubeId);
- // // if this song is in search results, mark it available to add to the playlist again
- // this.search.songs.results.forEach((searchItem, index) => {
- // if (res.data.youtubeId === searchItem.id) {
- // this.search.songs.results[
- // index
- // ].isAddedToQueue = false;
- // }
- // });
- }
- },
- { modal: "editPlaylist" }
- );
- this.socket.on(
- "event:playlist.displayName.updated",
- res => {
- if (this.playlist._id === res.data.playlistId) {
- const playlist = {
- displayName: res.data.displayName,
- ...this.playlist
- };
- this.setPlaylist(playlist);
- }
- },
- { modal: "editPlaylist" }
- );
- this.socket.on(
- "event:playlist.song.repositioned",
- res => {
- if (this.playlist._id === res.data.playlistId) {
- const { song, playlistId } = res.data;
- if (this.playlist._id === playlistId) {
- this.repositionedSong(song);
- }
- }
- },
- { modal: "editPlaylist" }
- );
- },
- methods: {
- isEditable() {
- return (
- this.playlist.isUserModifiable &&
- (this.userId === this.playlist.createdBy ||
- this.userRole === "admin")
- );
- },
- isAdmin() {
- return this.userRole === "admin";
- },
- repositionSong({ moved }) {
- if (!moved) return; // we only need to update when song is moved
- this.socket.dispatch(
- "playlists.repositionSong",
- this.playlist._id,
- {
- ...moved.element,
- oldIndex: moved.oldIndex,
- newIndex: moved.newIndex
- },
- res => {
- if (res.status !== "success")
- this.repositionedSong({
- ...moved.element,
- newIndex: moved.oldIndex,
- oldIndex: moved.newIndex
- });
- }
- );
- },
- moveSongToTop(song, index) {
- this.repositionSong({
- moved: {
- element: song,
- oldIndex: index,
- newIndex: 0
- }
- });
- },
- moveSongToBottom(song, index) {
- this.repositionSong({
- moved: {
- element: song,
- oldIndex: index,
- newIndex: this.playlistSongs.length
- }
- });
- },
- totalLength() {
- let length = 0;
- this.playlist.songs.forEach(song => {
- length += song.duration;
- });
- return this.utils.formatTimeLong(length);
- },
- shuffle() {
- this.socket.dispatch(
- "playlists.shuffle",
- this.playlist._id,
- res => {
- new Toast(res.message);
- if (res.status === "success") {
- this.updatePlaylistSongs(
- res.data.playlist.songs.sort(
- (a, b) => a.position - b.position
- )
- );
- }
- }
- );
- },
- removeSongFromPlaylist(id) {
- if (this.playlist.displayName === "Liked Songs")
- return this.socket.dispatch("songs.unlike", id, res => {
- new Toast(res.message);
- });
- if (this.playlist.displayName === "Disliked Songs")
- return this.socket.dispatch("songs.undislike", id, res => {
- new Toast(res.message);
- });
- return this.socket.dispatch(
- "playlists.removeSongFromPlaylist",
- id,
- this.playlist._id,
- res => {
- new Toast(res.message);
- }
- );
- },
- removePlaylist() {
- this.socket.dispatch("playlists.remove", this.playlist._id, res => {
- new Toast(res.message);
- if (res.status === "success") this.closeModal("editPlaylist");
- });
- },
- async downloadPlaylist() {
- if (this.apiDomain === "")
- this.apiDomain = await lofig.get("apiDomain");
- fetch(
- `${this.apiDomain}/export/privatePlaylist/${this.playlist._id}`,
- { credentials: "include" }
- )
- .then(res => res.blob())
- .then(blob => {
- const url = window.URL.createObjectURL(blob);
- const a = document.createElement("a");
- a.style.display = "none";
- a.href = url;
- a.download = `musare-privateplaylist-${
- this.playlist._id
- }-${new Date().toISOString()}.json`;
- document.body.appendChild(a);
- a.click();
- window.URL.revokeObjectURL(url);
- new Toast("Successfully downloaded playlist.");
- })
- .catch(
- () => new Toast("Failed to export and download playlist.")
- );
- },
- addSongToQueue(youtubeId) {
- this.socket.dispatch(
- "stations.addToQueue",
- this.station._id,
- youtubeId,
- data => {
- if (data.status !== "success")
- new Toast({
- content: `Error: ${data.message}`,
- timeout: 8000
- });
- else new Toast({ content: data.message, timeout: 4000 });
- }
- );
- },
- clearAndRefillStationPlaylist() {
- this.socket.dispatch(
- "playlists.clearAndRefillStationPlaylist",
- this.playlist._id,
- data => {
- console.log(data.message);
- if (data.status !== "success")
- new Toast({
- content: `Error: ${data.message}`,
- timeout: 8000
- });
- else new Toast({ content: data.message, timeout: 4000 });
- }
- );
- },
- clearAndRefillGenrePlaylist() {
- this.socket.dispatch(
- "playlists.clearAndRefillGenrePlaylist",
- this.playlist._id,
- data => {
- if (data.status !== "success")
- new Toast({
- content: `Error: ${data.message}`,
- timeout: 8000
- });
- else new Toast({ content: data.message, timeout: 4000 });
- }
- );
- },
- ...mapActions({
- showTab(dispatch, payload) {
- this.$refs[`${payload}-tab`].scrollIntoView();
- return dispatch("modals/editPlaylist/showTab", payload);
- }
- }),
- ...mapActions("modals/editPlaylist", [
- "setPlaylist",
- "addSong",
- "removeSong",
- "repositionedSong"
- ]),
- ...mapActions("modalVisibility", ["openModal", "closeModal"])
- }
- };
- </script>
- <style lang="scss">
- .edit-playlist-modal {
- .modal-card {
- width: 1300px;
- .modal-card-body {
- padding: 16px;
- }
- }
- }
- </style>
- <style lang="scss" scoped>
- .night-mode {
- .label,
- p,
- strong {
- color: var(--light-grey-2);
- }
- }
- .menu-list li {
- display: flex;
- justify-content: space-between;
- &:not(:last-of-type) {
- margin-bottom: 10px;
- }
- a {
- display: flex;
- }
- }
- .controls {
- display: flex;
- a {
- display: flex;
- align-items: center;
- }
- }
- @media screen and (max-width: 1300px) {
- .edit-playlist-modal .edit-playlist-modal-inner-container {
- height: auto !important;
- /deep/ .section {
- max-width: 100% !important;
- }
- }
- }
- #tabs-container {
- // padding: 16px;
- #tab-selection {
- display: flex;
- overflow-x: auto;
- margin: 24px 10px 0 10px;
- .button {
- border-radius: 5px 5px 0 0;
- border: 0;
- text-transform: uppercase;
- font-size: 14px;
- color: var(--dark-grey-3);
- background-color: var(--light-grey-2);
- flex-grow: 1;
- height: 32px;
- &:not(:first-of-type) {
- margin-left: 5px;
- }
- }
- .selected {
- background-color: var(--primary-color) !important;
- color: var(--white) !important;
- font-weight: 600;
- }
- }
- .tab {
- border: 1px solid var(--light-grey-3);
- // padding: 15px;
- border-radius: 0 0 5px 5px;
- }
- }
- .edit-playlist-modal {
- .edit-playlist-modal-inner-container {
- display: flex;
- flex-wrap: wrap;
- height: 100%;
- &.view-only {
- height: auto !important;
- #first-column {
- flex-basis: 100%;
- }
- /deep/ .section {
- max-width: 100% !important;
- }
- }
- }
- .nothing-here-text {
- display: flex;
- align-items: center;
- justify-content: center;
- }
- /deep/ .section {
- padding: 15px !important;
- margin: 0 10px;
- max-width: 600px;
- display: flex;
- flex-direction: column;
- flex-grow: 1;
- }
- .label {
- font-size: 1rem;
- font-weight: normal;
- }
- .input-with-button .button {
- width: 150px;
- }
- #first-column {
- max-width: 100%;
- height: 100%;
- overflow-y: auto;
- flex-grow: 1;
- /deep/ .section {
- width: auto;
- }
- #playlist-info-section {
- border: 1px solid var(--light-grey-3);
- border-radius: 3px;
- padding: 15px !important;
- h3 {
- font-weight: 600;
- font-size: 30px;
- }
- h5 {
- font-size: 18px;
- }
- h3,
- h5 {
- margin: 0;
- }
- }
- }
- #second-column {
- max-width: 100%;
- height: 100%;
- overflow-y: auto;
- flex-grow: 1;
- }
- }
- </style>
|