123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371 |
- <script setup lang="ts">
- import { defineAsyncComponent, ref, computed, onMounted } from "vue";
- import Toast from "toasters";
- import { useWebsocketsStore } from "@/stores/websockets";
- import { useStationStore } from "@/stores/station";
- import { useManageStationStore } from "@/stores/manageStation";
- import { useSearchYoutube } from "@/composables/useSearchYoutube";
- import { useSearchMusare } from "@/composables/useSearchMusare";
- const SongItem = defineAsyncComponent(
- () => import("@/components/SongItem.vue")
- );
- const SearchQueryItem = defineAsyncComponent(
- () => import("@/components/SearchQueryItem.vue")
- );
- const PlaylistTabBase = defineAsyncComponent(
- () => import("@/components/PlaylistTabBase.vue")
- );
- const props = defineProps({
- modalUuid: { type: String, required: true },
- sector: { type: String, default: "station" },
- disableAutoRequest: { type: Boolean, default: false }
- });
- const { youtubeSearch, searchForSongs, loadMoreSongs } = useSearchYoutube();
- const { musareSearch, searchForMusareSongs } = useSearchMusare();
- const { socket } = useWebsocketsStore();
- const stationStore = useStationStore();
- const manageStationStore = useManageStationStore(props);
- const tab = ref("songs");
- const sitename = ref("Musare");
- const tabs = 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 blacklist = computed({
- // get() {
- // if (props.sector === "manageStation") return manageStationStore.blacklist;
- // return stationStore.blacklist;
- // },
- // set(value) {
- // if (props.sector === "manageStation")
- // manageStationStore.setBlacklist(value);
- // else stationStore.setBlacklist(value);
- // }
- // });
- const songsList = 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 musareResultsLeftCount = computed(
- () => musareSearch.value.count - musareSearch.value.results.length
- );
- const nextPageMusareResultsCount = computed(() =>
- Math.min(musareSearch.value.pageSize, musareResultsLeftCount.value)
- );
- const songsInQueue = computed(() => {
- if (station.value.currentSong)
- return songsList.value
- .map(song => song.youtubeId)
- .concat(station.value.currentSong.youtubeId);
- return songsList.value.map(song => song.youtubeId);
- });
- // const currentUserQueueSongs = computed(
- // () =>
- // songsList.value.filter(
- // queueSong => queueSong.requestedBy === userId.value
- // ).length
- // );
- const showTab = _tab => {
- tabs.value[`${_tab}-tab`].scrollIntoView({ block: "nearest" });
- tab.value = _tab;
- };
- const addSongToQueue = (youtubeId: string, index?: number) => {
- socket.dispatch(
- "stations.addToQueue",
- station.value._id,
- youtubeId,
- res => {
- if (res.status !== "success") new Toast(`Error: ${res.message}`);
- else {
- if (index)
- youtubeSearch.value.songs.results[index].isAddedToQueue =
- true;
- new Toast(res.message);
- }
- }
- );
- };
- onMounted(async () => {
- sitename.value = await lofig.get("siteSettings.sitename");
- showTab("songs");
- });
- </script>
- <template>
- <div class="station-playlists">
- <p class="top-info has-text-centered">
- Add songs to the queue or automatically request songs from playlists
- </p>
- <div class="tabs-container">
- <div class="tab-selection">
- <button
- class="button is-default"
- :ref="el => (tabs['songs-tab'] = el)"
- :class="{ selected: tab === 'songs' }"
- @click="showTab('songs')"
- >
- Songs
- </button>
- <button
- v-if="!disableAutoRequest"
- class="button is-default"
- :ref="el => (tabs['autorequest-tab'] = el)"
- :class="{ selected: tab === 'autorequest' }"
- @click="showTab('autorequest')"
- >
- Autorequest
- </button>
- <button
- v-else
- class="button is-default disabled"
- content="Only available on station pages"
- v-tippy
- >
- Autorequest
- </button>
- </div>
- <div class="tab" v-show="tab === 'songs'">
- <div class="musare-songs">
- <label class="label">
- Search for a song on {{ sitename }}
- </label>
- <div class="control is-grouped input-with-button">
- <p class="control is-expanded">
- <input
- class="input"
- type="text"
- placeholder="Enter your song query here..."
- v-model="musareSearch.query"
- @keyup.enter="searchForMusareSongs(1)"
- />
- </p>
- <p class="control">
- <a
- class="button is-info"
- @click="searchForMusareSongs(1)"
- ><i class="material-icons icon-with-button"
- >search</i
- >Search</a
- >
- </p>
- </div>
- <div v-if="musareSearch.results.length > 0">
- <song-item
- v-for="song in musareSearch.results"
- :key="song._id"
- :song="song"
- >
- <template #actions>
- <transition
- name="musare-search-query-actions"
- mode="out-in"
- >
- <i
- v-if="
- songsInQueue.indexOf(
- song.youtubeId
- ) !== -1
- "
- class="material-icons added-to-playlist-icon"
- content="Song is already in queue"
- v-tippy
- >done</i
- >
- <i
- v-else
- class="material-icons add-to-queue-icon"
- @click="addSongToQueue(song.youtubeId)"
- content="Add Song to Queue"
- v-tippy
- >queue</i
- >
- </transition>
- </template>
- </song-item>
- <button
- v-if="musareResultsLeftCount > 0"
- class="button is-primary load-more-button"
- @click="searchForMusareSongs(musareSearch.page + 1)"
- >
- Load {{ nextPageMusareResultsCount }} more results
- </button>
- </div>
- </div>
- <div class="youtube-search">
- <label class="label"> Search for a song on YouTube </label>
- <div class="control is-grouped input-with-button">
- <p class="control is-expanded">
- <input
- class="input"
- type="text"
- placeholder="Enter your YouTube query here..."
- v-model="youtubeSearch.songs.query"
- autofocus
- @keyup.enter="searchForSongs()"
- />
- </p>
- <p class="control">
- <a
- class="button is-info"
- @click.prevent="searchForSongs()"
- ><i class="material-icons icon-with-button"
- >search</i
- >Search</a
- >
- </p>
- </div>
- <div
- v-if="youtubeSearch.songs.results.length > 0"
- id="song-query-results"
- >
- <search-query-item
- v-for="(result, index) in youtubeSearch.songs
- .results"
- :key="result.id"
- :result="result"
- >
- <template #actions>
- <transition
- name="youtube-search-query-actions"
- mode="out-in"
- >
- <i
- v-if="
- songsInQueue.indexOf(result.id) !==
- -1
- "
- class="material-icons added-to-playlist-icon"
- content="Song is already in queue"
- v-tippy
- >done</i
- >
- <i
- v-else
- class="material-icons add-to-queue-icon"
- @click="
- addSongToQueue(result.id, index)
- "
- content="Add Song to Queue"
- v-tippy
- >queue</i
- >
- </transition>
- </template>
- </search-query-item>
- <a
- class="button is-primary load-more-button"
- @click.prevent="loadMoreSongs()"
- >
- Load more...
- </a>
- </div>
- </div>
- </div>
- <playlist-tab-base
- v-if="!disableAutoRequest"
- class="tab"
- v-show="tab === 'autorequest'"
- :type="'autorequest'"
- :sector="sector"
- :modal-uuid="modalUuid"
- />
- </div>
- </div>
- </template>
- <style lang="less" scoped>
- .night-mode {
- .tabs-container .tab-selection .button {
- background: var(--dark-grey) !important;
- color: var(--white) !important;
- }
- }
- :deep(#create-new-playlist-button) {
- width: 100%;
- }
- .station-playlists {
- .top-info {
- font-size: 15px;
- margin-bottom: 15px;
- }
- .tabs-container {
- .tab-selection {
- display: flex;
- overflow-x: auto;
- .button {
- border-radius: 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 {
- padding: 10px 0;
- border-radius: 0;
- .item.item-draggable:not(:last-of-type) {
- margin-bottom: 10px;
- }
- .load-more-button {
- width: 100%;
- margin-top: 10px;
- }
- }
- }
- }
- .youtube-search {
- margin-top: 10px;
- .search-query-item:not(:last-of-type) {
- margin-bottom: 10px;
- }
- }
- </style>
|