AddSongToPlaylist.vue 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. <template>
  2. <modal title='Add Song To Playlist'>
  3. <div slot='body'>
  4. <aside class="menu">
  5. <p class="menu-label">
  6. Playlists
  7. </p>
  8. <ul class="menu-list">
  9. <li v-for='playlist in playlistsArr'>
  10. <div class='playlist'>
  11. <span class='icon is-small' @click='removeSongFromPlaylist(playlist._id)' v-if='playlists[playlist._id].hasSong'>
  12. <i class="material-icons">playlist_add_check</i>
  13. </span>
  14. <span class='icon is-small' @click='addSongToPlaylist(playlist._id)' v-else>
  15. <i class="material-icons">playlist_add</i>
  16. </span>
  17. {{ playlist.displayName }}
  18. </div>
  19. </li>
  20. </ul>
  21. </aside>
  22. </div>
  23. </modal>
  24. </template>
  25. <script>
  26. import { Toast } from 'vue-roaster';
  27. import Modal from './Modal.vue';
  28. import io from '../../io';
  29. import auth from '../../auth';
  30. export default {
  31. data() {
  32. return {
  33. playlists: {},
  34. playlistsArr: [],
  35. songId: null,
  36. song: null
  37. }
  38. },
  39. methods: {
  40. addSongToPlaylist: function (playlistId) {
  41. let _this = this;
  42. this.socket.emit('playlists.addSongToPlaylist', this.$parent.currentSong.songId, playlistId, res => {
  43. Toast.methods.addToast(res.message, 4000);
  44. if (res.status === 'success') {
  45. _this.playlists[playlistId].songs.push(_this.song);
  46. }
  47. _this.recalculatePlaylists();
  48. //this.$parent.modals.addSongToPlaylist = false;
  49. });
  50. },
  51. removeSongFromPlaylist: function (playlistId) {
  52. let _this = this;
  53. this.socket.emit('playlists.removeSongFromPlaylist', _this.songId, playlistId, res => {
  54. Toast.methods.addToast(res.message, 4000);
  55. if (res.status === 'success') {
  56. _this.playlists[playlistId].songs.forEach((song, index) => {
  57. if (song.songId === _this.songId) _this.playlists[playlistId].songs.splice(index, 1);
  58. });
  59. }
  60. _this.recalculatePlaylists();
  61. //this.$parent.modals.addSongToPlaylist = false;
  62. });
  63. },
  64. recalculatePlaylists: function() {
  65. let _this = this;
  66. _this.playlistsArr = Object.values(_this.playlists).map((playlist) => {
  67. let hasSong = false;
  68. for (let i = 0; i < playlist.songs.length; i++) {
  69. if (playlist.songs[i].songId === _this.songId) {
  70. hasSong = true;
  71. }
  72. }
  73. playlist.hasSong = hasSong;
  74. _this.playlists[playlist._id] = playlist;
  75. return playlist;
  76. });
  77. }
  78. },
  79. ready: function () {
  80. let _this = this;
  81. this.songId = this.$parent.currentSong.songId;
  82. this.song = this.$parent.currentSong;
  83. io.getSocket((socket) => {
  84. _this.socket = socket;
  85. _this.socket.emit('playlists.indexForUser', res => {
  86. if (res.status === 'success') {
  87. res.data.forEach((playlist) => {
  88. _this.playlists[playlist._id] = playlist;
  89. });
  90. _this.recalculatePlaylists();
  91. }
  92. });
  93. });
  94. },
  95. events: {
  96. closeModal: function () {
  97. this.$parent.modals.addSongToPlaylist = !this.$parent.modals.addSongToPlaylist;
  98. }
  99. },
  100. components: { Modal }
  101. }
  102. </script>
  103. <style type='scss' scoped>
  104. .icon.is-small {
  105. margin-right: 10px !important;
  106. }
  107. </style>