AddSongToQueue.vue 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427
  1. <template>
  2. <modal title="Add Song To Queue">
  3. <div slot="body">
  4. <div class="vertical-padding">
  5. <!-- Choosing a song from youtube -->
  6. <h4 class="section-title">Choose a song</h4>
  7. <p class="section-description">
  8. Choose a song by searching or using a link from YouTube.
  9. </p>
  10. <br />
  11. <div class="control is-grouped input-with-button">
  12. <p class="control is-expanded">
  13. <input
  14. class="input"
  15. type="text"
  16. placeholder="Enter your YouTube query here..."
  17. v-model="search.songs.query"
  18. autofocus
  19. @keyup.enter="searchForSongs()"
  20. />
  21. </p>
  22. <p class="control">
  23. <a
  24. class="button is-info"
  25. @click.prevent="searchForSongs()"
  26. href="#"
  27. ><i class="material-icons icon-with-button"
  28. >search</i
  29. >Search</a
  30. >
  31. </p>
  32. </div>
  33. <!-- Choosing a song from youtube - query results -->
  34. <div
  35. id="song-query-results"
  36. v-if="search.songs.results.length > 0"
  37. >
  38. <search-query-item
  39. v-for="(result, index) in search.songs.results"
  40. :key="index"
  41. :result="result"
  42. >
  43. <div slot="actions">
  44. <transition
  45. name="search-query-actions"
  46. mode="out-in"
  47. >
  48. <a
  49. class="button is-success"
  50. v-if="result.isAddedToQueue"
  51. href="#"
  52. key="added-to-playlist"
  53. >
  54. <i class="material-icons icon-with-button"
  55. >done</i
  56. >
  57. Added to queue
  58. </a>
  59. <a
  60. class="button is-dark"
  61. v-else
  62. @click.prevent="
  63. addSongToQueue(result.id, index)
  64. "
  65. href="#"
  66. key="add-to-queue"
  67. >
  68. <i class="material-icons icon-with-button"
  69. >add</i
  70. >
  71. Add to queue
  72. </a>
  73. </transition>
  74. </div>
  75. </search-query-item>
  76. <a
  77. class="button is-default load-more-button"
  78. @click.prevent="loadMoreSongs()"
  79. href="#"
  80. >
  81. Load more...
  82. </a>
  83. </div>
  84. <!-- Import a playlist from youtube -->
  85. <div v-if="station.type === 'official'">
  86. <hr class="section-horizontal-rule" />
  87. <h4 class="section-title">Import a playlist</h4>
  88. <p class="section-description">
  89. Import a playlist by using a link from YouTube.
  90. </p>
  91. <br />
  92. <div class="control is-grouped input-with-button">
  93. <p class="control is-expanded">
  94. <input
  95. class="input"
  96. type="text"
  97. placeholder="YouTube Playlist URL"
  98. v-model="search.playlist.query"
  99. @keyup.enter="importPlaylist()"
  100. />
  101. </p>
  102. <p class="control has-addons">
  103. <span class="select" id="playlist-import-type">
  104. <select
  105. v-model="
  106. search.playlist.isImportingOnlyMusic
  107. "
  108. >
  109. <option :value="false">Import all</option>
  110. <option :value="true">
  111. Import only music
  112. </option>
  113. </select>
  114. </span>
  115. <a
  116. class="button is-info"
  117. @click.prevent="importPlaylist()"
  118. href="#"
  119. ><i class="material-icons icon-with-button"
  120. >publish</i
  121. >Import</a
  122. >
  123. </p>
  124. </div>
  125. </div>
  126. <!-- Choose a playlist from your account -->
  127. <div
  128. v-if="
  129. loggedIn &&
  130. station.type === 'community' &&
  131. playlists.length > 0
  132. "
  133. >
  134. <hr class="section-horizontal-rule" />
  135. <aside id="playlist-to-queue-selection">
  136. <h4 class="section-title">Choose a playlist</h4>
  137. <p class="section-description">
  138. Choose one of your playlists to add to the queue.
  139. </p>
  140. <br />
  141. <div id="playlists">
  142. <div
  143. class="playlist"
  144. v-for="(playlist, index) in playlists"
  145. :key="index"
  146. >
  147. <playlist-item :playlist="playlist">
  148. <div slot="actions">
  149. <a
  150. class="button is-danger"
  151. href="#"
  152. @click.prevent="
  153. togglePlaylistSelection(
  154. playlist._id
  155. )
  156. "
  157. v-if="
  158. isPlaylistSelected(playlist._id)
  159. "
  160. >
  161. <i
  162. class="material-icons icon-with-button"
  163. >stop</i
  164. >
  165. Stop playing
  166. </a>
  167. <a
  168. class="button is-success"
  169. @click.prevent="
  170. togglePlaylistSelection(
  171. playlist._id
  172. )
  173. "
  174. href="#"
  175. v-else
  176. ><i
  177. class="material-icons icon-with-button"
  178. >play_arrow</i
  179. >Play in queue
  180. </a>
  181. </div>
  182. </playlist-item>
  183. </div>
  184. </div>
  185. </aside>
  186. </div>
  187. </div>
  188. </div>
  189. </modal>
  190. </template>
  191. <script>
  192. import { mapState, mapActions } from "vuex";
  193. import Toast from "toasters";
  194. import SearchYoutube from "../../mixins/SearchYoutube.vue";
  195. import PlaylistItem from "../../components/ui/PlaylistItem.vue";
  196. import SearchQueryItem from "../../components/ui/SearchQueryItem.vue";
  197. import Modal from "../../components/Modal.vue";
  198. import io from "../../io";
  199. export default {
  200. components: { Modal, PlaylistItem, SearchQueryItem },
  201. mixins: [SearchYoutube],
  202. data() {
  203. return {
  204. playlists: []
  205. };
  206. },
  207. computed: mapState({
  208. loggedIn: state => state.user.auth.loggedIn,
  209. station: state => state.station.station,
  210. privatePlaylistQueueSelected: state =>
  211. state.station.privatePlaylistQueueSelected
  212. }),
  213. mounted() {
  214. io.getSocket(socket => {
  215. this.socket = socket;
  216. this.socket.emit("playlists.indexMyPlaylists", true, res => {
  217. if (res.status === "success") this.playlists = res.data;
  218. });
  219. });
  220. },
  221. methods: {
  222. isPlaylistSelected(playlistId) {
  223. return this.privatePlaylistQueueSelected === playlistId;
  224. },
  225. togglePlaylistSelection(playlistId) {
  226. if (this.station.type === "community") {
  227. if (this.isPlaylistSelected(playlistId)) {
  228. this.updatePrivatePlaylistQueueSelected(null);
  229. } else {
  230. this.updatePrivatePlaylistQueueSelected(playlistId);
  231. this.$parent.addFirstPrivatePlaylistSongToQueue();
  232. console.log(this.isPlaylistSelected(playlistId));
  233. }
  234. }
  235. },
  236. addSongToQueue(songId, index) {
  237. if (this.station.type === "community") {
  238. this.socket.emit(
  239. "stations.addToQueue",
  240. this.station._id,
  241. songId,
  242. data => {
  243. if (data.status !== "success")
  244. new Toast({
  245. content: `Error: ${data.message}`,
  246. timeout: 8000
  247. });
  248. else {
  249. this.search.songs.results[
  250. index
  251. ].isAddedToQueue = true;
  252. new Toast({
  253. content: `${data.message}`,
  254. timeout: 4000
  255. });
  256. }
  257. }
  258. );
  259. } else {
  260. this.socket.emit("queueSongs.add", songId, data => {
  261. if (data.status !== "success")
  262. new Toast({
  263. content: `Error: ${data.message}`,
  264. timeout: 8000
  265. });
  266. else {
  267. this.search.songs.results[index].isAddedToQueue = true;
  268. new Toast({
  269. content: `${data.message}`,
  270. timeout: 4000
  271. });
  272. }
  273. });
  274. }
  275. },
  276. importPlaylist() {
  277. let isImportingPlaylist = true;
  278. // import query is blank
  279. if (!this.search.playlist.query)
  280. return new Toast({
  281. content: "Please enter a YouTube playlist URL.",
  282. timeout: 4000
  283. });
  284. // don't give starting import message instantly in case of instant error
  285. setTimeout(() => {
  286. if (isImportingPlaylist) {
  287. new Toast({
  288. content:
  289. "Starting to import your playlist. This can take some time to do.",
  290. timeout: 4000
  291. });
  292. }
  293. }, 750);
  294. return this.socket.emit(
  295. "queueSongs.addSetToQueue",
  296. this.search.playlist.query,
  297. this.search.playlist.isImportingOnlyMusic,
  298. res => {
  299. isImportingPlaylist = false;
  300. return new Toast({ content: res.message, timeout: 20000 });
  301. }
  302. );
  303. },
  304. ...mapActions("station", ["updatePrivatePlaylistQueueSelected"]),
  305. ...mapActions("user/playlists", ["editPlaylist"])
  306. }
  307. };
  308. </script>
  309. <style lang="scss" scoped>
  310. @import "../../styles/global.scss";
  311. .night-mode {
  312. div {
  313. color: var(--dark-grey);
  314. }
  315. }
  316. .song-actions {
  317. .button {
  318. height: 36px;
  319. width: 140px;
  320. }
  321. }
  322. .song-thumbnail div {
  323. width: 96px;
  324. height: 54px;
  325. background-position: center;
  326. background-repeat: no-repeat;
  327. }
  328. .table {
  329. margin-bottom: 0;
  330. margin-top: 20px;
  331. }
  332. #playlist-to-queue-selection {
  333. margin-top: 0;
  334. #playlists {
  335. font-size: 18px;
  336. .playlist {
  337. .button {
  338. width: 150px;
  339. }
  340. i {
  341. color: var(--white);
  342. }
  343. }
  344. .playlist:not(:last-of-type) {
  345. margin-bottom: 10px;
  346. }
  347. .radio {
  348. display: flex;
  349. flex-direction: row;
  350. align-items: center;
  351. input {
  352. transform: scale(1.25);
  353. }
  354. }
  355. }
  356. }
  357. #playlist-import-type {
  358. &:hover {
  359. z-index: initial;
  360. }
  361. select {
  362. border-radius: 0;
  363. }
  364. }
  365. .vertical-padding {
  366. padding: 20px;
  367. }
  368. #song-query-results {
  369. padding: 10px;
  370. max-height: 500px;
  371. overflow: auto;
  372. border: 1px solid var(--light-grey-3);
  373. border-radius: 3px;
  374. .search-query-item:not(:last-of-type) {
  375. margin-bottom: 10px;
  376. }
  377. .load-more-button {
  378. width: 100%;
  379. margin-top: 10px;
  380. }
  381. }
  382. </style>