MyPlaylists.vue 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323
  1. <template>
  2. <div id="my-playlists">
  3. <draggable
  4. class="menu-list scrollable-list"
  5. v-if="playlists.length > 0"
  6. v-model="playlists"
  7. v-bind="dragOptions"
  8. @start="drag = true"
  9. @end="drag = false"
  10. @change="savePlaylistOrder"
  11. >
  12. <transition-group
  13. type="transition"
  14. :name="!drag ? 'draggable-list-transition' : null"
  15. >
  16. <playlist-item
  17. :playlist="playlist"
  18. v-for="(playlist, index) in playlists"
  19. :key="'key-' + index"
  20. class="item-draggable"
  21. >
  22. <div class="icons-group" slot="actions">
  23. <i
  24. v-if="
  25. station.type === 'community' &&
  26. isNotSelected(playlist._id)
  27. "
  28. @click="selectPlaylist(playlist._id)"
  29. class="material-icons play-icon"
  30. :content="
  31. station.partyMode
  32. ? 'Request songs from this playlist'
  33. : 'Play songs from this playlist'
  34. "
  35. v-tippy
  36. >play_arrow</i
  37. >
  38. <i
  39. v-if="
  40. station.type === 'community' &&
  41. !isNotSelected(playlist._id)
  42. "
  43. @click="deselectPlaylist(playlist._id)"
  44. class="material-icons stop-icon"
  45. :content="
  46. station.partyMode
  47. ? 'Stop requesting songs from this playlist'
  48. : 'Stop playing songs from this playlist'
  49. "
  50. v-tippy
  51. >stop</i
  52. >
  53. <i
  54. @click="edit(playlist._id)"
  55. class="material-icons edit-icon"
  56. content="Edit Playlist"
  57. v-tippy
  58. >edit</i
  59. >
  60. </div>
  61. </playlist-item>
  62. </transition-group>
  63. </draggable>
  64. <p v-else class="nothing-here-text scrollable-list">
  65. No Playlists found
  66. </p>
  67. <a
  68. class="button create-playlist tab-actionable-button"
  69. href="#"
  70. @click="openModal({ sector: 'station', modal: 'createPlaylist' })"
  71. >
  72. <i class="material-icons icon-with-button">create</i>
  73. <span class="optional-desktop-only-text"> Create Playlist </span>
  74. </a>
  75. </div>
  76. </template>
  77. <script>
  78. import { mapState, mapActions, mapGetters } from "vuex";
  79. import Toast from "toasters";
  80. import draggable from "vuedraggable";
  81. import PlaylistItem from "../../../../components/ui/PlaylistItem.vue";
  82. import SortablePlaylists from "../../../../mixins/SortablePlaylists.vue";
  83. export default {
  84. components: { PlaylistItem, draggable },
  85. mixins: [SortablePlaylists],
  86. data() {
  87. return {
  88. playlists: []
  89. };
  90. },
  91. computed: {
  92. ...mapState({
  93. station: state => state.station.station,
  94. privatePlaylistQueueSelected: state =>
  95. state.station.privatePlaylistQueueSelected
  96. }),
  97. ...mapGetters({
  98. socket: "websockets/getSocket"
  99. })
  100. },
  101. mounted() {
  102. /** Get playlists for user */
  103. this.socket.dispatch("playlists.indexMyPlaylists", true, res => {
  104. if (res.status === "success") this.playlists = res.data;
  105. this.orderOfPlaylists = this.calculatePlaylistOrder(); // order in regards to the database
  106. });
  107. this.socket.on("event:playlist.create", playlist => {
  108. this.playlists.push(playlist);
  109. });
  110. this.socket.on("event:playlist.delete", playlistId => {
  111. this.playlists.forEach((playlist, index) => {
  112. if (playlist._id === playlistId) {
  113. this.playlists.splice(index, 1);
  114. }
  115. });
  116. });
  117. this.socket.on("event:playlist.addSong", data => {
  118. this.playlists.forEach((playlist, index) => {
  119. if (playlist._id === data.playlistId) {
  120. this.playlists[index].songs.push(data.song);
  121. }
  122. });
  123. });
  124. this.socket.on("event:playlist.removeSong", data => {
  125. this.playlists.forEach((playlist, index) => {
  126. if (playlist._id === data.playlistId) {
  127. this.playlists[index].songs.forEach((song, index2) => {
  128. if (song.songId === data.songId) {
  129. this.playlists[index].songs.splice(index2, 1);
  130. }
  131. });
  132. }
  133. });
  134. });
  135. this.socket.on("event:playlist.updateDisplayName", data => {
  136. this.playlists.forEach((playlist, index) => {
  137. if (playlist._id === data.playlistId) {
  138. this.playlists[index].displayName = data.displayName;
  139. }
  140. });
  141. });
  142. this.socket.on("event:playlist.updatePrivacy", data => {
  143. this.playlists.forEach((playlist, index) => {
  144. if (playlist._id === data.playlist._id) {
  145. this.playlists[index].privacy = data.playlist.privacy;
  146. }
  147. });
  148. });
  149. this.socket.on(
  150. "event:user.orderOfPlaylists.changed",
  151. orderOfPlaylists => {
  152. const sortedPlaylists = [];
  153. this.playlists.forEach(playlist => {
  154. sortedPlaylists[
  155. orderOfPlaylists.indexOf(playlist._id)
  156. ] = playlist;
  157. });
  158. this.playlists = sortedPlaylists;
  159. this.orderOfPlaylists = this.calculatePlaylistOrder();
  160. }
  161. );
  162. },
  163. methods: {
  164. edit(id) {
  165. this.editPlaylist(id);
  166. this.openModal({ sector: "station", modal: "editPlaylist" });
  167. },
  168. selectPlaylist(id) {
  169. if (this.station.type === "community" && this.station.partyMode) {
  170. if (this.isNotSelected(id)) {
  171. this.updatePrivatePlaylistQueueSelected(id);
  172. this.$parent.$parent.addFirstPrivatePlaylistSongToQueue();
  173. new Toast({
  174. content:
  175. "Successfully selected playlist to auto request songs.",
  176. timeout: 4000
  177. });
  178. } else {
  179. new Toast({
  180. content: "Error: Playlist already selected.",
  181. timeout: 4000
  182. });
  183. }
  184. } else {
  185. this.socket.dispatch(
  186. "stations.selectPrivatePlaylist",
  187. this.station._id,
  188. id,
  189. res => {
  190. if (res.status === "failure") {
  191. new Toast({
  192. content: res.message,
  193. timeout: 8000
  194. });
  195. } else {
  196. this.station.includedPlaylists.push(id);
  197. new Toast({
  198. content: res.message,
  199. timeout: 4000
  200. });
  201. }
  202. }
  203. );
  204. }
  205. },
  206. deselectPlaylist(id) {
  207. if (this.station.type === "community" && this.station.partyMode) {
  208. this.updatePrivatePlaylistQueueSelected(null);
  209. new Toast({
  210. content: "Successfully deselected playlist.",
  211. timeout: 4000
  212. });
  213. } else {
  214. this.socket.dispatch(
  215. "stations.deselectPrivatePlaylist",
  216. this.station._id,
  217. id,
  218. res => {
  219. if (res.status === "failure")
  220. new Toast({
  221. content: res.message,
  222. timeout: 8000
  223. });
  224. this.station.includedPlaylists.splice(
  225. this.station.includedPlaylists.indexOf(id),
  226. 1
  227. );
  228. new Toast({
  229. content: res.message,
  230. timeout: 4000
  231. });
  232. }
  233. );
  234. }
  235. },
  236. isNotSelected(id) {
  237. if (this.station.type === "community" && this.station.partyMode) {
  238. return this.privatePlaylistQueueSelected !== id;
  239. }
  240. // TODO Also change this once it changes for a station
  241. if (
  242. this.station &&
  243. this.station.includedPlaylists.indexOf(id) !== -1
  244. )
  245. return false;
  246. return true;
  247. },
  248. ...mapActions("station", ["updatePrivatePlaylistQueueSelected"]),
  249. ...mapActions("modalVisibility", ["openModal"]),
  250. ...mapActions("user/playlists", ["editPlaylist"])
  251. }
  252. };
  253. </script>
  254. <style lang="scss" scoped>
  255. #my-playlists {
  256. background-color: var(--white);
  257. margin-bottom: 20px;
  258. border-radius: 0 0 5px 5px;
  259. max-height: 100%;
  260. }
  261. .night-mode {
  262. #my-playlists {
  263. background-color: var(--dark-grey-3) !important;
  264. border: 0 !important;
  265. }
  266. .draggable-list-ghost {
  267. filter: brightness(95%);
  268. }
  269. }
  270. .nothing-here-text {
  271. margin-bottom: 10px;
  272. }
  273. .icons-group {
  274. display: flex;
  275. align-items: center;
  276. .edit-icon {
  277. color: var(--primary-color);
  278. }
  279. }
  280. .menu-list .playlist-item:not(:last-of-type) {
  281. margin-bottom: 10px;
  282. }
  283. .create-playlist {
  284. width: 100%;
  285. height: 40px;
  286. border-radius: 5px;
  287. border: 0;
  288. &:active,
  289. &:focus {
  290. border: 0;
  291. }
  292. }
  293. .draggable-list-transition-move {
  294. transition: transform 0.5s;
  295. }
  296. .draggable-list-ghost {
  297. opacity: 0.5;
  298. filter: brightness(95%);
  299. }
  300. </style>