Songs.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459
  1. <template>
  2. <div class="songs">
  3. <div class="tabs-container">
  4. <div class="tab-selection">
  5. <button
  6. class="button is-default"
  7. :class="{ selected: tab === 'search' }"
  8. v-if="isAllowedToParty()"
  9. @click="showTab('search')"
  10. >
  11. Search
  12. </button>
  13. <button
  14. class="button is-default"
  15. :class="{ selected: tab === 'included' }"
  16. v-if="isOwnerOrAdmin() && isPlaylistMode()"
  17. @click="showTab('included')"
  18. >
  19. Included
  20. </button>
  21. <button
  22. class="button is-default"
  23. :class="{ selected: tab === 'excluded' }"
  24. v-if="isOwnerOrAdmin()"
  25. @click="showTab('excluded')"
  26. >
  27. Excluded
  28. </button>
  29. </div>
  30. <div
  31. class="tab"
  32. v-show="tab === 'search'"
  33. v-if="
  34. station.type === 'community' &&
  35. station.partyMode &&
  36. (isOwnerOrAdmin() || !station.locked)
  37. "
  38. >
  39. <div class="musare-songs">
  40. <label class="label"> Search for a song on Musare </label>
  41. <div class="control is-grouped input-with-button">
  42. <p class="control is-expanded">
  43. <input
  44. class="input"
  45. type="text"
  46. placeholder="Enter your song query here..."
  47. v-model="musareSearch.query"
  48. @keyup.enter="searchForMusareSongs(1)"
  49. />
  50. </p>
  51. <p class="control">
  52. <a
  53. class="button is-info"
  54. @click="searchForMusareSongs(1)"
  55. ><i class="material-icons icon-with-button"
  56. >search</i
  57. >Search</a
  58. >
  59. </p>
  60. </div>
  61. <div v-if="musareSearch.results.length > 0">
  62. <song-item
  63. v-for="song in musareSearch.results"
  64. :key="song._id"
  65. :song="song"
  66. >
  67. <template #actions>
  68. <transition
  69. name="musare-search-query-actions"
  70. mode="out-in"
  71. >
  72. <i
  73. v-if="
  74. songsInQueue.indexOf(
  75. song.youtubeId
  76. ) !== -1
  77. "
  78. class="
  79. material-icons
  80. added-to-playlist-icon
  81. "
  82. content="Song is already in queue"
  83. v-tippy
  84. >done</i
  85. >
  86. <i
  87. v-else
  88. class="material-icons add-to-queue-icon"
  89. @click="addSongToQueue(song.youtubeId)"
  90. content="Add Song to Queue"
  91. v-tippy
  92. >queue</i
  93. >
  94. </transition>
  95. </template>
  96. </song-item>
  97. <button
  98. v-if="resultsLeftCount > 0"
  99. class="button is-primary load-more-button"
  100. @click="searchForMusareSongs(musareSearch.page + 1)"
  101. >
  102. Load {{ nextPageResultsCount }} more results
  103. </button>
  104. </div>
  105. </div>
  106. <div class="youtube-search">
  107. <label class="label"> Search for a song on YouTube </label>
  108. <div class="control is-grouped input-with-button">
  109. <p class="control is-expanded">
  110. <input
  111. class="input"
  112. type="text"
  113. placeholder="Enter your YouTube query here..."
  114. v-model="youtubeSearch.songs.query"
  115. autofocus
  116. @keyup.enter="searchForSongs()"
  117. />
  118. </p>
  119. <p class="control">
  120. <a
  121. class="button is-info"
  122. @click.prevent="searchForSongs()"
  123. ><i class="material-icons icon-with-button"
  124. >search</i
  125. >Search</a
  126. >
  127. </p>
  128. </div>
  129. <div
  130. v-if="youtubeSearch.songs.results.length > 0"
  131. id="song-query-results"
  132. >
  133. <search-query-item
  134. v-for="(result, index) in youtubeSearch.songs
  135. .results"
  136. :key="result.id"
  137. :result="result"
  138. >
  139. <template #actions>
  140. <transition
  141. name="youtube-search-query-actions"
  142. mode="out-in"
  143. >
  144. <i
  145. v-if="
  146. songsInQueue.indexOf(result.id) !==
  147. -1
  148. "
  149. class="
  150. material-icons
  151. added-to-playlist-icon
  152. "
  153. content="Song is already in queue"
  154. v-tippy
  155. >done</i
  156. >
  157. <i
  158. v-else
  159. class="material-icons add-to-queue-icon"
  160. @click="
  161. addSongToQueue(result.id, index)
  162. "
  163. content="Add Song to Queue"
  164. v-tippy
  165. >queue</i
  166. >
  167. </transition>
  168. </template>
  169. </search-query-item>
  170. <a
  171. class="button is-primary load-more-button"
  172. @click.prevent="loadMoreSongs()"
  173. >
  174. Load more...
  175. </a>
  176. </div>
  177. </div>
  178. </div>
  179. <div
  180. class="tab"
  181. v-show="tab === 'included'"
  182. v-if="
  183. isOwnerOrAdmin() &&
  184. !(station.type === 'community' && station.partyMode)
  185. "
  186. >
  187. <div v-if="stationPlaylist.songs.length > 0">
  188. <div id="playlist-info-section">
  189. <h5>Song Count: {{ stationPlaylist.songs.length }}</h5>
  190. <h5>Duration: {{ totalLength(stationPlaylist) }}</h5>
  191. </div>
  192. <song-item
  193. v-for="song in stationPlaylist.songs"
  194. :key="song._id"
  195. :song="song"
  196. >
  197. </song-item>
  198. </div>
  199. <p v-else class="has-text-centered scrollable-list">
  200. No songs currently included. To include songs, include a
  201. playlist.
  202. </p>
  203. </div>
  204. <div
  205. class="tab"
  206. v-show="tab === 'excluded'"
  207. v-if="isOwnerOrAdmin()"
  208. >
  209. <div v-if="excludedSongs.length > 0">
  210. <div id="playlist-info-section" class="section">
  211. <h5>Song Count: {{ excludedSongs.length }}</h5>
  212. </div>
  213. <song-item
  214. v-for="song in excludedSongs"
  215. :key="song._id"
  216. :song="song"
  217. >
  218. </song-item>
  219. </div>
  220. <p v-else class="has-text-centered scrollable-list">
  221. No songs currently excluded. To excluded songs, exclude a
  222. playlist.
  223. </p>
  224. </div>
  225. </div>
  226. </div>
  227. </template>
  228. <script>
  229. import { mapState, mapGetters } from "vuex";
  230. import Toast from "toasters";
  231. import SearchYoutube from "@/mixins/SearchYoutube.vue";
  232. import SearchMusare from "@/mixins/SearchMusare.vue";
  233. import SongItem from "@/components/SongItem.vue";
  234. import SearchQueryItem from "../../../SearchQueryItem.vue";
  235. import utils from "../../../../../js/utils";
  236. export default {
  237. components: {
  238. SongItem,
  239. SearchQueryItem
  240. },
  241. mixins: [SearchYoutube, SearchMusare],
  242. data() {
  243. return {
  244. utils,
  245. tab: "search"
  246. };
  247. },
  248. computed: {
  249. excludedSongs() {
  250. return this.excludedPlaylists
  251. .map(playlist => playlist.songs)
  252. .flat()
  253. .filter((song, index, self) => self.indexOf(song) === index);
  254. },
  255. excludedSongIds() {
  256. return this.excludedSongs.map(excludedSong => excludedSong._id);
  257. },
  258. songsInQueue() {
  259. if (this.station.currentSong)
  260. return this.songsList
  261. .map(song => song.youtubeId)
  262. .concat(this.station.currentSong.youtubeId);
  263. return this.songsList.map(song => song.youtubeId);
  264. },
  265. ...mapState({
  266. loggedIn: state => state.user.auth.loggedIn,
  267. userId: state => state.user.auth.userId,
  268. role: state => state.user.auth.role
  269. }),
  270. ...mapState("modals/manageStation", {
  271. parentTab: state => state.tab,
  272. station: state => state.station,
  273. originalStation: state => state.originalStation,
  274. songsList: state => state.songsList,
  275. excludedPlaylists: state => state.excludedPlaylists,
  276. stationPlaylist: state => state.stationPlaylist
  277. }),
  278. ...mapGetters({
  279. socket: "websockets/getSocket"
  280. })
  281. },
  282. watch: {
  283. // eslint-disable-next-line func-names
  284. parentTab(value) {
  285. if (value === "songs") {
  286. if (this.tab === "search" && this.isPlaylistMode()) {
  287. this.showTab("included");
  288. } else if (this.tab === "included" && this.isPartyMode()) {
  289. this.showTab("search");
  290. }
  291. }
  292. }
  293. },
  294. methods: {
  295. showTab(tab) {
  296. this.tab = tab;
  297. },
  298. isOwner() {
  299. return (
  300. this.loggedIn &&
  301. this.station &&
  302. this.userId === this.station.owner
  303. );
  304. },
  305. isAdmin() {
  306. return this.loggedIn && this.role === "admin";
  307. },
  308. isOwnerOrAdmin() {
  309. return this.isOwner() || this.isAdmin();
  310. },
  311. isPartyMode() {
  312. return (
  313. this.station &&
  314. this.station.type === "community" &&
  315. this.station.partyMode
  316. );
  317. },
  318. isAllowedToParty() {
  319. return (
  320. this.station &&
  321. this.isPartyMode() &&
  322. (!this.station.locked || this.isOwnerOrAdmin()) &&
  323. this.loggedIn
  324. );
  325. },
  326. isPlaylistMode() {
  327. return this.station && !this.isPartyMode();
  328. },
  329. totalLength(playlist) {
  330. let length = 0;
  331. playlist.songs.forEach(song => {
  332. length += song.duration;
  333. });
  334. return this.utils.formatTimeLong(length);
  335. },
  336. addSongToQueue(youtubeId, index) {
  337. if (this.station.type === "community") {
  338. this.socket.dispatch(
  339. "stations.addToQueue",
  340. this.station._id,
  341. youtubeId,
  342. res => {
  343. if (res.status !== "success")
  344. new Toast(`Error: ${res.message}`);
  345. else {
  346. if (index)
  347. this.youtubeSearch.songs.results[
  348. index
  349. ].isAddedToQueue = true;
  350. new Toast(res.message);
  351. }
  352. }
  353. );
  354. } else {
  355. this.socket.dispatch("songs.request", youtubeId, res => {
  356. if (res.status !== "success")
  357. new Toast(`Error: ${res.message}`);
  358. else {
  359. this.youtubeSearch.songs.results[
  360. index
  361. ].isAddedToQueue = true;
  362. new Toast(res.message);
  363. }
  364. });
  365. }
  366. }
  367. }
  368. };
  369. </script>
  370. <style lang="scss" scoped>
  371. .night-mode {
  372. .tabs-container .tab-selection .button {
  373. background: var(--dark-grey) !important;
  374. color: var(--white) !important;
  375. }
  376. }
  377. .songs {
  378. .tabs-container {
  379. .tab-selection {
  380. display: flex;
  381. overflow-x: auto;
  382. .button {
  383. border-radius: 0;
  384. border: 0;
  385. text-transform: uppercase;
  386. font-size: 14px;
  387. color: var(--dark-grey-3);
  388. background-color: var(--light-grey-2);
  389. flex-grow: 1;
  390. height: 32px;
  391. &:not(:first-of-type) {
  392. margin-left: 5px;
  393. }
  394. }
  395. .selected {
  396. background-color: var(--primary-color) !important;
  397. color: var(--white) !important;
  398. font-weight: 600;
  399. }
  400. }
  401. .tab {
  402. padding: 15px 0;
  403. border-radius: 0;
  404. .playlist-item:not(:last-of-type),
  405. .item.item-draggable:not(:last-of-type) {
  406. margin-bottom: 10px;
  407. }
  408. .load-more-button {
  409. width: 100%;
  410. margin-top: 10px;
  411. }
  412. }
  413. }
  414. .musare-songs,
  415. .universal-item:not(:last-of-type) {
  416. margin-bottom: 10px;
  417. }
  418. .load-more-button {
  419. width: 100%;
  420. margin-top: 10px;
  421. }
  422. #playlist-info-section {
  423. border: 1px solid var(--light-grey-3);
  424. border-radius: 3px;
  425. padding: 15px !important;
  426. margin-bottom: 16px;
  427. h3 {
  428. font-weight: 600;
  429. font-size: 30px;
  430. }
  431. h5 {
  432. font-size: 18px;
  433. }
  434. h3,
  435. h5 {
  436. margin: 0;
  437. }
  438. }
  439. }
  440. </style>