Edit.vue 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245
  1. <template>
  2. <modal title='Edit Playlist'>
  3. <div slot='body'>
  4. <aside class='menu' v-if='playlist.songs && playlist.songs.length > 0'>
  5. <ul class='menu-list'>
  6. <li v-for='song in playlist.songs' track-by='$index'>
  7. <a :href='' target='_blank'>{{ song.title }}</a>
  8. <div class='controls'>
  9. <a href='#' @click='promoteSong(song.songId)'>
  10. <i class='material-icons' v-if='$index > 0'>keyboard_arrow_up</i>
  11. <i class='material-icons' style='opacity: 0' v-else>error</i>
  12. </a>
  13. <a href='#' @click='demoteSong(song.songId)'>
  14. <i class='material-icons' v-if='playlist.songs.length - 1 !== $index'>keyboard_arrow_down</i>
  15. <i class='material-icons' style='opacity: 0' v-else>error</i>
  16. </a>
  17. <a href='#' @click='removeSongFromPlaylist(song.songId)'><i class='material-icons'>delete</i></a>
  18. </div>
  19. </li>
  20. </ul>
  21. <br />
  22. </aside>
  23. <div class='control is-grouped'>
  24. <p class='control is-expanded'>
  25. <input class='input' type='text' placeholder='Search for Song to add' v-model='songQuery' autofocus @keyup.enter='searchForSongs()'>
  26. </p>
  27. <p class='control'>
  28. <a class='button is-info' @click='searchForSongs()' href="#">Search</a>
  29. </p>
  30. </div>
  31. <table class='table' v-if='songQueryResults.length > 0'>
  32. <tbody>
  33. <tr v-for='result in songQueryResults'>
  34. <td>
  35. <img :src='result.thumbnail' />
  36. </td>
  37. <td>{{ result.title }}</td>
  38. <td>
  39. <a class='button is-success' @click='addSongToPlaylist(result.id)' href='#'>
  40. Add
  41. </a>
  42. </td>
  43. </tr>
  44. </tbody>
  45. </table>
  46. <div class='control is-grouped'>
  47. <p class='control is-expanded'>
  48. <input class='input' type='text' placeholder='YouTube Playlist URL' v-model='importQuery' @keyup.enter="importPlaylist()">
  49. </p>
  50. <p class='control'>
  51. <a class='button is-info' @click='importPlaylist()' href="#">Import</a>
  52. </p>
  53. </div>
  54. <h5>Edit playlist details:</h5>
  55. <div class='control is-grouped'>
  56. <p class='control is-expanded'>
  57. <input class='input' type='text' placeholder='Playlist Display Name' v-model='playlist.displayName' @keyup.enter="renamePlaylist()">
  58. </p>
  59. <p class='control'>
  60. <a class='button is-info' @click='renamePlaylist()' href="#">Rename</a>
  61. </p>
  62. </div>
  63. </div>
  64. <div slot='footer'>
  65. <a class='button is-danger' @click='removePlaylist()' href="#">Remove Playlist</a>
  66. </div>
  67. </modal>
  68. </template>
  69. <script>
  70. import { Toast } from 'vue-roaster';
  71. import Modal from '../Modal.vue';
  72. import io from '../../../io';
  73. import validation from '../../../validation';
  74. export default {
  75. components: { Modal },
  76. data() {
  77. return {
  78. playlist: {},
  79. songQueryResults: [],
  80. songQuery: '',
  81. importQuery: ''
  82. }
  83. },
  84. methods: {
  85. searchForSongs: function () {
  86. let _this = this;
  87. let query = _this.songQuery;
  88. if (query.indexOf('&index=') !== -1) {
  89. query = query.split('&index=');
  90. query.pop();
  91. query = query.join('');
  92. }
  93. if (query.indexOf('&list=') !== -1) {
  94. query = query.split('&list=');
  95. query.pop();
  96. query = query.join('');
  97. }
  98. _this.socket.emit('apis.searchYoutube', query, res => {
  99. if (res.status == 'success') {
  100. _this.songQueryResults = [];
  101. for (let i = 0; i < res.data.items.length; i++) {
  102. _this.songQueryResults.push({
  103. id: res.data.items[i].id.videoId,
  104. url: `https://www.youtube.com/watch?v=${this.id}`,
  105. title: res.data.items[i].snippet.title,
  106. thumbnail: res.data.items[i].snippet.thumbnails.default.url
  107. });
  108. }
  109. } else if (res.status === 'error') Toast.methods.addToast(res.message, 3000);
  110. });
  111. },
  112. addSongToPlaylist: function (id) {
  113. let _this = this;
  114. _this.socket.emit('playlists.addSongToPlaylist', id, _this.playlist._id, res => {
  115. Toast.methods.addToast(res.message, 4000);
  116. });
  117. },
  118. importPlaylist: function () {
  119. let _this = this;
  120. Toast.methods.addToast('Starting to import your playlist. This can take some time to do.', 4000);
  121. this.socket.emit('playlists.addSetToPlaylist', _this.importQuery, _this.playlist._id, res => {
  122. if (res.status === 'success') _this.playlist.songs = res.data;
  123. Toast.methods.addToast(res.message, 4000);
  124. });
  125. },
  126. removeSongFromPlaylist: function (id) {
  127. let _this = this;
  128. this.socket.emit('playlists.removeSongFromPlaylist', id, _this.playlist._id, res => {
  129. Toast.methods.addToast(res.message, 4000);
  130. });
  131. },
  132. renamePlaylist: function () {
  133. const displayName = this.playlist.displayName;
  134. if (!validation.isLength(displayName, 2, 32)) return Toast.methods.addToast('Display name must have between 2 and 32 characters.', 8000);
  135. if (!validation.regex.azAZ09_.test(displayName)) return Toast.methods.addToast('Invalid display name format. Allowed characters: a-z, A-Z, 0-9 and _.', 8000);
  136. this.socket.emit('playlists.updateDisplayName', this.playlist._id, this.playlist.displayName, res => {
  137. Toast.methods.addToast(res.message, 4000);
  138. });
  139. },
  140. removePlaylist: function () {
  141. let _this = this;
  142. _this.socket.emit('playlists.remove', _this.playlist._id, res => {
  143. Toast.methods.addToast(res.message, 3000);
  144. if (res.status === 'success') {
  145. _this.$parent.modals.editPlaylist = !_this.$parent.modals.editPlaylist;
  146. }
  147. });
  148. },
  149. promoteSong: function (songId) {
  150. let _this = this;
  151. _this.socket.emit('playlists.moveSongToTop', _this.playlist._id, songId, res => {
  152. Toast.methods.addToast(res.message, 4000);
  153. });
  154. },
  155. demoteSong: function (songId) {
  156. let _this = this;
  157. _this.socket.emit('playlists.moveSongToBottom', _this.playlist._id, songId, res => {
  158. Toast.methods.addToast(res.message, 4000);
  159. });
  160. }
  161. },
  162. ready: function () {
  163. let _this = this;
  164. io.getSocket((socket) => {
  165. _this.socket = socket;
  166. _this.socket.emit('playlists.getPlaylist', _this.$parent.playlistBeingEdited, res => {
  167. if (res.status == 'success') _this.playlist = res.data; _this.playlist.oldId = res.data._id;
  168. });
  169. _this.socket.on('event:playlist.addSong', (data) => {
  170. if (_this.playlist._id === data.playlistId) _this.playlist.songs.push(data.song);
  171. });
  172. _this.socket.on('event:playlist.removeSong', (data) => {
  173. if (_this.playlist._id === data.playlistId) {
  174. _this.playlist.songs.forEach((song, index) => {
  175. if (song.songId === data.songId) _this.playlist.songs.splice(index, 1);
  176. });
  177. }
  178. });
  179. _this.socket.on('event:playlist.updateDisplayName', (data) => {
  180. if (_this.playlist._id === data.playlistId) _this.playlist.displayName = data.displayName;
  181. });
  182. _this.socket.on('event:playlist.moveSongToBottom', (data) => {
  183. if (_this.playlist._id === data.playlistId) {
  184. let songIndex;
  185. _this.playlist.songs.forEach((song, index) => {
  186. if (song.songId === data.songId) songIndex = index;
  187. });
  188. let song = _this.playlist.songs.splice(songIndex, 1)[0];
  189. _this.playlist.songs.push(song);
  190. }
  191. });
  192. _this.socket.on('event:playlist.moveSongToTop', (data) => {
  193. if (_this.playlist._id === data.playlistId) {
  194. let songIndex;
  195. _this.playlist.songs.forEach((song, index) => {
  196. if (song.songId === data.songId) songIndex = index;
  197. });
  198. let song = _this.playlist.songs.splice(songIndex, 1)[0];
  199. _this.playlist.songs.unshift(song);
  200. }
  201. });
  202. });
  203. },
  204. events: {
  205. closeModal: function() {
  206. this.$parent.modals.editPlaylist = !this.$parent.modals.editPlaylist;
  207. }
  208. }
  209. }
  210. </script>
  211. <style type='scss' scoped>
  212. .menu { padding: 0 20px; }
  213. .menu-list li {
  214. display: flex;
  215. justify-content: space-between;
  216. }
  217. .menu-list a:hover { color: #000 !important; }
  218. li a {
  219. display: flex;
  220. align-items: center;
  221. }
  222. .controls {
  223. display: flex;
  224. a {
  225. display: flex;
  226. align-items: center;
  227. }
  228. }
  229. .table {
  230. margin-bottom: 0;
  231. }
  232. h5 { padding: 20px 0; }
  233. </style>