MyPlaylists.vue 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. <template>
  2. <div id="my-playlists">
  3. <ul class="menu-list scrollable-list" v-if="playlists.length > 0">
  4. <li v-for="(playlist, index) in playlists" :key="index">
  5. <playlist-item :playlist="playlist">
  6. <div class="icons-group" slot="actions">
  7. <button
  8. v-if="
  9. station.type === 'community' &&
  10. isNotSelected(playlist._id) &&
  11. !station.partyMode
  12. "
  13. class="button is-primary"
  14. @click="selectPlaylist(playlist._id)"
  15. >
  16. <i class="material-icons">play_arrow</i>
  17. </button>
  18. <button
  19. class="button is-primary"
  20. @click="edit(playlist._id)"
  21. >
  22. <i class="material-icons">edit</i>
  23. </button>
  24. </div>
  25. </playlist-item>
  26. </li>
  27. </ul>
  28. <p v-else class="nothing-here-text scrollable-list">
  29. No Playlists found
  30. </p>
  31. <a
  32. class="button create-playlist tab-actionable-button"
  33. href="#"
  34. @click="openModal({ sector: 'station', modal: 'createPlaylist' })"
  35. >Create Playlist</a
  36. >
  37. </div>
  38. </template>
  39. <script>
  40. import { mapState, mapActions } from "vuex";
  41. import Toast from "toasters";
  42. import PlaylistItem from "../../../../components/ui/PlaylistItem.vue";
  43. import io from "../../../../io";
  44. export default {
  45. components: { PlaylistItem },
  46. data() {
  47. return {
  48. playlists: []
  49. };
  50. },
  51. computed: {
  52. ...mapState("modals", {
  53. modals: state => state.modals.station
  54. }),
  55. ...mapState({
  56. station: state => state.station.station
  57. })
  58. },
  59. mounted() {
  60. io.getSocket(socket => {
  61. this.socket = socket;
  62. /** Get playlists for user */
  63. this.socket.emit("playlists.indexForUser", res => {
  64. if (res.status === "success") this.playlists = res.data;
  65. });
  66. this.socket.on("event:playlist.create", playlist => {
  67. this.playlists.push(playlist);
  68. });
  69. this.socket.on("event:playlist.delete", playlistId => {
  70. this.playlists.forEach((playlist, index) => {
  71. if (playlist._id === playlistId) {
  72. this.playlists.splice(index, 1);
  73. }
  74. });
  75. });
  76. this.socket.on("event:playlist.addSong", data => {
  77. this.playlists.forEach((playlist, index) => {
  78. if (playlist._id === data.playlistId) {
  79. this.playlists[index].songs.push(data.song);
  80. }
  81. });
  82. });
  83. this.socket.on("event:playlist.removeSong", data => {
  84. this.playlists.forEach((playlist, index) => {
  85. if (playlist._id === data.playlistId) {
  86. this.playlists[index].songs.forEach((song, index2) => {
  87. if (song._id === data.songId) {
  88. this.playlists[index].songs.splice(index2, 1);
  89. }
  90. });
  91. }
  92. });
  93. });
  94. this.socket.on("event:playlist.updateDisplayName", data => {
  95. this.playlists.forEach((playlist, index) => {
  96. if (playlist._id === data.playlistId) {
  97. this.playlists[index].displayName = data.displayName;
  98. }
  99. });
  100. });
  101. });
  102. },
  103. methods: {
  104. edit(id) {
  105. this.editPlaylist(id);
  106. this.openModal({ sector: "station", modal: "editPlaylist" });
  107. },
  108. selectPlaylist(id) {
  109. this.socket.emit(
  110. "stations.selectPrivatePlaylist",
  111. this.station._id,
  112. id,
  113. res => {
  114. if (res.status === "failure")
  115. return new Toast({
  116. content: res.message,
  117. timeout: 8000
  118. });
  119. return new Toast({ content: res.message, timeout: 4000 });
  120. }
  121. );
  122. },
  123. isNotSelected(id) {
  124. // TODO Also change this once it changes for a station
  125. if (this.station && this.station.privatePlaylist === id)
  126. return false;
  127. return true;
  128. },
  129. ...mapActions("modals", ["openModal"]),
  130. ...mapActions("user/playlists", ["editPlaylist"])
  131. }
  132. };
  133. </script>
  134. <style lang="scss" scoped>
  135. @import "../../../../styles/global.scss";
  136. #my-playlists {
  137. background-color: #fff;
  138. margin-bottom: 20px;
  139. border-radius: 0 0 5px 5px;
  140. max-height: 100%;
  141. .nothing-here-text {
  142. margin-bottom: 10px;
  143. }
  144. .icons-group {
  145. display: flex;
  146. align-items: center;
  147. button:not(:first-of-type) {
  148. margin-left: 5px;
  149. }
  150. }
  151. }
  152. .night-mode {
  153. #my-playlists {
  154. background-color: $night-mode-bg-secondary !important;
  155. border: 0 !important;
  156. }
  157. }
  158. .menu-list li {
  159. align-items: center;
  160. &:not(:last-of-type) {
  161. margin-bottom: 10px;
  162. }
  163. }
  164. .create-playlist {
  165. width: 100%;
  166. height: 40px;
  167. border-radius: 5px;
  168. background-color: rgba(3, 169, 244, 1);
  169. color: $white !important;
  170. border: 0;
  171. &:active,
  172. &:focus {
  173. border: 0;
  174. }
  175. &:focus {
  176. background-color: $primary-color;
  177. }
  178. }
  179. </style>