Playlist.vue 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. <template>
  2. <div class="sidebar" transition="slide">
  3. <div class="inner-wrapper">
  4. <div class="title">
  5. Playlists
  6. </div>
  7. <aside v-if="playlists.length > 0" class="menu">
  8. <ul class="menu-list">
  9. <li v-for="(playlist, index) in playlists" :key="index">
  10. <span>{{ playlist.displayName }}</span>
  11. <!--Will play playlist in community station Kris-->
  12. <div class="icons-group">
  13. <a
  14. v-if="
  15. isNotSelected(playlist._id) &&
  16. !$parent.station.partyMode
  17. "
  18. href="#"
  19. @click="selectPlaylist(playlist._id)"
  20. >
  21. <i class="material-icons">play_arrow</i>
  22. </a>
  23. <a href="#" v-on:click="edit(playlist._id)">
  24. <i class="material-icons">edit</i>
  25. </a>
  26. </div>
  27. </li>
  28. </ul>
  29. </aside>
  30. <div v-else class="none-found">
  31. No Playlists found
  32. </div>
  33. <a
  34. class="button create-playlist"
  35. href="#"
  36. @click="
  37. openModal({ sector: 'station', modal: 'createPlaylist' })
  38. "
  39. >Create Playlist</a
  40. >
  41. </div>
  42. </div>
  43. </template>
  44. <script>
  45. import { mapActions } from "vuex";
  46. import { Toast } from "vue-roaster";
  47. import io from "../../io";
  48. export default {
  49. data() {
  50. return {
  51. playlists: []
  52. };
  53. },
  54. methods: {
  55. edit(id) {
  56. this.editPlaylist(id);
  57. this.openModal({ sector: "station", modal: "editPlaylist" });
  58. },
  59. selectPlaylist(id) {
  60. this.socket.emit(
  61. "stations.selectPrivatePlaylist",
  62. this.$parent.station._id,
  63. id,
  64. res => {
  65. if (res.status === "failure")
  66. return Toast.methods.addToast(res.message, 8000);
  67. return Toast.methods.addToast(res.message, 4000);
  68. }
  69. );
  70. },
  71. isNotSelected(id) {
  72. // TODO Also change this once it changes for a station
  73. if (
  74. this.$parent.station &&
  75. this.$parent.station.privatePlaylist === id
  76. )
  77. return false;
  78. return true;
  79. },
  80. ...mapActions("modals", ["openModal"]),
  81. ...mapActions("user/playlists", ["editPlaylist"])
  82. },
  83. mounted() {
  84. // TODO: Update when playlist is removed/created
  85. io.getSocket(socket => {
  86. this.socket = socket;
  87. this.socket.emit("playlists.indexForUser", res => {
  88. if (res.status === "success") this.playlists = res.data;
  89. });
  90. this.socket.on("event:playlist.create", playlist => {
  91. this.playlists.push(playlist);
  92. });
  93. this.socket.on("event:playlist.delete", playlistId => {
  94. this.playlists.forEach((playlist, index) => {
  95. if (playlist._id === playlistId) {
  96. this.playlists.splice(index, 1);
  97. }
  98. });
  99. });
  100. this.socket.on("event:playlist.addSong", data => {
  101. this.playlists.forEach((playlist, index) => {
  102. if (playlist._id === data.playlistId) {
  103. this.playlists[index].songs.push(data.song);
  104. }
  105. });
  106. });
  107. this.socket.on("event:playlist.removeSong", data => {
  108. this.playlists.forEach((playlist, index) => {
  109. if (playlist._id === data.playlistId) {
  110. this.playlists[index].songs.forEach((song, index2) => {
  111. if (song._id === data.songId) {
  112. this.playlists[index].songs.splice(index2, 1);
  113. }
  114. });
  115. }
  116. });
  117. });
  118. this.socket.on("event:playlist.updateDisplayName", data => {
  119. this.playlists.forEach((playlist, index) => {
  120. if (playlist._id === data.playlistId) {
  121. this.playlists[index].displayName = data.displayName;
  122. }
  123. });
  124. });
  125. });
  126. }
  127. };
  128. </script>
  129. <style lang="scss" scoped>
  130. @import "styles/global.scss";
  131. .sidebar {
  132. position: fixed;
  133. z-index: 1;
  134. top: 0;
  135. right: 0;
  136. width: 300px;
  137. height: 100vh;
  138. background-color: $white;
  139. box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16),
  140. 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  141. }
  142. .icons-group a {
  143. display: flex;
  144. align-items: center;
  145. }
  146. .menu-list li {
  147. align-items: center;
  148. }
  149. .inner-wrapper {
  150. top: 60px;
  151. position: relative;
  152. }
  153. .slide-transition {
  154. transition: transform 0.6s ease-in-out;
  155. transform: translateX(0);
  156. }
  157. .slide-enter,
  158. .slide-leave {
  159. transform: translateX(100%);
  160. }
  161. .title {
  162. background-color: rgb(3, 169, 244);
  163. text-align: center;
  164. padding: 10px;
  165. color: $white;
  166. font-weight: 600;
  167. }
  168. .create-playlist {
  169. width: 100%;
  170. margin-top: 20px;
  171. height: 40px;
  172. border-radius: 0;
  173. background: rgba(3, 169, 244, 1);
  174. color: $white !important;
  175. border: 0;
  176. &:active,
  177. &:focus {
  178. border: 0;
  179. }
  180. }
  181. .create-playlist:focus {
  182. background: $primary-color;
  183. }
  184. .none-found {
  185. text-align: center;
  186. }
  187. </style>