123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415 |
- <template>
- <edit-song
- :bulk="true"
- v-if="!closed && currentSong"
- @savedSuccess="onSavedSuccess"
- @savedError="onSavedError"
- @saving="onSaving"
- @toggleFlag="toggleFlag"
- @nextSong="editNextSong"
- >
- <template v-if="items.length > 1" #sidebar>
- <div class="sidebar">
- <header class="sidebar-head">
- <h2 class="sidebar-title is-marginless">Edit Queue</h2>
- <!-- <span class="delete material-icons" @click="closeCurrentModal()"
- >highlight_off</span
- > -->
- </header>
- <section class="sidebar-body">
- <div
- class="item"
- v-for="(
- { status, flagged, song }, index
- ) in filteredItems"
- :key="song._id"
- >
- <song-item
- :song="song"
- :thumbnail="false"
- :duration="false"
- :disabled-actions="
- song.removed ? ['all'] : ['report', 'edit']
- "
- :class="{
- updated: song.updated,
- removed: song.removed
- }"
- >
- <template #leftIcon>
- <i
- v-if="currentSong._id === song._id"
- class="
- material-icons
- item-icon
- editing-icon
- "
- content="Currently editing song"
- v-tippy="{ theme: 'info' }"
- >edit</i
- >
- <i
- v-else-if="song.removed"
- class="
- material-icons
- item-icon
- removed-icon
- "
- content="Song removed"
- v-tippy="{ theme: 'info' }"
- >delete_forever</i
- >
- <i
- v-else-if="status === 'error'"
- class="material-icons item-icon error-icon"
- content="Error saving song"
- v-tippy="{ theme: 'info' }"
- >error</i
- >
- <i
- v-else-if="status === 'saving'"
- class="material-icons item-icon saving-icon"
- content="Currently saving song"
- v-tippy="{ theme: 'info' }"
- >pending</i
- >
- <i
- v-else-if="flagged"
- class="material-icons item-icon flag-icon"
- content="Song flagged"
- v-tippy="{ theme: 'info' }"
- >flag_circle</i
- >
- <i
- v-else-if="status === 'done'"
- class="material-icons item-icon done-icon"
- content="Song marked complete"
- v-tippy="{ theme: 'info' }"
- >check_circle</i
- >
- <i
- v-else-if="status === 'todo'"
- class="material-icons item-icon todo-icon"
- content="Song marked todo"
- v-tippy="{ theme: 'info' }"
- >cancel</i
- >
- </template>
- <template v-if="!song.removed" #actions>
- <i
- class="material-icons edit-icon"
- content="Edit Song"
- v-tippy
- @click="pickSong(song)"
- >
- edit
- </i>
- </template>
- <template #tippyActions>
- <i
- class="material-icons flag-icon"
- :class="{ flagged }"
- content="Toggle Flag"
- v-tippy
- @click="toggleFlag(index)"
- >
- flag_circle
- </i>
- </template>
- </song-item>
- </div>
- <p v-if="filteredItems.length === 0" class="no-items">
- {{
- flagFilter
- ? "No flagged songs queued"
- : "No songs queued"
- }}
- </p>
- </section>
- <footer class="sidebar-foot">
- <button
- @click="toggleFlagFilter()"
- class="button is-primary"
- >
- {{
- flagFilter
- ? "Show All Songs"
- : "Show Only Flagged Songs"
- }}
- </button>
- </footer>
- </div>
- </template>
- </edit-song>
- </template>
- <script>
- // eslint-disable-next-line no-unused-vars
- import { mapState, mapActions, mapGetters } from "vuex";
- import { defineAsyncComponent } from "vue";
- import SongItem from "@/components/SongItem.vue";
- export default {
- components: {
- EditSong: defineAsyncComponent(() =>
- import("@/components/modals/EditSong")
- ),
- SongItem
- },
- props: {},
- data() {
- return {
- items: [],
- currentSong: {},
- closed: false,
- flagFilter: false
- };
- },
- computed: {
- editingItemIndex() {
- return this.items.findIndex(
- item => item.song._id === this.currentSong._id
- );
- },
- filteredEditingItemIndex() {
- return this.filteredItems.findIndex(
- item => item.song._id === this.currentSong._id
- );
- },
- filteredItems: {
- get() {
- return this.items.filter(item =>
- this.flagFilter ? item.flagged : true
- );
- },
- set(newItem) {
- const index = this.items.findIndex(
- item => item.song._id === newItem._id
- );
- this.item[index] = newItem;
- }
- },
- ...mapState("modals/editSongs", {
- songIds: state => state.songIds,
- songPrefillData: state => state.songPrefillData
- }),
- ...mapGetters({
- socket: "websockets/getSocket"
- })
- },
- async mounted() {
- this.socket.dispatch("apis.joinRoom", "edit-songs");
- this.socket.dispatch("songs.getSongsFromSongIds", this.songIds, res => {
- res.data.songs.forEach(song => {
- this.items.push({
- status: "todo",
- flagged: false,
- song
- });
- });
- this.editNextSong();
- });
- this.socket.on(`event:admin.song.updated`, res => {
- const index = this.items
- .map(item => item.song._id)
- .indexOf(res.data.song._id);
- this.items[index].song = {
- ...this.items[index].song,
- ...res.data.song,
- updated: true
- };
- });
- this.socket.on(`event:admin.song.removed`, res => {
- const index = this.items
- .map(item => item.song._id)
- .indexOf(res.songId);
- this.items[index].song.removed = true;
- });
- },
- beforeUnmount() {
- this.socket.dispatch("apis.leaveRoom", "edit-songs");
- },
- methods: {
- pickSong(song) {
- this.editSong({
- songId: song._id,
- prefill: this.songPrefillData[song._id]
- });
- this.currentSong = song;
- // this.items[
- // this.items.findIndex(item => item.song._id === song._id)
- // ].status = "editing";
- },
- closeEditSongs() {
- this.closed = true;
- },
- editNextSong() {
- const currentlyEditingSongIndex = this.filteredEditingItemIndex;
- let newEditingSongIndex = -1;
- const index =
- currentlyEditingSongIndex + 1 === this.filteredItems.length
- ? 0
- : currentlyEditingSongIndex + 1;
- for (let i = index; i < this.filteredItems.length; i += 1) {
- if (!this.flagFilter || this.filteredItems[i].flagged) {
- newEditingSongIndex = i;
- break;
- }
- }
- if (newEditingSongIndex > -1)
- this.pickSong(this.filteredItems[newEditingSongIndex].song);
- },
- toggleFlag(songIndex = null) {
- const index = songIndex || this.editingItemIndex;
- if (index > -1)
- this.items[index].flagged = !this.items[index].flagged;
- },
- onSavedSuccess(songId) {
- const itemIndex = this.items.findIndex(
- item => item.song._id === songId
- );
- if (itemIndex > -1) this.items[itemIndex].status = "done";
- },
- onSavedError(songId) {
- const itemIndex = this.items.findIndex(
- item => item.song._id === songId
- );
- if (itemIndex > -1) this.items[itemIndex].status = "error";
- },
- onSaving(songId) {
- const itemIndex = this.items.findIndex(
- item => item.song._id === songId
- );
- if (itemIndex > -1) this.items[itemIndex].status = "saving";
- },
- toggleFlagFilter() {
- this.flagFilter = !this.flagFilter;
- },
- ...mapActions("modals/editSong", ["editSong"])
- }
- };
- </script>
- <style lang="scss" scoped>
- .sidebar {
- width: 350px;
- z-index: 2000;
- display: flex;
- flex-direction: column;
- position: relative;
- height: 100%;
- max-height: calc(100vh - 40px);
- overflow: auto;
- margin-right: 8px;
- // padding: 10px;
- border-radius: 5px;
- .sidebar-head,
- .sidebar-foot {
- display: flex;
- flex-shrink: 0;
- position: relative;
- justify-content: flex-start;
- align-items: center;
- padding: 20px;
- background-color: var(--light-grey);
- }
- .sidebar-head {
- border-bottom: 1px solid var(--light-grey-2);
- border-radius: 5px 5px 0 0;
- .sidebar-title {
- display: flex;
- flex: 1;
- margin: 0;
- font-size: 26px;
- font-weight: 600;
- }
- // .delete.material-icons {
- // font-size: 28px;
- // cursor: pointer;
- // user-select: none;
- // -webkit-user-drag: none;
- // &:hover,
- // &:focus {
- // filter: brightness(90%);
- // }
- // }
- }
- .sidebar-body {
- background-color: var(--white);
- display: flex;
- flex-direction: column;
- row-gap: 8px;
- flex: 1;
- overflow: auto;
- padding: 10px;
- .item {
- display: flex;
- flex-direction: row;
- align-items: center;
- column-gap: 8px;
- /deep/ .song-item {
- .item-icon {
- margin-right: 10px;
- cursor: pointer;
- }
- .removed-icon,
- .error-icon {
- color: var(--red);
- }
- .saving-icon,
- .todo-icon,
- .editing-icon {
- color: var(--primary-color);
- }
- .done-icon {
- color: var(--green);
- }
- .flag-icon {
- color: var(--orange);
- &.flagged {
- color: var(--grey);
- }
- }
- &.removed {
- filter: grayscale(100%);
- cursor: not-allowed;
- user-select: none;
- }
- }
- }
- .no-items {
- text-align: center;
- font-size: 18px;
- }
- }
- .sidebar-foot {
- border-top: 1px solid var(--light-grey-2);
- border-radius: 0 0 5px 5px;
- .button {
- flex: 1;
- }
- }
- }
- </style>
|