Stations.vue 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265
  1. <template>
  2. <div>
  3. <page-metadata title="Admin | Stations" />
  4. <div class="admin-tab">
  5. <div class="button-row">
  6. <button
  7. class="button is-primary"
  8. @click="openModal('createStation')"
  9. >
  10. Create Station
  11. </button>
  12. <run-job-dropdown :jobs="jobs" />
  13. </div>
  14. <advanced-table
  15. :column-default="columnDefault"
  16. :columns="columns"
  17. :filters="filters"
  18. data-action="stations.getData"
  19. name="admin-stations"
  20. >
  21. <template #column-options="slotProps">
  22. <div class="row-options">
  23. <button
  24. class="
  25. button
  26. is-primary
  27. icon-with-button
  28. material-icons
  29. "
  30. @click="edit(slotProps.item._id)"
  31. content="Manage Station"
  32. v-tippy
  33. >
  34. settings
  35. </button>
  36. </div>
  37. </template>
  38. <template #column-_id="slotProps">
  39. <span :title="slotProps.item._id">{{
  40. slotProps.item._id
  41. }}</span>
  42. </template>
  43. <template #column-name="slotProps">
  44. <span :title="slotProps.item.name">{{
  45. slotProps.item.name
  46. }}</span>
  47. </template>
  48. <template #column-displayName="slotProps">
  49. <span :title="slotProps.item.displayName">{{
  50. slotProps.item.displayName
  51. }}</span>
  52. </template>
  53. <template #column-type="slotProps">
  54. <span :title="slotProps.item.type">{{
  55. slotProps.item.type
  56. }}</span>
  57. </template>
  58. <template #column-privacy="slotProps">
  59. <span :title="slotProps.item.privacy">{{
  60. slotProps.item.privacy
  61. }}</span>
  62. </template>
  63. <template #column-owner="slotProps">
  64. <span v-if="slotProps.item.type === 'official'"
  65. >Musare</span
  66. >
  67. <user-id-to-username
  68. v-else
  69. :user-id="slotProps.item.owner"
  70. :link="true"
  71. />
  72. </template>
  73. </advanced-table>
  74. </div>
  75. <request-song v-if="modals.requestSong" />
  76. <create-playlist v-if="modals.createPlaylist" />
  77. <manage-station
  78. v-if="modals.manageStation"
  79. :station-id="editingStationId"
  80. sector="admin"
  81. />
  82. <edit-playlist v-if="modals.editPlaylist" />
  83. <edit-song v-if="modals.editSong" song-type="songs" sector="admin" />
  84. <report v-if="modals.report" />
  85. <create-station v-if="modals.createStation" :official="true" />
  86. </div>
  87. </template>
  88. <script>
  89. import { mapState, mapActions, mapGetters } from "vuex";
  90. import { defineAsyncComponent } from "vue";
  91. import AdvancedTable from "@/components/AdvancedTable.vue";
  92. import UserIdToUsername from "@/components/UserIdToUsername.vue";
  93. import RunJobDropdown from "@/components/RunJobDropdown.vue";
  94. export default {
  95. components: {
  96. RequestSong: defineAsyncComponent(() =>
  97. import("@/components/modals/RequestSong.vue")
  98. ),
  99. EditPlaylist: defineAsyncComponent(() =>
  100. import("@/components/modals/EditPlaylist")
  101. ),
  102. CreatePlaylist: defineAsyncComponent(() =>
  103. import("@/components/modals/CreatePlaylist.vue")
  104. ),
  105. ManageStation: defineAsyncComponent(() =>
  106. import("@/components/modals/ManageStation/index.vue")
  107. ),
  108. Report: defineAsyncComponent(() =>
  109. import("@/components/modals/Report.vue")
  110. ),
  111. EditSong: defineAsyncComponent(() =>
  112. import("@/components/modals/EditSong")
  113. ),
  114. CreateStation: defineAsyncComponent(() =>
  115. import("@/components/modals/CreateStation.vue")
  116. ),
  117. AdvancedTable,
  118. UserIdToUsername,
  119. RunJobDropdown
  120. },
  121. data() {
  122. return {
  123. editingStationId: "",
  124. columnDefault: {
  125. sortable: true,
  126. hidable: true,
  127. defaultVisibility: "shown",
  128. draggable: true,
  129. resizable: true,
  130. minWidth: 150,
  131. maxWidth: 600
  132. },
  133. columns: [
  134. {
  135. name: "options",
  136. displayName: "Edit",
  137. properties: ["_id"],
  138. sortable: false,
  139. hidable: false,
  140. resizable: false,
  141. minWidth: 51,
  142. defaultWidth: 51
  143. },
  144. {
  145. name: "_id",
  146. displayName: "ID",
  147. properties: ["_id"],
  148. sortProperty: "_id",
  149. minWidth: 230,
  150. defaultWidth: 230
  151. },
  152. {
  153. name: "name",
  154. displayName: "Name",
  155. properties: ["name"],
  156. sortProperty: "name"
  157. },
  158. {
  159. name: "displayName",
  160. displayName: "Display Name",
  161. properties: ["displayName"],
  162. sortProperty: "displayName"
  163. },
  164. {
  165. name: "type",
  166. displayName: "Type",
  167. properties: ["type"],
  168. sortProperty: "type"
  169. },
  170. {
  171. name: "privacy",
  172. displayName: "Privacy",
  173. properties: ["privacy"],
  174. sortProperty: "privacy"
  175. },
  176. {
  177. name: "owner",
  178. displayName: "Owner",
  179. properties: ["owner", "type"],
  180. sortProperty: "owner",
  181. defaultWidth: 150
  182. }
  183. ],
  184. filters: [
  185. {
  186. name: "_id",
  187. displayName: "ID",
  188. property: "_id",
  189. filterTypes: ["exact"],
  190. defaultFilterType: "exact"
  191. },
  192. {
  193. name: "name",
  194. displayName: "Name",
  195. property: "name",
  196. filterTypes: ["contains", "exact", "regex"],
  197. defaultFilterType: "contains"
  198. },
  199. {
  200. name: "displayName",
  201. displayName: "Display Name",
  202. property: "displayName",
  203. filterTypes: ["contains", "exact", "regex"],
  204. defaultFilterType: "contains"
  205. },
  206. {
  207. name: "type",
  208. displayName: "Type",
  209. property: "type",
  210. filterTypes: ["contains", "exact", "regex"],
  211. defaultFilterType: "contains"
  212. },
  213. {
  214. name: "privacy",
  215. displayName: "Privacy",
  216. property: "privacy",
  217. filterTypes: ["contains", "exact", "regex"],
  218. defaultFilterType: "contains"
  219. },
  220. {
  221. name: "owner",
  222. displayName: "Owner",
  223. property: "owner",
  224. filterTypes: ["contains", "exact", "regex"],
  225. defaultFilterType: "contains"
  226. }
  227. ],
  228. jobs: [
  229. {
  230. name: "Clear every station queue",
  231. socket: "stations.clearEveryStationQueue"
  232. }
  233. ]
  234. };
  235. },
  236. computed: {
  237. ...mapState("modalVisibility", {
  238. modals: state => state.modals
  239. }),
  240. ...mapGetters({
  241. socket: "websockets/getSocket"
  242. })
  243. },
  244. mounted() {
  245. // TODO
  246. // this.socket.on("event:admin.station.created", res =>
  247. // this.stationAdded(res.data.station)
  248. // );
  249. // this.socket.on("event:admin.station.deleted", res =>
  250. // this.stationRemoved(res.data.stationId)
  251. // );
  252. },
  253. methods: {
  254. edit(stationId) {
  255. this.editingStationId = stationId;
  256. this.openModal("manageStation");
  257. },
  258. ...mapActions("modalVisibility", ["openModal"])
  259. }
  260. };
  261. </script>