Stations.vue 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430
  1. <template>
  2. <div>
  3. <metadata title="Admin | Stations" />
  4. <div class="container">
  5. <table class="table is-striped">
  6. <thead>
  7. <tr>
  8. <td>ID</td>
  9. <td>Name</td>
  10. <td>Type</td>
  11. <td>Display Name</td>
  12. <td>Description</td>
  13. <td>Owner</td>
  14. <td>Options</td>
  15. </tr>
  16. </thead>
  17. <tbody>
  18. <tr v-for="(station, index) in stations" :key="index">
  19. <td>
  20. <span>{{ station._id }}</span>
  21. </td>
  22. <td>
  23. <span>
  24. <router-link
  25. :to="{
  26. name: 'station',
  27. params: { id: station.name }
  28. }"
  29. >
  30. {{ station.name }}
  31. </router-link>
  32. </span>
  33. </td>
  34. <td>
  35. <span>{{ station.type }}</span>
  36. </td>
  37. <td>
  38. <span>{{ station.displayName }}</span>
  39. </td>
  40. <td>
  41. <span>{{ station.description }}</span>
  42. </td>
  43. <td>
  44. <span
  45. v-if="station.type === 'official'"
  46. title="Musare"
  47. >Musare</span
  48. >
  49. <user-id-to-username
  50. v-else
  51. :user-id="station.owner"
  52. :link="true"
  53. />
  54. </td>
  55. <td>
  56. <a class="button is-info" @click="edit(station)"
  57. >Edit</a
  58. >
  59. <a
  60. class="button is-danger"
  61. href="#"
  62. @click="removeStation(index)"
  63. >Remove</a
  64. >
  65. </td>
  66. </tr>
  67. </tbody>
  68. </table>
  69. </div>
  70. <div class="container">
  71. <div class="card is-fullwidth">
  72. <header class="card-header">
  73. <p class="card-header-title">Create official station</p>
  74. </header>
  75. <div class="card-content">
  76. <div class="content">
  77. <div class="control is-horizontal">
  78. <div class="control is-grouped">
  79. <p class="control is-expanded">
  80. <input
  81. v-model="newStation.name"
  82. class="input"
  83. type="text"
  84. placeholder="Name"
  85. />
  86. </p>
  87. <p class="control is-expanded">
  88. <input
  89. v-model="newStation.displayName"
  90. class="input"
  91. type="text"
  92. placeholder="Display Name"
  93. />
  94. </p>
  95. </div>
  96. </div>
  97. <label class="label">Description</label>
  98. <p class="control is-expanded">
  99. <input
  100. v-model="newStation.description"
  101. class="input"
  102. type="text"
  103. placeholder="Short description"
  104. />
  105. </p>
  106. <div class="control is-grouped genre-wrapper">
  107. <div class="sector">
  108. <p class="control has-addons">
  109. <input
  110. id="new-genre"
  111. class="input"
  112. type="text"
  113. placeholder="Genre"
  114. @keyup.enter="addGenre()"
  115. />
  116. <a
  117. class="button is-info"
  118. href="#"
  119. @click="addGenre()"
  120. >Add genre</a
  121. >
  122. </p>
  123. <span
  124. v-for="(genre, index) in newStation.genres"
  125. :key="index"
  126. class="tag is-info"
  127. >
  128. {{ genre }}
  129. <button
  130. class="delete is-info"
  131. @click="removeGenre(index)"
  132. />
  133. </span>
  134. </div>
  135. <div class="sector">
  136. <p class="control has-addons">
  137. <input
  138. id="new-blacklisted-genre"
  139. class="input"
  140. type="text"
  141. placeholder="Blacklisted Genre"
  142. @keyup.enter="addBlacklistedGenre()"
  143. />
  144. <a
  145. class="button is-info"
  146. href="#"
  147. @click="addBlacklistedGenre()"
  148. >Add blacklisted genre</a
  149. >
  150. </p>
  151. <span
  152. v-for="(genre,
  153. index) in newStation.blacklistedGenres"
  154. :key="index"
  155. class="tag is-info"
  156. >
  157. {{ genre }}
  158. <button
  159. class="delete is-info"
  160. @click="removeBlacklistedGenre(index)"
  161. />
  162. </span>
  163. </div>
  164. </div>
  165. </div>
  166. </div>
  167. <footer class="card-footer">
  168. <a
  169. class="card-footer-item"
  170. href="#"
  171. @click="createStation()"
  172. >Create</a
  173. >
  174. </footer>
  175. </div>
  176. </div>
  177. <edit-station v-if="modals.editStation" store="admin/stations" />
  178. </div>
  179. </template>
  180. <script>
  181. import { mapState, mapActions } from "vuex";
  182. import Toast from "toasters";
  183. import io from "../../../io";
  184. import EditStation from "../../../components/modals/EditStation.vue";
  185. import UserIdToUsername from "../../../components/common/UserIdToUsername.vue";
  186. export default {
  187. components: { EditStation, UserIdToUsername },
  188. data() {
  189. return {
  190. newStation: {
  191. genres: [],
  192. blacklistedGenres: []
  193. }
  194. };
  195. },
  196. computed: {
  197. ...mapState("admin/stations", {
  198. stations: state => state.stations
  199. }),
  200. ...mapState("modals", {
  201. modals: state => state.modals.station
  202. })
  203. },
  204. mounted() {
  205. io.getSocket(socket => {
  206. this.socket = socket;
  207. if (this.socket.connected) this.init();
  208. this.socket.on("event:admin.station.added", station => {
  209. this.stationAdded(station);
  210. });
  211. this.socket.on("event:admin.station.removed", stationId => {
  212. this.stationRemoved(stationId);
  213. });
  214. io.onConnect(() => {
  215. this.init();
  216. });
  217. });
  218. },
  219. methods: {
  220. createStation() {
  221. const {
  222. newStation: {
  223. name,
  224. displayName,
  225. description,
  226. genres,
  227. blacklistedGenres
  228. }
  229. } = this;
  230. if (name === undefined)
  231. return new Toast({
  232. content: "Field (Name) cannot be empty",
  233. timeout: 3000
  234. });
  235. if (displayName === undefined)
  236. return new Toast({
  237. content: "Field (Display Name) cannot be empty",
  238. timeout: 3000
  239. });
  240. if (description === undefined)
  241. return new Toast({
  242. content: "Field (Description) cannot be empty",
  243. timeout: 3000
  244. });
  245. return this.socket.emit(
  246. "stations.create",
  247. {
  248. name,
  249. type: "official",
  250. displayName,
  251. description,
  252. genres,
  253. blacklistedGenres
  254. },
  255. result => {
  256. new Toast({ content: result.message, timeout: 3000 });
  257. if (result.status === "success")
  258. this.newStation = {
  259. genres: [],
  260. blacklistedGenres: []
  261. };
  262. }
  263. );
  264. },
  265. removeStation(index) {
  266. this.socket.emit(
  267. "stations.remove",
  268. this.stations[index]._id,
  269. res => {
  270. new Toast({ content: res.message, timeout: 3000 });
  271. }
  272. );
  273. },
  274. edit(station) {
  275. this.editStation({
  276. _id: station._id,
  277. name: station.name,
  278. type: station.type,
  279. partyMode: station.partyMode,
  280. description: station.description,
  281. privacy: station.privacy,
  282. displayName: station.displayName,
  283. genres: station.genres,
  284. blacklistedGenres: station.blacklistedGenres
  285. });
  286. this.openModal({
  287. sector: "station",
  288. modal: "editStation"
  289. });
  290. },
  291. addGenre() {
  292. const genre = document
  293. .getElementById(`new-genre`)
  294. .value.toLowerCase()
  295. .trim();
  296. if (this.newStation.genres.indexOf(genre) !== -1)
  297. return new Toast({
  298. content: "Genre already exists",
  299. timeout: 3000
  300. });
  301. if (genre) {
  302. this.newStation.genres.push(genre);
  303. document.getElementById(`new-genre`).value = "";
  304. return true;
  305. }
  306. return new Toast({
  307. content: "Genre cannot be empty",
  308. timeout: 3000
  309. });
  310. },
  311. removeGenre(index) {
  312. this.newStation.genres.splice(index, 1);
  313. },
  314. addBlacklistedGenre() {
  315. const genre = document
  316. .getElementById(`new-blacklisted-genre`)
  317. .value.toLowerCase()
  318. .trim();
  319. if (this.newStation.blacklistedGenres.indexOf(genre) !== -1)
  320. return new Toast({
  321. content: "Genre already exists",
  322. timeout: 3000
  323. });
  324. if (genre) {
  325. this.newStation.blacklistedGenres.push(genre);
  326. document.getElementById(`new-blacklisted-genre`).value = "";
  327. return true;
  328. }
  329. return new Toast({
  330. content: "Genre cannot be empty",
  331. timeout: 3000
  332. });
  333. },
  334. removeBlacklistedGenre(index) {
  335. this.newStation.blacklistedGenres.splice(index, 1);
  336. },
  337. init() {
  338. this.socket.emit("stations.index", data => {
  339. this.loadStations(data.stations);
  340. });
  341. this.socket.emit("apis.joinAdminRoom", "stations", () => {});
  342. },
  343. ...mapActions("modals", ["openModal"]),
  344. ...mapActions("admin/stations", [
  345. "editStation",
  346. "loadStations",
  347. "stationRemoved",
  348. "stationAdded"
  349. ])
  350. }
  351. };
  352. </script>
  353. <style lang="scss" scoped>
  354. @import "../../../styles/global.scss";
  355. .night-mode {
  356. .table {
  357. color: $night-mode-text;
  358. background-color: $night-mode-bg-secondary;
  359. thead tr {
  360. background: $night-mode-bg-secondary;
  361. td {
  362. color: #fff;
  363. }
  364. }
  365. tbody tr:hover {
  366. background-color: #111 !important;
  367. }
  368. tbody tr:nth-child(even) {
  369. background-color: #444;
  370. }
  371. strong {
  372. color: $night-mode-text;
  373. }
  374. }
  375. .card {
  376. background: $night-mode-bg-secondary;
  377. .card-header {
  378. box-shadow: 0 1px 2px rgba(10, 10, 10, 0.8);
  379. }
  380. p,
  381. .label {
  382. color: $night-mode-text;
  383. }
  384. }
  385. }
  386. .tag {
  387. margin-top: 5px;
  388. &:not(:last-child) {
  389. margin-right: 5px;
  390. }
  391. }
  392. td {
  393. word-wrap: break-word;
  394. max-width: 10vw;
  395. vertical-align: middle;
  396. }
  397. .is-info:focus {
  398. background-color: $primary-color;
  399. }
  400. .genre-wrapper {
  401. display: flex;
  402. justify-content: space-around;
  403. }
  404. .card-footer-item {
  405. color: $primary-color;
  406. }
  407. </style>