123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248 |
- <script setup lang="ts">
- import { useStore } from "vuex";
- import { defineAsyncComponent, ref, computed, onUpdated } from "vue";
- import { Sortable } from "sortablejs-vue3";
- import Toast from "toasters";
- const SongItem = defineAsyncComponent(
- () => import("@/components/SongItem.vue")
- );
- const props = defineProps({
- modalUuid: { type: String, default: "" },
- sector: { type: String, default: "station" }
- });
- const store = useStore();
- const loggedIn = computed(() => store.state.user.auth.loggedIn);
- const userId = computed(() => store.state.user.auth.userId);
- const userRole = computed(() => store.state.user.auth.role);
- const { socket } = store.state.websockets;
- const repositionSongInList = payload => {
- if (props.sector === "manageStation")
- return store.dispatch(
- "modals/manageStation/repositionSongInList",
- payload
- );
- return store.dispatch("station/repositionSongInList", payload);
- };
- const actionableButtonVisible = ref(false);
- const drag = ref(false);
- const songItems = ref([]);
- const station = computed({
- get: () => {
- if (props.sector === "manageStation")
- return store.state.modals.manageStation[props.modalUuid].station;
- return store.state.station.station;
- },
- set: station => {
- if (props.sector === "manageStation")
- store.commit(
- `modals/manageStation/${props.modalUuid}/updateStation`,
- station
- );
- else store.commit("station/updateStation", station);
- }
- });
- const queue = computed({
- get: () => {
- if (props.sector === "manageStation")
- return store.state.modals.manageStation[props.modalUuid].songsList;
- return store.state.station.songsList;
- },
- set: queue => {
- if (props.sector === "manageStation")
- store.commit(
- `modals/manageStation/${props.modalUuid}/updateSongsList`,
- queue
- );
- else store.commit("station/updateSongsList", queue);
- }
- });
- const isOwnerOnly = () =>
- loggedIn.value && userId.value === station.value.owner;
- const isAdminOnly = () => loggedIn.value && userRole.value === "admin";
- const dragOptions = computed(() => ({
- animation: 200,
- group: "queue",
- disabled: !(isAdminOnly() || isOwnerOnly()),
- ghostClass: "draggable-list-ghost"
- }));
- const removeFromQueue = youtubeId => {
- socket.dispatch(
- "stations.removeFromQueue",
- station.value._id,
- youtubeId,
- res => {
- if (res.status === "success")
- new Toast("Successfully removed song from the queue.");
- else new Toast(res.message);
- }
- );
- };
- const repositionSongInQueue = ({ oldIndex, newIndex }) => {
- if (oldIndex === newIndex) return; // we only need to update when song is moved
- const song = queue.value[oldIndex];
- socket.dispatch(
- "stations.repositionSongInQueue",
- station.value._id,
- {
- ...song,
- oldIndex,
- newIndex
- },
- res => {
- new Toast({ content: res.message, timeout: 4000 });
- if (res.status !== "success")
- repositionSongInList({
- ...song,
- oldIndex,
- newIndex
- });
- }
- );
- };
- const moveSongToTop = index => {
- songItems.value[`song-item-${index}`].$refs.songActions.tippy.hide();
- repositionSongInQueue({
- oldIndex: index,
- newIndex: 0
- });
- };
- const moveSongToBottom = index => {
- songItems.value[`song-item-${index}`].$refs.songActions.tippy.hide();
- repositionSongInQueue({
- oldIndex: index,
- newIndex: queue.value.length
- });
- };
- onUpdated(() => {
- // check if actionable button is visible, if not: set max-height of queue items to 100%
- actionableButtonVisible.value =
- document
- .getElementById("queue")
- .querySelectorAll(".tab-actionable-button").length > 0;
- });
- </script>
- <template>
- <div id="queue">
- <div
- v-if="queue.length > 0"
- :class="{
- 'actionable-button-hidden': !actionableButtonVisible,
- 'scrollable-list': true
- }"
- >
- <Sortable
- :component-data="{
- name: !drag ? 'draggable-list-transition' : null
- }"
- :list="queue"
- item-key="_id"
- :options="dragOptions"
- @start="drag = true"
- @end="drag = false"
- @update="repositionSongInQueue"
- >
- <template #item="{ element, index }">
- <song-item
- :song="element"
- :requested-by="true"
- :class="{
- 'item-draggable': isAdminOnly() || isOwnerOnly()
- }"
- :disabled-actions="[]"
- :ref="el => (songItems[`song-item-${index}`] = el)"
- >
- <template
- v-if="isAdminOnly() || isOwnerOnly()"
- #tippyActions
- >
- <quick-confirm
- v-if="isOwnerOnly() || isAdminOnly()"
- placement="left"
- @confirm="removeFromQueue(element.youtubeId)"
- >
- <i
- class="material-icons delete-icon"
- content="Remove Song from Queue"
- v-tippy
- >delete_forever</i
- >
- </quick-confirm>
- <i
- class="material-icons"
- v-if="index > 0"
- @click="moveSongToTop(index)"
- content="Move to top of Queue"
- v-tippy
- >vertical_align_top</i
- >
- <i
- v-if="queue.length - 1 !== index"
- @click="moveSongToBottom(index)"
- class="material-icons"
- content="Move to bottom of Queue"
- v-tippy
- >vertical_align_bottom</i
- >
- </template>
- </song-item>
- </template>
- </Sortable>
- </div>
- <p class="nothing-here-text has-text-centered" v-else>
- There are no songs currently queued
- </p>
- </div>
- </template>
- <style lang="less" scoped>
- .night-mode {
- #queue {
- background-color: var(--dark-grey-3) !important;
- border: 0 !important;
- }
- }
- #queue {
- background-color: var(--white);
- border-radius: 0 0 @border-radius @border-radius;
- user-select: none;
- .actionable-button-hidden {
- max-height: 100%;
- }
- .song-item:not(:last-of-type) {
- margin-bottom: 10px;
- }
- #queue-locked {
- display: flex;
- justify-content: center;
- }
- button.disabled {
- filter: grayscale(0.4);
- }
- }
- </style>
|