AddSongToQueue.vue 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462
  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="modal-section-title">Choose a song</h4>
  7. <p class="modal-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="querySearch"
  18. autofocus
  19. @keyup.enter="submitQuery()"
  20. />
  21. </p>
  22. <p class="control">
  23. <a
  24. class="button is-info"
  25. v-on:click="submitQuery()"
  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. <table
  35. class="table"
  36. style="margin-top: 20px;"
  37. v-if="queryResults.length > 0"
  38. >
  39. <tbody>
  40. <tr
  41. v-for="(result, index) in queryResults"
  42. :key="index"
  43. >
  44. <td class="song-thumbnail">
  45. <div
  46. :style="
  47. `background-image: url('${result.thumbnail}'`
  48. "
  49. ></div>
  50. </td>
  51. <td><strong v-html="result.title"></strong></td>
  52. <td class="song-actions">
  53. <transition
  54. name="song-actions-transition"
  55. mode="out-in"
  56. >
  57. <a
  58. class="button is-success"
  59. v-if="result.isAddedToQueue"
  60. href="#"
  61. key="added-to-queue"
  62. >
  63. <i
  64. class="material-icons icon-with-button"
  65. >done</i
  66. >
  67. Added to queue
  68. </a>
  69. <a
  70. class="button is-dark"
  71. v-else
  72. v-on:click="
  73. addSongToQueue(result.id, index)
  74. "
  75. href="#"
  76. key="add-to-queue"
  77. >
  78. <i
  79. class="material-icons icon-with-button"
  80. >add</i
  81. >
  82. Add to queue
  83. </a>
  84. </transition>
  85. </td>
  86. </tr>
  87. </tbody>
  88. </table>
  89. <!-- Import a playlist from youtube -->
  90. <div v-if="station.type === 'official'">
  91. <hr style="margin: 30px 0;" />
  92. <h4 class="modal-section-title">
  93. Import a playlist
  94. </h4>
  95. <p class="modal-section-description">
  96. Import a playlist by using a link from YouTube.
  97. </p>
  98. <br />
  99. <div class="control is-grouped input-with-button">
  100. <p class="control is-expanded">
  101. <input
  102. class="input"
  103. type="text"
  104. placeholder="YouTube Playlist URL"
  105. v-model="importQuery"
  106. @keyup.enter="importPlaylist()"
  107. />
  108. </p>
  109. <p class="control">
  110. <a
  111. class="button is-info"
  112. v-on:click="importPlaylist()"
  113. href="#"
  114. ><i class="material-icons icon-with-button"
  115. >publish</i
  116. >Import</a
  117. >
  118. </p>
  119. </div>
  120. </div>
  121. <!-- Choose a playlist from your account -->
  122. <div
  123. v-if="
  124. loggedIn &&
  125. station.type === 'community' &&
  126. playlists.length > 0
  127. "
  128. >
  129. <hr style="margin: 30px 0;" />
  130. <aside id="playlist-to-queue-selection">
  131. <h4 class="modal-section-title">Choose a playlist</h4>
  132. <p class="modal-section-description">
  133. Choose one of your playlists to add to the queue.
  134. </p>
  135. <br />
  136. <div id="playlists">
  137. <div
  138. class="playlist"
  139. v-for="(playlist, index) in playlists"
  140. :key="index"
  141. >
  142. <playlist-item :playlist="playlist">
  143. <div slot="actions">
  144. <a
  145. class="button is-danger"
  146. v-on:click="
  147. addSongToQueue(result.id)
  148. "
  149. href="#"
  150. @click="
  151. togglePlaylistSelection(
  152. playlist._id
  153. )
  154. "
  155. v-if="
  156. isPlaylistSelected(playlist._id)
  157. "
  158. >
  159. <i
  160. class="material-icons icon-with-button"
  161. >stop</i
  162. >
  163. Stop playing
  164. </a>
  165. <a
  166. class="button is-success"
  167. v-on:click="
  168. addSongToQueue(result.id)
  169. "
  170. href="#"
  171. @click="
  172. togglePlaylistSelection(
  173. playlist._id
  174. )
  175. "
  176. v-else
  177. ><i
  178. class="material-icons icon-with-button"
  179. >play_arrow</i
  180. >Play in queue
  181. </a>
  182. </div>
  183. </playlist-item>
  184. </div>
  185. </div>
  186. </aside>
  187. </div>
  188. </div>
  189. </div>
  190. </modal>
  191. </template>
  192. <script>
  193. import { mapState, mapActions } from "vuex";
  194. import Toast from "toasters";
  195. import PlaylistItem from "../../components/ui/PlaylistItem.vue";
  196. import Modal from "../../components/Modal.vue";
  197. import io from "../../io";
  198. export default {
  199. data() {
  200. return {
  201. querySearch: "",
  202. queryResults: [],
  203. playlists: [],
  204. importQuery: ""
  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. methods: {
  214. isPlaylistSelected(playlistId) {
  215. return this.privatePlaylistQueueSelected === playlistId;
  216. },
  217. togglePlaylistSelection(playlistId) {
  218. if (this.station.type === "community") {
  219. if (this.isPlaylistSelected(playlistId)) {
  220. this.updatePrivatePlaylistQueueSelected(null);
  221. } else {
  222. this.updatePrivatePlaylistQueueSelected(playlistId);
  223. this.$parent.addFirstPrivatePlaylistSongToQueue();
  224. console.log(this.isPlaylistSelected(playlistId));
  225. }
  226. }
  227. },
  228. addSongToQueue(songId, index) {
  229. if (this.station.type === "community") {
  230. this.socket.emit(
  231. "stations.addToQueue",
  232. this.station._id,
  233. songId,
  234. data => {
  235. if (data.status !== "success")
  236. new Toast({
  237. content: `Error: ${data.message}`,
  238. timeout: 8000
  239. });
  240. else {
  241. this.queryResults[index].isAddedToQueue = true;
  242. new Toast({
  243. content: `${data.message}`,
  244. timeout: 4000
  245. });
  246. }
  247. }
  248. );
  249. } else {
  250. this.socket.emit("queueSongs.add", songId, data => {
  251. if (data.status !== "success")
  252. new Toast({
  253. content: `Error: ${data.message}`,
  254. timeout: 8000
  255. });
  256. else {
  257. this.queryResults[index].isAddedToQueue = true;
  258. new Toast({
  259. content: `${data.message}`,
  260. timeout: 4000
  261. });
  262. }
  263. });
  264. }
  265. },
  266. importPlaylist() {
  267. new Toast({
  268. content:
  269. "Starting to import your playlist. This can take some time to do.",
  270. timeout: 4000
  271. });
  272. this.socket.emit(
  273. "queueSongs.addSetToQueue",
  274. this.importQuery,
  275. res => {
  276. return new Toast({ content: res.message, timeout: 4000 });
  277. }
  278. );
  279. },
  280. submitQuery() {
  281. let query = this.querySearch;
  282. if (!this.querySearch)
  283. return new Toast({
  284. content: "Please input a search query or a YouTube link",
  285. timeout: 4000
  286. });
  287. if (query.indexOf("&index=") !== -1) {
  288. query = query.split("&index=");
  289. query.pop();
  290. query = query.join("");
  291. }
  292. if (query.indexOf("&list=") !== -1) {
  293. query = query.split("&list=");
  294. query.pop();
  295. query = query.join("");
  296. }
  297. return this.socket.emit("apis.searchYoutube", query, res => {
  298. if (res.status === "failure")
  299. return new Toast({
  300. content: "Error searching on YouTube",
  301. timeout: 4000
  302. });
  303. const { data } = res;
  304. this.queryResults = [];
  305. console.log(res.data);
  306. for (let i = 0; i < data.items.length; i += 1) {
  307. this.queryResults.push({
  308. id: data.items[i].id.videoId,
  309. url: `https://www.youtube.com/watch?v=${this.id}`,
  310. title: data.items[i].snippet.title,
  311. thumbnail: data.items[i].snippet.thumbnails.default.url,
  312. isAddedToQueue: false
  313. });
  314. }
  315. return this.queryResults;
  316. });
  317. },
  318. ...mapActions("station", ["updatePrivatePlaylistQueueSelected"]),
  319. ...mapActions("user/playlists", ["editPlaylist"])
  320. },
  321. mounted() {
  322. io.getSocket(socket => {
  323. this.socket = socket;
  324. this.socket.emit("playlists.indexForUser", res => {
  325. if (res.status === "success") this.playlists = res.data;
  326. });
  327. });
  328. },
  329. components: { Modal, PlaylistItem }
  330. };
  331. </script>
  332. <style lang="scss" scoped>
  333. @import "../../styles/global.scss";
  334. .night-mode {
  335. tr {
  336. background-color: #222;
  337. }
  338. }
  339. tr td {
  340. vertical-align: middle;
  341. }
  342. .song-actions {
  343. .button {
  344. height: 36px;
  345. width: 140px;
  346. }
  347. }
  348. .song-thumbnail div {
  349. width: 96px;
  350. height: 54px;
  351. background-position: center;
  352. background-repeat: no-repeat;
  353. }
  354. .table {
  355. margin-bottom: 0;
  356. }
  357. .night-mode {
  358. div {
  359. color: #4d4d4d;
  360. }
  361. }
  362. #playlist-to-queue-selection {
  363. margin-top: 0;
  364. #playlists {
  365. font-size: 18px;
  366. .radio {
  367. display: flex;
  368. flex-direction: row;
  369. align-items: center;
  370. input {
  371. transform: scale(1.25);
  372. }
  373. }
  374. }
  375. }
  376. .input-with-button {
  377. .control {
  378. margin-right: 0px !important;
  379. }
  380. input {
  381. height: 36px;
  382. border-radius: 3px 0 3px 0;
  383. }
  384. .button {
  385. height: 36px;
  386. border-radius: 0 3px 3px 0;
  387. }
  388. }
  389. .vertical-padding {
  390. padding: 20px;
  391. }
  392. #playlists {
  393. .playlist {
  394. .button {
  395. width: 146px;
  396. }
  397. }
  398. }
  399. .song-actions-transition-enter-active {
  400. transition: all 0.2s ease;
  401. }
  402. .song-actions-transition-leave-active {
  403. transition: all 0.2s cubic-bezier(1, 0.5, 0.8, 1);
  404. }
  405. .song-actions-transition-enter {
  406. transform: translateX(-20px);
  407. opacity: 0;
  408. }
  409. .song-actions-transition-leave-to {
  410. transform: translateX(20px);
  411. opacity: 0;
  412. }
  413. </style>