Stations.vue 7.6 KB

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