EditStation.vue 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. <template>
  2. <div>
  3. <modal title='Edit Station'>
  4. <div slot='body'>
  5. <label class='label'>Name</label>
  6. <p class='control'>
  7. <input class='input' type='text' placeholder='Station Name' v-model='editing.name'>
  8. </p>
  9. <label class='label'>Display name</label>
  10. <p class='control'>
  11. <input class='input' type='text' placeholder='Station Display Name' v-model='editing.displayName'>
  12. </p>
  13. <label class='label'>Description</label>
  14. <p class='control'>
  15. <input class='input' type='text' placeholder='Station Display Name' v-model='editing.description'>
  16. </p>
  17. <label class='label'>Privacy</label>
  18. <p class='control'>
  19. <span class='select'>
  20. <select v-model='editing.privacy'>
  21. <option :value='"public"'>Public</option>
  22. <option :value='"unlisted"'>Unlisted</option>
  23. <option :value='"private"'>Private</option>
  24. </select>
  25. </span>
  26. </p>
  27. <p class='control'>
  28. <label class="checkbox party-mode-inner">
  29. <input type="checkbox" v-model="editing.partyMode">
  30. &nbsp;Party mode
  31. </label>
  32. </p>
  33. </div>
  34. <div slot='footer'>
  35. <button class='button is-success' @click='update()'>Update Settings</button>
  36. <button class='button is-danger' @click='deleteStation()' v-if="$parent.type === 'community'">Delete station</button>
  37. </div>
  38. </modal>
  39. </div>
  40. </template>
  41. <script>
  42. import { Toast } from 'vue-roaster';
  43. import Modal from './Modal.vue';
  44. import io from '../../io';
  45. export default {
  46. data: function() {
  47. return {
  48. editing: {
  49. _id: '',
  50. name: '',
  51. type: '',
  52. displayName: '',
  53. description: '',
  54. privacy: 'private',
  55. partyMode: false
  56. }
  57. }
  58. },
  59. methods: {
  60. update: function () {
  61. if (this.$parent.station.name !== this.editing.name) this.updateName();
  62. if (this.$parent.station.displayName !== this.editing.displayName) this.updateDisplayName();
  63. if (this.$parent.station.description !== this.editing.description) this.updateDescription();
  64. if (this.$parent.station.privacy !== this.editing.privacy) this.updatePrivacy();
  65. if (this.$parent.station.partyMode !== this.editing.partyMode) this.updatePartyMode();
  66. },
  67. updateName: function () {
  68. let _this = this;
  69. this.socket.emit('stations.updateName', this.editing._id, this.editing.name, res => {
  70. if (res.status === 'success') {
  71. if (_this.$parent.station) _this.$parent.station.name = _this.editing.name;
  72. else {
  73. _this.$parent.stations.forEach((station, index) => {
  74. if (station._id === _this.editing._id) return _this.$parent.stations[index].name = _this.editing.name;
  75. });
  76. }
  77. }
  78. Toast.methods.addToast(res.message, 8000);
  79. });
  80. },
  81. updateDisplayName: function () {
  82. let _this = this;
  83. this.socket.emit('stations.updateDisplayName', this.editing._id, this.editing.displayName, res => {
  84. if (res.status === 'success') {
  85. if (_this.$parent.station) _this.$parent.station.displayName = _this.editing.displayName;
  86. else {
  87. _this.$parent.stations.forEach((station, index) => {
  88. if (station._id === _this.editing._id) return _this.$parent.stations[index].displayName = _this.editing.displayName;
  89. });
  90. }
  91. }
  92. Toast.methods.addToast(res.message, 8000);
  93. });
  94. },
  95. updateDescription: function () {
  96. let _this = this;
  97. this.socket.emit('stations.updateDescription', this.editing._id, this.editing.description, res => {
  98. if (res.status === 'success') {
  99. if (_this.$parent.station) _this.$parent.station.description = _this.editing.description;
  100. else {
  101. _this.$parent.stations.forEach((station, index) => {
  102. if (station._id === station._id) return _this.$parent.stations[index].description = _this.editing.description;
  103. });
  104. }
  105. return Toast.methods.addToast(res.message, 4000);
  106. }
  107. Toast.methods.addToast(res.message, 8000);
  108. });
  109. },
  110. updatePrivacy: function () {
  111. let _this = this;
  112. this.socket.emit('stations.updatePrivacy', this.editing._id, this.editing.privacy, res => {
  113. if (res.status === 'success') {
  114. if (_this.$parent.station) _this.$parent.station.privacy = _this.editing.privacy;
  115. else {
  116. _this.$parent.stations.forEach((station, index) => {
  117. if (station._id === station._id) return _this.$parent.stations[index].privacy = _this.editing.privacy;
  118. });
  119. }
  120. return Toast.methods.addToast(res.message, 4000);
  121. }
  122. Toast.methods.addToast(res.message, 8000);
  123. });
  124. },
  125. updatePartyMode: function () {
  126. let _this = this;
  127. this.socket.emit('stations.updatePartyMode', this.editing._id, this.editing.partyMode, res => {
  128. if (res.status === 'success') {
  129. if (_this.$parent.station) _this.$parent.station.partyMode = _this.editing.partyMode;
  130. else {
  131. _this.$parent.stations.forEach((station, index) => {
  132. if (station._id === station._id) return _this.$parent.stations[index].partyMode = _this.editing.partyMode;
  133. });
  134. }
  135. return Toast.methods.addToast(res.message, 4000);
  136. }
  137. Toast.methods.addToast(res.message, 8000);
  138. });
  139. },
  140. deleteStation: function() {
  141. let _this = this;
  142. this.socket.emit('stations.remove', this.editing._id, res => {
  143. Toast.methods.addToast(res.message, 8000);
  144. });
  145. }
  146. },
  147. ready: function () {
  148. let _this = this;
  149. io.getSocket(socket => {
  150. _this.socket = socket;
  151. });
  152. },
  153. events: {
  154. closeModal: function() {
  155. this.$parent.modals.editStation = false;
  156. },
  157. editStation: function(station) {
  158. for (let prop in station) {
  159. this.editing[prop] = station[prop];
  160. }
  161. this.$parent.modals.editStation = true;
  162. }
  163. },
  164. components: { Modal }
  165. }
  166. </script>
  167. <style type='scss' scoped>
  168. .controls {
  169. display: flex;
  170. a {
  171. display: flex;
  172. align-items: center;
  173. }
  174. }
  175. .table { margin-bottom: 0; }
  176. h5 { padding: 20px 0; }
  177. .party-mode-inner, .party-mode-outer {
  178. display: flex;
  179. align-items: center;
  180. }
  181. .select:after { border-color: #029ce3; }
  182. </style>