123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483 |
- <template>
- <div>
- <page-metadata title="Admin | Stations" />
- <div class="admin-tab">
- <div class="button-row">
- <button
- class="button is-primary"
- @click="
- openModal({
- modal: 'createStation',
- data: { official: true }
- })
- "
- >
- 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"
- :events="events"
- >
- <template #column-options="slotProps">
- <div class="row-options">
- <button
- class="button is-primary icon-with-button material-icons"
- @click="
- openModal({
- modal: 'manageStation',
- data: {
- stationId: slotProps.item._id,
- sector: 'admin'
- }
- })
- "
- :disabled="slotProps.item.removed"
- content="Manage Station"
- v-tippy
- >
- settings
- </button>
- <quick-confirm
- @confirm="remove(slotProps.item._id)"
- :disabled="slotProps.item.removed"
- >
- <button
- class="button is-danger icon-with-button material-icons"
- content="Remove Station"
- v-tippy
- >
- delete_forever
- </button>
- </quick-confirm>
- <router-link
- :to="{ path: `/${slotProps.item.name}` }"
- target="_blank"
- class="button is-primary icon-with-button material-icons"
- :disabled="slotProps.item.removed"
- content="View Station"
- v-tippy
- >
- radio
- </router-link>
- </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-description="slotProps">
- <span :title="slotProps.item.description">{{
- slotProps.item.description
- }}</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>
- <template #column-theme="slotProps">
- <span :title="slotProps.item.theme">{{
- slotProps.item.theme
- }}</span>
- </template>
- <template #column-requestsEnabled="slotProps">
- <span :title="slotProps.item.requests.enabled">{{
- slotProps.item.requests.enabled
- }}</span>
- </template>
- <template #column-requestsAccess="slotProps">
- <span :title="slotProps.item.requests.access">{{
- slotProps.item.requests.access
- }}</span>
- </template>
- <template #column-requestsLimit="slotProps">
- <span :title="slotProps.item.requests.limit">{{
- slotProps.item.requests.limit
- }}</span>
- </template>
- <template #column-autofillEnabled="slotProps">
- <span :title="slotProps.item.autofill.enabled">{{
- slotProps.item.autofill.enabled
- }}</span>
- </template>
- <template #column-autofillLimit="slotProps">
- <span :title="slotProps.item.autofill.limit">{{
- slotProps.item.autofill.limit
- }}</span>
- </template>
- <template #column-autofillMode="slotProps">
- <span :title="slotProps.item.autofill.mode">{{
- slotProps.item.autofill.mode
- }}</span>
- </template>
- </advanced-table>
- </div>
- <create-playlist v-if="modals.createPlaylist" />
- <edit-song v-if="modals.editSong" song-type="songs" sector="admin" />
- <report v-if="modals.report" />
- </div>
- </template>
- <script>
- import { mapState, mapActions, mapGetters } from "vuex";
- import { defineAsyncComponent } from "vue";
- import Toast from "toasters";
- import AdvancedTable from "@/components/AdvancedTable.vue";
- import RunJobDropdown from "@/components/RunJobDropdown.vue";
- export default {
- components: {
- CreatePlaylist: defineAsyncComponent(() =>
- import("@/components/modals/CreatePlaylist.vue")
- ),
- Report: defineAsyncComponent(() =>
- import("@/components/modals/Report.vue")
- ),
- EditSong: defineAsyncComponent(() =>
- import("@/components/modals/EditSong")
- ),
- AdvancedTable,
- RunJobDropdown
- },
- data() {
- return {
- editingStationId: "",
- columnDefault: {
- sortable: true,
- hidable: true,
- defaultVisibility: "shown",
- draggable: true,
- resizable: true,
- minWidth: 150,
- maxWidth: 600
- },
- columns: [
- {
- name: "options",
- displayName: "Options",
- properties: ["_id", "name"],
- sortable: false,
- hidable: false,
- resizable: false,
- minWidth: 129,
- defaultWidth: 129
- },
- {
- name: "_id",
- displayName: "Station 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: "description",
- displayName: "Description",
- properties: ["description"],
- sortProperty: "description",
- defaultVisibility: "hidden"
- },
- {
- 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
- },
- {
- name: "theme",
- displayName: "Theme",
- properties: ["theme"],
- sortProperty: "theme",
- defaultVisibility: "hidden"
- },
- {
- name: "requestsEnabled",
- displayName: "Requests Enabled",
- properties: ["requests.enabled"],
- sortProperty: "requests.enabled",
- minWidth: 180,
- defaultWidth: 180,
- defaultVisibility: "hidden"
- },
- {
- name: "requestsAccess",
- displayName: "Requests Access",
- properties: ["requests.access"],
- sortProperty: "requests.access",
- minWidth: 180,
- defaultWidth: 180,
- defaultVisibility: "hidden"
- },
- {
- name: "requestsLimit",
- displayName: "Requests Limit",
- properties: ["requests.limit"],
- sortProperty: "requests.limit",
- minWidth: 180,
- defaultWidth: 180,
- defaultVisibility: "hidden"
- },
- {
- name: "autofillEnabled",
- displayName: "Autofill Enabled",
- properties: ["autofill.enabled"],
- sortProperty: "autofill.enabled",
- minWidth: 180,
- defaultWidth: 180,
- defaultVisibility: "hidden"
- },
- {
- name: "autofillLimit",
- displayName: "Autofill Limit",
- properties: ["autofill.limit"],
- sortProperty: "autofill.limit",
- minWidth: 180,
- defaultWidth: 180,
- defaultVisibility: "hidden"
- },
- {
- name: "autofillMode",
- displayName: "Autofill Mode",
- properties: ["autofill.mode"],
- sortProperty: "autofill.mode",
- minWidth: 180,
- defaultWidth: 180,
- defaultVisibility: "hidden"
- }
- ],
- filters: [
- {
- name: "_id",
- displayName: "Station 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: "description",
- displayName: "Description",
- property: "description",
- filterTypes: ["contains", "exact", "regex"],
- defaultFilterType: "contains"
- },
- {
- name: "type",
- displayName: "Type",
- property: "type",
- filterTypes: ["exact"],
- defaultFilterType: "exact",
- dropdown: [
- ["official", "Official"],
- ["community", "Community"]
- ]
- },
- {
- name: "privacy",
- displayName: "Privacy",
- property: "privacy",
- filterTypes: ["exact"],
- defaultFilterType: "exact",
- dropdown: [
- ["public", "Public"],
- ["unlisted", "Unlisted"],
- ["private", "Private"]
- ]
- },
- {
- name: "owner",
- displayName: "Owner",
- property: "owner",
- filterTypes: ["contains", "exact", "regex"],
- defaultFilterType: "contains"
- },
- {
- name: "theme",
- displayName: "Theme",
- property: "theme",
- filterTypes: ["exact"],
- defaultFilterType: "exact",
- dropdown: [
- ["blue", "Blue"],
- ["purple", "Purple"],
- ["teal", "Teal"],
- ["orange", "Orange"],
- ["red", "Red"]
- ]
- },
- {
- name: "requestsEnabled",
- displayName: "Requests Enabled",
- property: "requests.enabled",
- filterTypes: ["boolean"],
- defaultFilterType: "boolean"
- },
- {
- name: "requestsAccess",
- displayName: "Requests Access",
- property: "requests.access",
- filterTypes: ["exact"],
- defaultFilterType: "exact",
- dropdown: [
- ["owner", "Owner"],
- ["user", "User"]
- ]
- },
- {
- name: "requestsLimit",
- displayName: "Requests Limit",
- property: "requests.limit",
- filterTypes: [
- "numberLesserEqual",
- "numberLesser",
- "numberGreater",
- "numberGreaterEqual",
- "numberEquals"
- ],
- defaultFilterType: "numberLesser"
- },
- {
- name: "autofillEnabled",
- displayName: "Autofill Enabled",
- property: "autofill.enabled",
- filterTypes: ["boolean"],
- defaultFilterType: "boolean"
- },
- {
- name: "autofillLimit",
- displayName: "Autofill Limit",
- property: "autofill.limit",
- filterTypes: [
- "numberLesserEqual",
- "numberLesser",
- "numberGreater",
- "numberGreaterEqual",
- "numberEquals"
- ],
- defaultFilterType: "numberLesser"
- },
- {
- name: "autofillMode",
- displayName: "Autofill Mode",
- property: "autofill.mode",
- filterTypes: ["exact"],
- defaultFilterType: "exact",
- dropdown: [
- ["random", "Random"],
- ["sequential", "Sequential"]
- ]
- }
- ],
- events: {
- adminRoom: "stations",
- updated: {
- event: "station.updated",
- id: "station._id",
- item: "station"
- },
- removed: {
- event: "admin.station.deleted",
- id: "stationId"
- }
- },
- jobs: [
- {
- name: "Clear every station queue",
- socket: "stations.clearEveryStationQueue"
- }
- ]
- };
- },
- computed: {
- ...mapState("modalVisibility", {
- modals: state => state.modals
- }),
- ...mapGetters({
- socket: "websockets/getSocket"
- })
- },
- methods: {
- remove(stationId) {
- this.socket.dispatch(
- "stations.remove",
- stationId,
- res => new Toast(res.message)
- );
- },
- ...mapActions("modalVisibility", ["openModal"])
- }
- };
- </script>
|