123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247 |
- <script setup lang="ts">
- import { defineAsyncComponent, ref, computed, onUpdated } from "vue";
- import Toast from "toasters";
- import { storeToRefs } from "pinia";
- import { useWebsocketsStore } from "@/stores/websockets";
- import { useStationStore } from "@/stores/station";
- import { useUserAuthStore } from "@/stores/userAuth";
- import { useManageStationStore } from "@/stores/manageStation";
- const SongItem = defineAsyncComponent(
- () => import("@/components/SongItem.vue")
- );
- const QuickConfirm = defineAsyncComponent(
- () => import("@/components/QuickConfirm.vue")
- );
- const Draggable = defineAsyncComponent(
- () => import("@/components/Draggable.vue")
- );
- const props = defineProps({
- modalUuid: { type: String, default: "" },
- sector: { type: String, default: "station" }
- });
- const { socket } = useWebsocketsStore();
- const stationStore = useStationStore();
- const userAuthStore = useUserAuthStore();
- const manageStationStore = useManageStationStore(props);
- const { loggedIn, userId, role: userRole } = storeToRefs(userAuthStore);
- const actionableButtonVisible = ref(false);
- const drag = ref(false);
- const songItems = ref([]);
- const station = computed({
- get: () => {
- if (props.sector === "manageStation") return manageStationStore.station;
- return stationStore.station;
- },
- set: value => {
- if (props.sector === "manageStation")
- manageStationStore.updateStation(value);
- else stationStore.updateStation(value);
- }
- });
- const queue = computed({
- get: () => {
- if (props.sector === "manageStation")
- return manageStationStore.songsList;
- return stationStore.songsList;
- },
- set: value => {
- if (props.sector === "manageStation")
- manageStationStore.updateSongsList(value);
- else stationStore.updateSongsList(value);
- }
- });
- 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 = ({ moved }) => {
- const { oldIndex, newIndex } = moved;
- if (oldIndex === newIndex) return; // we only need to update when song is moved
- const song = queue.value[newIndex];
- socket.dispatch(
- "stations.repositionSongInQueue",
- station.value._id,
- {
- ...song,
- oldIndex,
- newIndex
- },
- res => {
- new Toast({ content: res.message, timeout: 4000 });
- if (res.status !== "success")
- queue.value.splice(
- oldIndex,
- 0,
- queue.value.splice(newIndex, 1)[0]
- );
- }
- );
- };
- const moveSongToTop = index => {
- songItems.value[`song-item-${index}`].$refs.songActions.tippy.hide();
- queue.value.splice(0, 0, queue.value.splice(index, 1)[0]);
- repositionSongInQueue({
- moved: {
- oldIndex: index,
- newIndex: 0
- }
- });
- };
- const moveSongToBottom = index => {
- songItems.value[`song-item-${index}`].$refs.songActions.tippy.hide();
- queue.value.splice(
- queue.value.length - 1,
- 0,
- queue.value.splice(index, 1)[0]
- );
- repositionSongInQueue({
- moved: {
- oldIndex: index,
- newIndex: queue.value.length - 1
- }
- });
- };
- 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
- }"
- >
- <draggable
- :component-data="{
- name: !drag ? 'draggable-list-transition' : null
- }"
- :name="`queue-${modalUuid}-${sector}`"
- v-model:list="queue"
- item-key="_id"
- :options="dragOptions"
- @start="drag = true"
- @end="drag = false"
- @update="repositionSongInQueue"
- :disabled="!(isAdminOnly() || isOwnerOnly())"
- >
- <template #item="{ element, index }">
- <song-item
- :song="element"
- :requested-by="true"
- :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>
- </draggable>
- </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%;
- }
- :deep(.draggable-item:not(:last-of-type)) {
- margin-bottom: 10px;
- }
- #queue-locked {
- display: flex;
- justify-content: center;
- }
- button.disabled {
- filter: grayscale(0.4);
- }
- }
- </style>
|