123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681 |
- <template>
- <modal
- v-if="station"
- :title="
- !isOwnerOrAdmin() && station.partyMode
- ? 'Add Song to Queue'
- : 'Manage Station'
- "
- :style="`--primary-color: var(--${station.theme})`"
- class="manage-station-modal"
- >
- <template #body>
- <div class="custom-modal-body" v-if="station && station._id">
- <div class="left-section">
- <div class="section tabs-container">
- <div class="tab-selection">
- <button
- v-if="isOwnerOrAdmin()"
- class="button is-default"
- :class="{ selected: tab === 'settings' }"
- ref="settings-tab"
- @click="showTab('settings')"
- >
- Settings
- </button>
- <button
- v-if="
- isOwnerOrAdmin() ||
- (loggedIn &&
- station.type === 'community' &&
- station.partyMode &&
- ((station.locked &&
- isOwnerOrAdmin()) ||
- !station.locked))
- "
- class="button is-default"
- :class="{ selected: tab === 'playlists' }"
- ref="playlists-tab"
- @click="showTab('playlists')"
- >
- Playlists
- </button>
- <button
- v-if="
- loggedIn &&
- station.type === 'community' &&
- station.partyMode &&
- ((station.locked && isOwnerOrAdmin()) ||
- !station.locked)
- "
- class="button is-default"
- :class="{ selected: tab === 'search' }"
- ref="search-tab"
- @click="showTab('search')"
- >
- Search
- </button>
- <button
- v-if="isOwnerOrAdmin()"
- class="button is-default"
- :class="{ selected: tab === 'blacklist' }"
- ref="blacklist-tab"
- @click="showTab('blacklist')"
- >
- Blacklist
- </button>
- </div>
- <settings
- v-if="isOwnerOrAdmin()"
- class="tab"
- v-show="tab === 'settings'"
- />
- <playlists
- v-if="
- isOwnerOrAdmin() ||
- (loggedIn &&
- station.type === 'community' &&
- station.partyMode &&
- ((station.locked && isOwnerOrAdmin()) ||
- !station.locked))
- "
- class="tab"
- v-show="tab === 'playlists'"
- />
- <search
- v-if="
- loggedIn &&
- station.type === 'community' &&
- station.partyMode &&
- ((station.locked && isOwnerOrAdmin()) ||
- !station.locked)
- "
- class="tab"
- v-show="tab === 'search'"
- />
- <blacklist
- v-if="isOwnerOrAdmin()"
- class="tab"
- v-show="tab === 'blacklist'"
- />
- </div>
- </div>
- <div class="right-section">
- <div class="section">
- <div class="queue-title">
- <h4 class="section-title">Queue</h4>
- <i
- v-if="isOwnerOrAdmin() && stationPaused"
- @click="resumeStation()"
- class="material-icons resume-station"
- content="Resume Station"
- v-tippy
- >
- play_arrow
- </i>
- <i
- v-if="isOwnerOrAdmin() && !stationPaused"
- @click="pauseStation()"
- class="material-icons pause-station"
- content="Pause Station"
- v-tippy
- >
- pause
- </i>
- <confirm
- v-if="isOwnerOrAdmin()"
- @confirm="skipStation()"
- >
- <i
- class="material-icons skip-station"
- content="Force Skip Station"
- v-tippy
- >
- skip_next
- </i>
- </confirm>
- </div>
- <hr class="section-horizontal-rule" />
- <song-item
- v-if="currentSong._id"
- :song="currentSong"
- :requested-by="
- station.type === 'community' &&
- station.partyMode === true
- "
- header="Currently Playing.."
- class="currently-playing"
- />
- <queue sector="manageStation" />
- </div>
- </div>
- </div>
- </template>
- <template #footer>
- <router-link
- v-if="sector !== 'station' && station.name"
- :to="{
- name: 'station',
- params: { id: station.name }
- }"
- class="button is-primary"
- >
- Go To Station
- </router-link>
- <a
- class="button is-default"
- v-if="isOwnerOrAdmin() && !station.partyMode"
- @click="stationPlaylist()"
- >
- View Station Playlist
- </a>
- <button
- class="button is-primary tab-actionable-button"
- v-if="loggedIn && station.type === 'official'"
- @click="openModal('requestSong')"
- >
- <i class="material-icons icon-with-button">queue</i>
- <span class="optional-desktop-only-text"> Request Song </span>
- </button>
- <div v-if="isOwnerOrAdmin()" class="right">
- <confirm @confirm="clearAndRefillStationQueue()">
- <a class="button is-danger">
- Clear and refill station queue
- </a>
- </confirm>
- <confirm
- v-if="station && station.type === 'community'"
- @confirm="removeStation()"
- >
- <button class="button is-danger">Delete station</button>
- </confirm>
- </div>
- </template>
- </modal>
- </template>
- <script>
- import { mapState, mapGetters, mapActions } from "vuex";
- import Toast from "toasters";
- import Confirm from "@/components/Confirm.vue";
- import Queue from "@/components/Queue.vue";
- import SongItem from "@/components/SongItem.vue";
- import Modal from "../../Modal.vue";
- import Settings from "./Tabs/Settings.vue";
- import Playlists from "./Tabs/Playlists.vue";
- import Search from "./Tabs/Search.vue";
- import Blacklist from "./Tabs/Blacklist.vue";
- export default {
- components: {
- Modal,
- Confirm,
- Queue,
- SongItem,
- Settings,
- Playlists,
- Search,
- Blacklist
- },
- props: {
- stationId: { type: String, default: "" },
- sector: { type: String, default: "admin" }
- },
- computed: {
- ...mapState({
- loggedIn: state => state.user.auth.loggedIn,
- userId: state => state.user.auth.userId,
- role: state => state.user.auth.role
- }),
- ...mapState("modals/manageStation", {
- tab: state => state.tab,
- station: state => state.station,
- originalStation: state => state.originalStation,
- songsList: state => state.songsList,
- includedPlaylists: state => state.includedPlaylists,
- excludedPlaylists: state => state.excludedPlaylists,
- stationPaused: state => state.stationPaused,
- currentSong: state => state.currentSong
- }),
- ...mapGetters({
- socket: "websockets/getSocket"
- })
- },
- mounted() {
- this.socket.dispatch(`stations.getStationById`, this.stationId, res => {
- if (res.status === "success") {
- const { station } = res.data;
- this.editStation(station);
- if (!this.isOwnerOrAdmin() && this.station.partyMode)
- this.showTab("search");
- const currentSong = res.data.station.currentSong
- ? res.data.station.currentSong
- : {};
- this.updateCurrentSong(currentSong);
- this.updateStationPaused(res.data.station.paused);
- this.socket.dispatch(
- "stations.getStationIncludedPlaylistsById",
- this.stationId,
- res => {
- if (res.status === "success")
- this.setIncludedPlaylists(res.data.playlists);
- }
- );
- this.socket.dispatch(
- "stations.getStationExcludedPlaylistsById",
- this.stationId,
- res => {
- if (res.status === "success")
- this.setExcludedPlaylists(res.data.playlists);
- }
- );
- this.socket.dispatch(
- "stations.getQueue",
- this.stationId,
- res => {
- if (res.status === "success")
- this.updateSongsList(res.data.queue);
- }
- );
- this.socket.dispatch(
- "apis.joinRoom",
- `manage-station.${this.stationId}`
- );
- this.socket.on(
- "event:station.name.updated",
- res => {
- this.station.name = res.data.name;
- },
- { modal: "manageStation" }
- );
- this.socket.on(
- "event:station.displayName.updated",
- res => {
- this.station.displayName = res.data.displayName;
- },
- { modal: "manageStation" }
- );
- this.socket.on(
- "event:station.description.updated",
- res => {
- this.station.description = res.data.description;
- },
- { modal: "manageStation" }
- );
- this.socket.on(
- "event:station.partyMode.updated",
- res => {
- if (this.station.type === "community")
- this.station.partyMode = res.data.partyMode;
- },
- { modal: "manageStation" }
- );
- this.socket.on(
- "event:station.playMode.updated",
- res => {
- this.station.playMode = res.data.playMode;
- },
- { modal: "manageStation" }
- );
- this.socket.on(
- "event:station.theme.updated",
- res => {
- const { theme } = res.data;
- this.station.theme = theme;
- },
- { modal: "manageStation" }
- );
- this.socket.on(
- "event:station.privacy.updated",
- res => {
- this.station.privacy = res.data.privacy;
- },
- { modal: "manageStation" }
- );
- this.socket.on(
- "event:station.queue.lock.toggled",
- res => {
- this.station.locked = res.data.locked;
- },
- { modal: "manageStation" }
- );
- this.socket.on(
- "event:station.includedPlaylist",
- res => {
- const { playlist } = res.data;
- const playlistIndex = this.includedPlaylists
- .map(includedPlaylist => includedPlaylist._id)
- .indexOf(playlist._id);
- if (playlistIndex === -1)
- this.includedPlaylists.push(playlist);
- },
- { modal: "manageStation" }
- );
- this.socket.on(
- "event:station.excludedPlaylist",
- res => {
- const { playlist } = res.data;
- const playlistIndex = this.excludedPlaylists
- .map(excludedPlaylist => excludedPlaylist._id)
- .indexOf(playlist._id);
- if (playlistIndex === -1)
- this.excludedPlaylists.push(playlist);
- },
- { modal: "manageStation" }
- );
- this.socket.on(
- "event:station.removedIncludedPlaylist",
- res => {
- const { playlistId } = res.data;
- const playlistIndex = this.includedPlaylists
- .map(playlist => playlist._id)
- .indexOf(playlistId);
- if (playlistIndex >= 0)
- this.includedPlaylists.splice(playlistIndex, 1);
- },
- { modal: "manageStation" }
- );
- this.socket.on(
- "event:station.removedExcludedPlaylist",
- res => {
- const { playlistId } = res.data;
- const playlistIndex = this.excludedPlaylists
- .map(playlist => playlist._id)
- .indexOf(playlistId);
- if (playlistIndex >= 0)
- this.excludedPlaylists.splice(playlistIndex, 1);
- },
- { modal: "manageStation" }
- );
- } else {
- new Toast(`Station with that ID not found`);
- this.closeModal("manageStation");
- }
- });
- this.socket.on(
- "event:station.queue.updated",
- res => this.updateSongsList(res.data.queue),
- { modal: "manageStation" }
- );
- this.socket.on(
- "event:station.queue.song.repositioned",
- res => this.repositionSongInList(res.data.song),
- { modal: "manageStation" }
- );
- this.socket.on(
- "event:station.pause",
- () => this.updateStationPaused(true),
- { modal: "manageStation" }
- );
- this.socket.on(
- "event:station.resume",
- () => this.updateStationPaused(false),
- { modal: "manageStation" }
- );
- this.socket.on(
- "event:station.nextSong",
- res => {
- const { currentSong } = res.data;
- this.updateCurrentSong(currentSong || {});
- },
- { modal: "manageStation" }
- );
- },
- onBeforeUnmount() {
- this.socket.dispatch(
- "apis.leaveRoom",
- `manage-station.${this.stationId}`,
- () => {}
- );
- this.repositionSongInList([]);
- this.clearStation();
- this.showTab("settings");
- },
- methods: {
- isOwner() {
- return this.loggedIn && this.userId === this.station.owner;
- },
- isAdmin() {
- return this.loggedIn && this.role === "admin";
- },
- isOwnerOrAdmin() {
- return this.isOwner() || this.isAdmin();
- },
- removeStation() {
- this.socket.dispatch("stations.remove", this.station._id, res => {
- new Toast(res.message);
- if (res.status === "success") {
- this.closeModal("manageStation");
- }
- });
- },
- resumeStation() {
- this.socket.dispatch("stations.resume", this.station._id, res => {
- if (res.status !== "success")
- new Toast(`Error: ${res.message}`);
- else new Toast("Successfully resumed the station.");
- });
- },
- pauseStation() {
- this.socket.dispatch("stations.pause", this.station._id, res => {
- if (res.status !== "success")
- new Toast(`Error: ${res.message}`);
- else new Toast("Successfully paused the station.");
- });
- },
- skipStation() {
- this.socket.dispatch(
- "stations.forceSkip",
- this.station._id,
- res => {
- if (res.status !== "success")
- new Toast(`Error: ${res.message}`);
- else
- new Toast(
- "Successfully skipped the station's current song."
- );
- }
- );
- },
- clearAndRefillStationQueue() {
- this.socket.dispatch(
- "stations.clearAndRefillStationQueue",
- this.station._id,
- res => {
- if (res.status !== "success")
- new Toast({
- content: `Error: ${res.message}`,
- timeout: 8000
- });
- else new Toast({ content: res.message, timeout: 4000 });
- }
- );
- },
- stationPlaylist() {
- this.socket.dispatch(
- "playlists.getPlaylistForStation",
- this.station._id,
- false,
- res => {
- if (res.status === "success") {
- this.editPlaylist(res.data.playlist._id);
- this.openModal("editPlaylist");
- } else {
- new Toast(res.message);
- }
- }
- );
- },
- ...mapActions("modals/manageStation", [
- "editStation",
- "setIncludedPlaylists",
- "setExcludedPlaylists",
- "clearStation",
- "updateSongsList",
- "repositionSongInList",
- "updateStationPaused",
- "updateCurrentSong"
- ]),
- ...mapActions({
- showTab(dispatch, payload) {
- this.$refs[`${payload}-tab`].scrollIntoView();
- return dispatch("modals/manageStation/showTab", payload);
- }
- }),
- ...mapActions("modalVisibility", ["openModal", "closeModal"]),
- ...mapActions("user/playlists", ["editPlaylist"])
- }
- };
- </script>
- <style lang="scss">
- .manage-station-modal.modal {
- z-index: 1800;
- .modal-card {
- width: 1300px;
- height: 100%;
- overflow: auto;
- .tab > button {
- width: 100%;
- margin-bottom: 10px;
- }
- .currently-playing.song-item {
- .song-info {
- width: calc(100% - 150px);
- }
- .thumbnail {
- min-width: 130px;
- width: 130px;
- height: 130px;
- }
- }
- }
- }
- </style>
- <style lang="scss" scoped>
- .manage-station-modal.modal .modal-card-body .custom-modal-body {
- display: flex;
- flex-wrap: wrap;
- height: 100%;
- .section {
- display: flex;
- flex-direction: column;
- flex-grow: 1;
- width: auto;
- padding: 15px !important;
- margin: 0 10px;
- }
- .left-section {
- flex-basis: 50%;
- height: 100%;
- overflow-y: auto;
- flex-grow: 1;
- .tabs-container {
- .tab-selection {
- display: flex;
- overflow-x: auto;
- .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;
- }
- }
- }
- .right-section {
- flex-basis: 50%;
- height: 100%;
- overflow-y: auto;
- flex-grow: 1;
- .section {
- .queue-title {
- display: flex;
- line-height: 30px;
- .material-icons {
- margin-left: 5px;
- margin-bottom: 5px;
- font-size: 28px;
- cursor: pointer;
- &:first-of-type {
- margin-left: auto;
- }
- &.skip-station {
- color: var(--red);
- }
- &.resume-station,
- &.pause-station {
- color: var(--primary-color);
- }
- }
- }
- .currently-playing {
- margin-bottom: 10px;
- }
- }
- }
- }
- @media screen and (max-width: 1100px) {
- .manage-station-modal.modal .modal-card-body .custom-modal-body {
- .left-section,
- .right-section {
- flex-basis: unset;
- height: auto;
- }
- }
- }
- </style>
|