123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265 |
- <template>
- <div>
- <page-metadata title="Admin | Stations" />
- <div class="admin-tab">
- <div class="button-row">
- <button
- class="button is-primary"
- @click="openModal('createStation')"
- >
- Create Station
- </button>
- <run-job-dropdown :jobs="jobs" />
- </div>
- <advanced-table
- :column-default="columnDefault"
- :columns="columns"
- :filters="filters"
- data-action="stations.getData"
- name="admin-stations"
- >
- <template #column-options="slotProps">
- <div class="row-options">
- <button
- class="
- button
- is-primary
- icon-with-button
- material-icons
- "
- @click="edit(slotProps.item._id)"
- content="Manage Station"
- v-tippy
- >
- settings
- </button>
- </div>
- </template>
- <template #column-_id="slotProps">
- <span :title="slotProps.item._id">{{
- slotProps.item._id
- }}</span>
- </template>
- <template #column-name="slotProps">
- <span :title="slotProps.item.name">{{
- slotProps.item.name
- }}</span>
- </template>
- <template #column-displayName="slotProps">
- <span :title="slotProps.item.displayName">{{
- slotProps.item.displayName
- }}</span>
- </template>
- <template #column-type="slotProps">
- <span :title="slotProps.item.type">{{
- slotProps.item.type
- }}</span>
- </template>
- <template #column-privacy="slotProps">
- <span :title="slotProps.item.privacy">{{
- slotProps.item.privacy
- }}</span>
- </template>
- <template #column-owner="slotProps">
- <span v-if="slotProps.item.type === 'official'"
- >Musare</span
- >
- <user-id-to-username
- v-else
- :user-id="slotProps.item.owner"
- :link="true"
- />
- </template>
- </advanced-table>
- </div>
- <request-song v-if="modals.requestSong" />
- <create-playlist v-if="modals.createPlaylist" />
- <manage-station
- v-if="modals.manageStation"
- :station-id="editingStationId"
- sector="admin"
- />
- <edit-playlist v-if="modals.editPlaylist" />
- <edit-song v-if="modals.editSong" song-type="songs" sector="admin" />
- <report v-if="modals.report" />
- <create-station v-if="modals.createStation" :official="true" />
- </div>
- </template>
- <script>
- import { mapState, mapActions, mapGetters } from "vuex";
- import { defineAsyncComponent } from "vue";
- import AdvancedTable from "@/components/AdvancedTable.vue";
- import UserIdToUsername from "@/components/UserIdToUsername.vue";
- import RunJobDropdown from "@/components/RunJobDropdown.vue";
- export default {
- components: {
- RequestSong: defineAsyncComponent(() =>
- import("@/components/modals/RequestSong.vue")
- ),
- EditPlaylist: defineAsyncComponent(() =>
- import("@/components/modals/EditPlaylist")
- ),
- CreatePlaylist: defineAsyncComponent(() =>
- import("@/components/modals/CreatePlaylist.vue")
- ),
- ManageStation: defineAsyncComponent(() =>
- import("@/components/modals/ManageStation/index.vue")
- ),
- Report: defineAsyncComponent(() =>
- import("@/components/modals/Report.vue")
- ),
- EditSong: defineAsyncComponent(() =>
- import("@/components/modals/EditSong")
- ),
- CreateStation: defineAsyncComponent(() =>
- import("@/components/modals/CreateStation.vue")
- ),
- AdvancedTable,
- UserIdToUsername,
- RunJobDropdown
- },
- data() {
- return {
- editingStationId: "",
- columnDefault: {
- sortable: true,
- hidable: true,
- defaultVisibility: "shown",
- draggable: true,
- resizable: true,
- minWidth: 150,
- maxWidth: 600
- },
- columns: [
- {
- name: "options",
- displayName: "Edit",
- properties: ["_id"],
- sortable: false,
- hidable: false,
- resizable: false,
- minWidth: 51,
- defaultWidth: 51
- },
- {
- name: "_id",
- displayName: "ID",
- properties: ["_id"],
- sortProperty: "_id",
- minWidth: 230,
- defaultWidth: 230
- },
- {
- name: "name",
- displayName: "Name",
- properties: ["name"],
- sortProperty: "name"
- },
- {
- name: "displayName",
- displayName: "Display Name",
- properties: ["displayName"],
- sortProperty: "displayName"
- },
- {
- name: "type",
- displayName: "Type",
- properties: ["type"],
- sortProperty: "type"
- },
- {
- name: "privacy",
- displayName: "Privacy",
- properties: ["privacy"],
- sortProperty: "privacy"
- },
- {
- name: "owner",
- displayName: "Owner",
- properties: ["owner", "type"],
- sortProperty: "owner",
- defaultWidth: 150
- }
- ],
- filters: [
- {
- name: "_id",
- displayName: "ID",
- property: "_id",
- filterTypes: ["exact"],
- defaultFilterType: "exact"
- },
- {
- name: "name",
- displayName: "Name",
- property: "name",
- filterTypes: ["contains", "exact", "regex"],
- defaultFilterType: "contains"
- },
- {
- name: "displayName",
- displayName: "Display Name",
- property: "displayName",
- filterTypes: ["contains", "exact", "regex"],
- defaultFilterType: "contains"
- },
- {
- name: "type",
- displayName: "Type",
- property: "type",
- filterTypes: ["contains", "exact", "regex"],
- defaultFilterType: "contains"
- },
- {
- name: "privacy",
- displayName: "Privacy",
- property: "privacy",
- filterTypes: ["contains", "exact", "regex"],
- defaultFilterType: "contains"
- },
- {
- name: "owner",
- displayName: "Owner",
- property: "owner",
- filterTypes: ["contains", "exact", "regex"],
- defaultFilterType: "contains"
- }
- ],
- jobs: [
- {
- name: "Clear every station queue",
- socket: "stations.clearEveryStationQueue"
- }
- ]
- };
- },
- computed: {
- ...mapState("modalVisibility", {
- modals: state => state.modals
- }),
- ...mapGetters({
- socket: "websockets/getSocket"
- })
- },
- mounted() {
- // TODO
- // this.socket.on("event:admin.station.created", res =>
- // this.stationAdded(res.data.station)
- // );
- // this.socket.on("event:admin.station.deleted", res =>
- // this.stationRemoved(res.data.stationId)
- // );
- },
- methods: {
- edit(stationId) {
- this.editingStationId = stationId;
- this.openModal("manageStation");
- },
- ...mapActions("modalVisibility", ["openModal"])
- }
- };
- </script>
|