Home.vue 29 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333
  1. <template>
  2. <div>
  3. <page-metadata title="Home" />
  4. <div class="app home-page">
  5. <main-header
  6. :hide-logo="true"
  7. :transparent="true"
  8. :hide-logged-out="true"
  9. />
  10. <div class="header" :class="{ loggedIn }">
  11. <img class="background" src="/assets/homebg.jpeg" />
  12. <div class="overlay"></div>
  13. <div class="content-container">
  14. <div class="content">
  15. <img
  16. v-if="siteSettings.sitename === 'Musare'"
  17. :src="siteSettings.logo_white"
  18. :alt="siteSettings.sitename || `Musare`"
  19. class="logo"
  20. />
  21. <span v-else class="logo">{{
  22. siteSettings.sitename
  23. }}</span>
  24. <div v-if="!loggedIn" class="buttons">
  25. <button
  26. class="button login"
  27. @click="openModal('login')"
  28. >
  29. Login
  30. </button>
  31. <button
  32. v-if="!siteSettings.registrationDisabled"
  33. class="button register"
  34. @click="openModal('register')"
  35. >
  36. Register
  37. </button>
  38. </div>
  39. </div>
  40. </div>
  41. </div>
  42. <div class="group" v-show="favoriteStations.length > 0">
  43. <div class="group-title">
  44. <div>
  45. <h2>My Favorites</h2>
  46. </div>
  47. </div>
  48. <draggable
  49. item-key="_id"
  50. v-model="favoriteStations"
  51. v-bind="dragOptions"
  52. @change="changeFavoriteOrder"
  53. >
  54. <template #item="{ element }">
  55. <router-link
  56. :to="{
  57. name: 'station',
  58. params: { id: element.name }
  59. }"
  60. :class="{
  61. 'station-card': true,
  62. 'item-draggable': true,
  63. isPrivate: element.privacy === 'private',
  64. isMine: isOwner(element)
  65. }"
  66. :style="
  67. '--primary-color: var(--' + element.theme + ')'
  68. "
  69. >
  70. <div class="card-content">
  71. <song-thumbnail :song="element.currentSong">
  72. <template #icon>
  73. <div class="icon-container">
  74. <div
  75. v-if="isOwnerOrAdmin(element)"
  76. class="material-icons manage-station"
  77. @click.prevent="
  78. manageStation(element._id)
  79. "
  80. content="Manage Station"
  81. v-tippy
  82. >
  83. settings
  84. </div>
  85. <div
  86. v-else
  87. class="material-icons manage-station"
  88. @click.prevent="
  89. manageStation(element._id)
  90. "
  91. content="View Queue"
  92. v-tippy
  93. >
  94. queue_music
  95. </div>
  96. </div>
  97. </template>
  98. </song-thumbnail>
  99. <div class="media">
  100. <div class="displayName">
  101. <i
  102. v-if="
  103. loggedIn && !element.isFavorited
  104. "
  105. @click.prevent="
  106. favoriteStation(element._id)
  107. "
  108. class="favorite material-icons"
  109. content="Favorite Station"
  110. v-tippy
  111. >star_border</i
  112. >
  113. <i
  114. v-if="
  115. loggedIn && element.isFavorited
  116. "
  117. @click.prevent="
  118. unfavoriteStation(element._id)
  119. "
  120. class="favorite material-icons"
  121. content="Unfavorite Station"
  122. v-tippy
  123. >star</i
  124. >
  125. <h5>{{ element.displayName }}</h5>
  126. <i
  127. v-if="element.type === 'official'"
  128. class="material-icons verified-station"
  129. content="Verified Station"
  130. v-tippy="{
  131. theme: 'info'
  132. }"
  133. >
  134. check_circle
  135. </i>
  136. </div>
  137. <div class="content">
  138. {{ element.description }}
  139. </div>
  140. <div class="under-content">
  141. <p class="hostedBy">
  142. Hosted by
  143. <span class="host">
  144. <span
  145. v-if="
  146. element.type ===
  147. 'official'
  148. "
  149. :title="
  150. siteSettings.sitename
  151. "
  152. >{{
  153. siteSettings.sitename
  154. }}</span
  155. >
  156. <user-id-to-username
  157. v-else
  158. :user-id="element.owner"
  159. :link="true"
  160. />
  161. </span>
  162. </p>
  163. <div class="icons">
  164. <i
  165. v-if="
  166. element.type ===
  167. 'community' &&
  168. isOwner(element)
  169. "
  170. class="homeIcon material-icons"
  171. content="This is your station."
  172. v-tippy="{ theme: 'info' }"
  173. >home</i
  174. >
  175. <i
  176. v-if="
  177. element.privacy ===
  178. 'private'
  179. "
  180. class="privateIcon material-icons"
  181. content="This station is not visible to other users."
  182. v-tippy="{ theme: 'info' }"
  183. >lock</i
  184. >
  185. <i
  186. v-if="
  187. element.privacy ===
  188. 'unlisted'
  189. "
  190. class="unlistedIcon material-icons"
  191. content="Unlisted Station"
  192. v-tippy="{ theme: 'info' }"
  193. >link</i
  194. >
  195. </div>
  196. </div>
  197. </div>
  198. </div>
  199. <div class="bottomBar">
  200. <i
  201. v-if="
  202. element.paused &&
  203. element.currentSong.title
  204. "
  205. class="material-icons"
  206. content="Station Paused"
  207. v-tippy="{ theme: 'info' }"
  208. >pause</i
  209. >
  210. <i
  211. v-else-if="element.currentSong.title"
  212. class="material-icons"
  213. >music_note</i
  214. >
  215. <i v-else class="material-icons">music_off</i>
  216. <span
  217. v-if="element.currentSong.title"
  218. class="songTitle"
  219. :title="
  220. element.currentSong.artists.length > 0
  221. ? 'Now Playing: ' +
  222. element.currentSong.title +
  223. ' by ' +
  224. element.currentSong.artists.join(
  225. ', '
  226. )
  227. : 'Now Playing: ' +
  228. element.currentSong.title
  229. "
  230. >{{ element.currentSong.title }}
  231. {{
  232. element.currentSong.artists.length > 0
  233. ? " by " +
  234. element.currentSong.artists.join(
  235. ", "
  236. )
  237. : ""
  238. }}</span
  239. >
  240. <span v-else class="songTitle"
  241. >No Songs Playing</span
  242. >
  243. <i
  244. v-if="canRequest(element)"
  245. class="material-icons"
  246. content="You can request songs in this station"
  247. v-tippy="{ theme: 'info' }"
  248. >
  249. queue
  250. </i>
  251. </div>
  252. </router-link>
  253. </template>
  254. </draggable>
  255. </div>
  256. <div class="group bottom">
  257. <div class="group-title">
  258. <div>
  259. <h1>Stations</h1>
  260. </div>
  261. </div>
  262. <a
  263. v-if="loggedIn"
  264. @click="openModal('createStation')"
  265. class="station-card createStation"
  266. >
  267. <div class="card-content">
  268. <div class="thumbnail">
  269. <figure class="image">
  270. <i class="material-icons">radio</i>
  271. </figure>
  272. </div>
  273. <div class="media">
  274. <div class="displayName">
  275. <h5>Create Station</h5>
  276. </div>
  277. <div class="content">
  278. Click here to create your own station!
  279. </div>
  280. </div>
  281. </div>
  282. <div class="bottomBar"></div>
  283. </a>
  284. <a
  285. v-else
  286. @click="openModal('login')"
  287. class="station-card createStation"
  288. >
  289. <div class="card-content">
  290. <div class="thumbnail">
  291. <figure class="image">
  292. <i class="material-icons">radio</i>
  293. </figure>
  294. </div>
  295. <div class="media">
  296. <div class="displayName">
  297. <h5>Create Station</h5>
  298. </div>
  299. <div class="content">
  300. Login to create a station!
  301. </div>
  302. </div>
  303. </div>
  304. <div class="bottomBar"></div>
  305. </a>
  306. <router-link
  307. v-for="station in filteredStations"
  308. :key="station._id"
  309. :to="{
  310. name: 'station',
  311. params: { id: station.name }
  312. }"
  313. class="station-card"
  314. :class="{
  315. isPrivate: station.privacy === 'private',
  316. isMine: isOwner(station)
  317. }"
  318. :style="'--primary-color: var(--' + station.theme + ')'"
  319. >
  320. <div class="card-content">
  321. <song-thumbnail :song="station.currentSong">
  322. <template #icon>
  323. <div class="icon-container">
  324. <div
  325. v-if="isOwnerOrAdmin(station)"
  326. class="material-icons manage-station"
  327. @click.prevent="
  328. manageStation(station._id)
  329. "
  330. content="Manage Station"
  331. v-tippy
  332. >
  333. settings
  334. </div>
  335. <div
  336. v-else
  337. class="material-icons manage-station"
  338. @click.prevent="
  339. manageStation(station._id)
  340. "
  341. content="View Queue"
  342. v-tippy
  343. >
  344. queue_music
  345. </div>
  346. </div>
  347. </template>
  348. </song-thumbnail>
  349. <div class="media">
  350. <div class="displayName">
  351. <i
  352. v-if="loggedIn && !station.isFavorited"
  353. @click.prevent="
  354. favoriteStation(station._id)
  355. "
  356. class="favorite material-icons"
  357. content="Favorite Station"
  358. v-tippy
  359. >star_border</i
  360. >
  361. <i
  362. v-if="loggedIn && station.isFavorited"
  363. @click.prevent="
  364. unfavoriteStation(station._id)
  365. "
  366. class="favorite material-icons"
  367. content="Unfavorite Station"
  368. v-tippy
  369. >star</i
  370. >
  371. <h5>{{ station.displayName }}</h5>
  372. <i
  373. v-if="station.type === 'official'"
  374. class="material-icons verified-station"
  375. content="Verified Station"
  376. v-tippy="{ theme: 'info' }"
  377. >
  378. check_circle
  379. </i>
  380. </div>
  381. <div class="content">
  382. {{ station.description }}
  383. </div>
  384. <div class="under-content">
  385. <p class="hostedBy">
  386. Hosted by
  387. <span class="host">
  388. <span
  389. v-if="station.type === 'official'"
  390. :title="siteSettings.sitename"
  391. >{{ siteSettings.sitename }}</span
  392. >
  393. <user-id-to-username
  394. v-else
  395. :user-id="station.owner"
  396. :link="true"
  397. />
  398. </span>
  399. </p>
  400. <div class="icons">
  401. <i
  402. v-if="
  403. station.type === 'community' &&
  404. isOwner(station)
  405. "
  406. class="homeIcon material-icons"
  407. content="This is your station."
  408. v-tippy="{ theme: 'info' }"
  409. >home</i
  410. >
  411. <i
  412. v-if="station.privacy === 'private'"
  413. class="privateIcon material-icons"
  414. content="This station is not visible to other users."
  415. v-tippy="{ theme: 'info' }"
  416. >lock</i
  417. >
  418. <i
  419. v-if="station.privacy === 'unlisted'"
  420. class="unlistedIcon material-icons"
  421. content="Unlisted Station"
  422. v-tippy="{ theme: 'info' }"
  423. >link</i
  424. >
  425. </div>
  426. </div>
  427. </div>
  428. </div>
  429. <div class="bottomBar">
  430. <i
  431. v-if="station.paused && station.currentSong.title"
  432. class="material-icons"
  433. content="Station Paused"
  434. v-tippy="{ theme: 'info' }"
  435. >pause</i
  436. >
  437. <i
  438. v-else-if="station.currentSong.title"
  439. class="material-icons"
  440. >music_note</i
  441. >
  442. <i v-else class="material-icons">music_off</i>
  443. <span
  444. v-if="station.currentSong.title"
  445. class="songTitle"
  446. :title="
  447. station.currentSong.artists.length > 0
  448. ? 'Now Playing: ' +
  449. station.currentSong.title +
  450. ' by ' +
  451. station.currentSong.artists.join(', ')
  452. : 'Now Playing: ' +
  453. station.currentSong.title
  454. "
  455. >{{ station.currentSong.title }}
  456. {{
  457. station.currentSong.artists.length > 0
  458. ? " by " +
  459. station.currentSong.artists.join(", ")
  460. : ""
  461. }}</span
  462. >
  463. <span v-else class="songTitle">No Songs Playing</span>
  464. <i
  465. v-if="canRequest(station)"
  466. class="material-icons"
  467. content="You can request songs in this station"
  468. v-tippy="{ theme: 'info' }"
  469. >
  470. queue
  471. </i>
  472. <i
  473. v-else-if="canRequest(station, false)"
  474. class="material-icons"
  475. content="Login to request songs in this station"
  476. v-tippy="{ theme: 'info' }"
  477. >
  478. queue
  479. </i>
  480. </div>
  481. </router-link>
  482. <h4 v-if="stations.length === 0">
  483. There are no stations to display
  484. </h4>
  485. </div>
  486. <main-footer />
  487. </div>
  488. <manage-station
  489. v-if="modals.manageStation"
  490. :station-id="editingStationId"
  491. sector="home"
  492. />
  493. <create-playlist v-if="modals.createPlaylist" />
  494. <edit-song v-if="modals.editSong" song-type="songs" sector="home" />
  495. <report v-if="modals.report" />
  496. <modal-manager />
  497. </div>
  498. </template>
  499. <script>
  500. import { mapState, mapGetters, mapActions } from "vuex";
  501. import { defineAsyncComponent } from "vue";
  502. import draggable from "vuedraggable";
  503. import Toast from "toasters";
  504. import SongThumbnail from "@/components/SongThumbnail.vue";
  505. import ModalManager from "@/components/ModalManager.vue";
  506. import ws from "@/ws";
  507. export default {
  508. components: {
  509. ModalManager,
  510. SongThumbnail,
  511. ManageStation: defineAsyncComponent(() =>
  512. import("@/components/modals/ManageStation/index.vue")
  513. ),
  514. CreatePlaylist: defineAsyncComponent(() =>
  515. import("@/components/modals/CreatePlaylist.vue")
  516. ),
  517. Report: defineAsyncComponent(() =>
  518. import("@/components/modals/Report.vue")
  519. ),
  520. EditSong: defineAsyncComponent(() =>
  521. import("@/components/modals/EditSong")
  522. ),
  523. draggable
  524. },
  525. data() {
  526. return {
  527. recaptcha: { key: "" },
  528. stations: [],
  529. favoriteStations: [],
  530. searchQuery: "",
  531. siteSettings: {
  532. logo_white: "",
  533. sitename: "Musare",
  534. registrationDisabled: false
  535. },
  536. orderOfFavoriteStations: [],
  537. handledLoginRegisterRedirect: false,
  538. editingStationId: null
  539. };
  540. },
  541. computed: {
  542. ...mapState({
  543. loggedIn: state => state.user.auth.loggedIn,
  544. userId: state => state.user.auth.userId,
  545. role: state => state.user.auth.role,
  546. modals: state => state.modalVisibility.modals
  547. }),
  548. ...mapGetters({
  549. socket: "websockets/getSocket"
  550. }),
  551. filteredStations() {
  552. const privacyOrder = ["public", "unlisted", "private"];
  553. return this.stations
  554. .filter(
  555. station =>
  556. JSON.stringify(Object.values(station)).indexOf(
  557. this.searchQuery
  558. ) !== -1
  559. )
  560. .sort(
  561. (a, b) =>
  562. this.isOwner(b) - this.isOwner(a) ||
  563. this.isPlaying(b) - this.isPlaying(a) ||
  564. a.paused - b.paused ||
  565. privacyOrder.indexOf(a.privacy) -
  566. privacyOrder.indexOf(b.privacy) ||
  567. b.userCount - a.userCount
  568. );
  569. },
  570. dragOptions() {
  571. return {
  572. animation: 200,
  573. group: "favoriteStations",
  574. disabled: false,
  575. ghostClass: "draggable-list-ghost",
  576. filter: ".ignore-elements",
  577. fallbackTolerance: 50
  578. };
  579. }
  580. },
  581. watch: {
  582. orderOfFavoriteStations: {
  583. deep: true,
  584. handler() {
  585. this.calculateFavoriteStations();
  586. }
  587. }
  588. },
  589. async mounted() {
  590. this.siteSettings = await lofig.get("siteSettings");
  591. if (
  592. !this.loggedIn &&
  593. this.$route.redirectedFrom &&
  594. (this.$route.redirectedFrom.name === "login" ||
  595. this.$route.redirectedFrom.name === "register") &&
  596. !this.handledLoginRegisterRedirect
  597. ) {
  598. // Makes sure the login/register modal isn't opened whenever the home page gets remounted due to a code change
  599. this.handledLoginRegisterRedirect = true;
  600. this.openModal(this.$route.redirectedFrom.name);
  601. }
  602. ws.onConnect(this.init);
  603. this.socket.on("event:station.created", res => {
  604. const { station } = res.data;
  605. if (this.stations.find(_station => _station._id === station._id)) {
  606. this.stations.forEach(s => {
  607. const _station = s;
  608. if (_station._id === station._id) {
  609. _station.privacy = station.privacy;
  610. }
  611. });
  612. } else {
  613. if (!station.currentSong)
  614. station.currentSong = {
  615. thumbnail: "/assets/notes-transparent.png"
  616. };
  617. if (station.currentSong && !station.currentSong.thumbnail)
  618. station.currentSong.ytThumbnail = `https://img.youtube.com/vi/${station.currentSong.youtubeId}/mqdefault.jpg`;
  619. this.stations.push(station);
  620. }
  621. });
  622. this.socket.on("event:station.deleted", res => {
  623. const { stationId } = res.data;
  624. const station = this.stations.find(
  625. station => station._id === stationId
  626. );
  627. if (station) {
  628. const stationIndex = this.stations.indexOf(station);
  629. this.stations.splice(stationIndex, 1);
  630. if (station.isFavorited)
  631. this.orderOfFavoriteStations =
  632. this.orderOfFavoriteStations.filter(
  633. favoritedId => favoritedId !== stationId
  634. );
  635. }
  636. });
  637. this.socket.on("event:station.userCount.updated", res => {
  638. const station = this.stations.find(
  639. station => station._id === res.data.stationId
  640. );
  641. if (station) station.userCount = res.data.userCount;
  642. });
  643. this.socket.on("event:station.updated", res => {
  644. const stationIndex = this.stations
  645. .map(station => station._id)
  646. .indexOf(res.data.station._id);
  647. if (stationIndex !== -1) {
  648. this.stations[stationIndex] = {
  649. ...this.stations[stationIndex],
  650. ...res.data.station
  651. };
  652. this.calculateFavoriteStations();
  653. }
  654. });
  655. this.socket.on("event:station.nextSong", res => {
  656. const station = this.stations.find(
  657. station => station._id === res.data.stationId
  658. );
  659. if (station) {
  660. let newSong = res.data.currentSong;
  661. if (!newSong)
  662. newSong = {
  663. thumbnail: "/assets/notes-transparent.png"
  664. };
  665. station.currentSong = newSong;
  666. }
  667. });
  668. this.socket.on("event:station.pause", res => {
  669. const station = this.stations.find(
  670. station => station._id === res.data.stationId
  671. );
  672. if (station) station.paused = true;
  673. });
  674. this.socket.on("event:station.resume", res => {
  675. const station = this.stations.find(
  676. station => station._id === res.data.stationId
  677. );
  678. if (station) station.paused = false;
  679. });
  680. this.socket.on("event:user.station.favorited", res => {
  681. const { stationId } = res.data;
  682. const station = this.stations.find(
  683. station => station._id === stationId
  684. );
  685. if (station) {
  686. station.isFavorited = true;
  687. this.orderOfFavoriteStations.push(stationId);
  688. }
  689. });
  690. this.socket.on("event:user.station.unfavorited", res => {
  691. const { stationId } = res.data;
  692. const station = this.stations.find(
  693. station => station._id === stationId
  694. );
  695. if (station) {
  696. station.isFavorited = false;
  697. this.orderOfFavoriteStations =
  698. this.orderOfFavoriteStations.filter(
  699. favoritedId => favoritedId !== stationId
  700. );
  701. }
  702. });
  703. this.socket.on("event:user.orderOfFavoriteStations.updated", res => {
  704. this.orderOfFavoriteStations = res.data.order;
  705. });
  706. },
  707. beforeUnmount() {
  708. this.socket.dispatch("apis.leaveRoom", "home", () => {});
  709. },
  710. methods: {
  711. init() {
  712. this.socket.dispatch("stations.index", res => {
  713. this.stations = [];
  714. if (res.status === "success") {
  715. res.data.stations.forEach(station => {
  716. const modifiableStation = station;
  717. if (!modifiableStation.currentSong)
  718. modifiableStation.currentSong = {
  719. thumbnail: "/assets/notes-transparent.png"
  720. };
  721. if (
  722. modifiableStation.currentSong &&
  723. !modifiableStation.currentSong.thumbnail
  724. )
  725. modifiableStation.currentSong.ytThumbnail = `https://img.youtube.com/vi/${station.currentSong.youtubeId}/mqdefault.jpg`;
  726. this.stations.push(modifiableStation);
  727. });
  728. this.orderOfFavoriteStations = res.data.favorited;
  729. }
  730. });
  731. this.socket.dispatch("apis.joinRoom", "home");
  732. },
  733. isOwner(station) {
  734. return this.loggedIn && station.owner === this.userId;
  735. },
  736. isAdmin() {
  737. return this.loggedIn && this.role === "admin";
  738. },
  739. isOwnerOrAdmin(station) {
  740. return this.isOwner(station) || this.isAdmin();
  741. },
  742. canRequest(station, requireLogin = true) {
  743. return (
  744. station &&
  745. (!requireLogin || this.loggedIn) &&
  746. station.requests &&
  747. station.requests.enabled &&
  748. (station.requests.access === "user" ||
  749. (station.requests.access === "owner" &&
  750. this.isOwnerOrAdmin(station)))
  751. );
  752. },
  753. isPlaying(station) {
  754. return typeof station.currentSong.title !== "undefined";
  755. },
  756. favoriteStation(stationId) {
  757. this.socket.dispatch("stations.favoriteStation", stationId, res => {
  758. if (res.status === "success") {
  759. new Toast("Successfully favorited station.");
  760. } else new Toast(res.message);
  761. });
  762. },
  763. unfavoriteStation(stationId) {
  764. this.socket.dispatch(
  765. "stations.unfavoriteStation",
  766. stationId,
  767. res => {
  768. if (res.status === "success") {
  769. new Toast("Successfully unfavorited station.");
  770. } else new Toast(res.message);
  771. }
  772. );
  773. },
  774. calculateFavoriteStations() {
  775. this.favoriteStations = this.filteredStations
  776. .filter(station => station.isFavorited === true)
  777. .sort(
  778. (a, b) =>
  779. this.orderOfFavoriteStations.indexOf(a._id) -
  780. this.orderOfFavoriteStations.indexOf(b._id)
  781. );
  782. },
  783. changeFavoriteOrder() {
  784. const recalculatedOrder = [];
  785. this.favoriteStations.forEach(station =>
  786. recalculatedOrder.push(station._id)
  787. );
  788. this.socket.dispatch(
  789. "users.updateOrderOfFavoriteStations",
  790. recalculatedOrder,
  791. res => new Toast(res.message)
  792. );
  793. },
  794. manageStation(stationId) {
  795. this.editingStationId = stationId;
  796. this.openModal("manageStation");
  797. },
  798. ...mapActions("modalVisibility", ["openModal"]),
  799. ...mapActions("station", ["updateIfStationIsFavorited"])
  800. }
  801. };
  802. </script>
  803. <style lang="less">
  804. .christmas-mode .home-page {
  805. .header .overlay {
  806. background: linear-gradient(
  807. 180deg,
  808. rgba(231, 77, 60, 0.8) 0%,
  809. rgba(231, 77, 60, 0.95) 31.25%,
  810. rgba(231, 77, 60, 0.9) 54.17%,
  811. rgba(231, 77, 60, 0.8) 100%
  812. );
  813. }
  814. .christmas-lights {
  815. top: 300px !important;
  816. &.loggedIn {
  817. top: 200px !important;
  818. }
  819. }
  820. .header {
  821. &,
  822. .background,
  823. .overlay {
  824. border-radius: unset;
  825. }
  826. }
  827. }
  828. </style>
  829. <style lang="less" scoped>
  830. * {
  831. box-sizing: border-box;
  832. }
  833. html {
  834. width: 100%;
  835. height: 100%;
  836. color: rgba(0, 0, 0, 0.87);
  837. body {
  838. width: 100%;
  839. height: 100%;
  840. margin: 0;
  841. padding: 0;
  842. }
  843. @media only screen and (min-width: 1200px) {
  844. font-size: 15px;
  845. }
  846. @media only screen and (min-width: 992px) {
  847. font-size: 14.5px;
  848. }
  849. @media only screen and (min-width: 0) {
  850. font-size: 14px;
  851. }
  852. }
  853. .night-mode {
  854. .header .overlay {
  855. background: linear-gradient(
  856. 180deg,
  857. rgba(34, 34, 34, 0.8) 0%,
  858. rgba(34, 34, 34, 0.95) 31.25%,
  859. rgba(34, 34, 34, 0.9) 54.17%,
  860. rgba(34, 34, 34, 0.8) 100%
  861. );
  862. }
  863. .station-card {
  864. background-color: var(--dark-grey-3);
  865. .thumbnail {
  866. background-color: var(--dark-grey-2);
  867. i {
  868. user-select: none;
  869. -webkit-user-select: none;
  870. }
  871. }
  872. .card-content .media {
  873. .icons i,
  874. .under-content .hostedBy {
  875. color: var(--light-grey-2) !important;
  876. }
  877. }
  878. }
  879. .group-title i {
  880. color: var(--light-grey-2);
  881. }
  882. }
  883. .header {
  884. display: flex;
  885. height: 300px;
  886. margin-top: -64px;
  887. border-radius: 0% 0% 33% 33% / 0% 0% 7% 7%;
  888. img.background {
  889. height: 300px;
  890. width: 100%;
  891. object-fit: cover;
  892. object-position: center;
  893. filter: blur(1px);
  894. border-radius: 0% 0% 33% 33% / 0% 0% 7% 7%;
  895. overflow: hidden;
  896. user-select: none;
  897. }
  898. .overlay {
  899. background: linear-gradient(
  900. 180deg,
  901. rgba(3, 169, 244, 0.8) 0%,
  902. rgba(3, 169, 244, 0.95) 31.25%,
  903. rgba(3, 169, 244, 0.9) 54.17%,
  904. rgba(3, 169, 244, 0.8) 100%
  905. );
  906. position: absolute;
  907. height: 300px;
  908. width: 100%;
  909. border-radius: 0% 0% 33% 33% / 0% 0% 7% 7%;
  910. overflow: hidden;
  911. }
  912. .content-container {
  913. position: absolute;
  914. left: 0;
  915. right: 0;
  916. margin-left: auto;
  917. margin-right: auto;
  918. text-align: center;
  919. height: 300px;
  920. .content {
  921. position: absolute;
  922. top: 50%;
  923. left: 0;
  924. right: 0;
  925. transform: translateY(-50%);
  926. background-color: transparent !important;
  927. .logo {
  928. max-height: 90px;
  929. font-size: 50px;
  930. color: var(--white);
  931. font-family: Pacifico, cursive;
  932. user-select: none;
  933. white-space: nowrap;
  934. }
  935. .buttons {
  936. display: flex;
  937. justify-content: center;
  938. margin-top: 20px;
  939. flex-wrap: wrap;
  940. .login,
  941. .register {
  942. margin: 5px 10px;
  943. padding: 10px 15px;
  944. border-radius: @border-radius;
  945. font-size: 18px;
  946. width: 100%;
  947. max-width: 250px;
  948. font-weight: 600;
  949. border: 0;
  950. height: inherit;
  951. }
  952. .login {
  953. background: var(--white);
  954. color: var(--primary-color);
  955. }
  956. .register {
  957. background: var(--purple);
  958. color: var(--white);
  959. }
  960. }
  961. }
  962. }
  963. &.loggedIn {
  964. height: 200px;
  965. .overlay,
  966. .content-container,
  967. img.background {
  968. height: 200px;
  969. }
  970. }
  971. }
  972. .app {
  973. display: flex;
  974. flex-direction: column;
  975. }
  976. .station-card {
  977. display: inline-flex;
  978. position: relative;
  979. background-color: var(--white);
  980. color: var(--dark-grey);
  981. flex-direction: row;
  982. overflow: hidden;
  983. margin: 10px;
  984. cursor: pointer;
  985. filter: none;
  986. height: 150px;
  987. width: calc(100% - 30px);
  988. max-width: 400px;
  989. flex-wrap: wrap;
  990. border-radius: @border-radius;
  991. box-shadow: @box-shadow;
  992. .card-content {
  993. display: flex;
  994. flex-direction: row;
  995. flex-grow: 1;
  996. .thumbnail {
  997. display: flex;
  998. position: relative;
  999. min-width: 120px;
  1000. width: 120px;
  1001. height: 120px;
  1002. margin: 0;
  1003. .image {
  1004. display: flex;
  1005. position: relative;
  1006. padding-top: 100%;
  1007. }
  1008. .icon-container {
  1009. display: flex;
  1010. position: absolute;
  1011. z-index: 2;
  1012. top: 0;
  1013. bottom: 0;
  1014. left: 0;
  1015. right: 0;
  1016. .material-icons.manage-station {
  1017. display: inline-flex;
  1018. opacity: 0;
  1019. background: var(--primary-color);
  1020. color: var(--white);
  1021. margin: auto;
  1022. font-size: 40px;
  1023. border-radius: 100%;
  1024. padding: 10px;
  1025. transition: all 0.2s ease-in-out;
  1026. }
  1027. &:hover,
  1028. &:focus {
  1029. .material-icons.manage-station {
  1030. opacity: 1;
  1031. &:hover,
  1032. &:focus {
  1033. filter: brightness(90%);
  1034. }
  1035. }
  1036. }
  1037. }
  1038. }
  1039. .media {
  1040. display: flex;
  1041. position: relative;
  1042. padding: 10px 10px 10px 15px;
  1043. flex-direction: column;
  1044. flex-grow: 1;
  1045. -webkit-line-clamp: 2;
  1046. .displayName {
  1047. display: flex;
  1048. align-items: center;
  1049. width: 100%;
  1050. overflow: hidden;
  1051. text-overflow: ellipsis;
  1052. display: flex;
  1053. line-height: 30px;
  1054. max-height: 30px;
  1055. .favorite {
  1056. position: absolute;
  1057. color: var(--yellow);
  1058. right: 10px;
  1059. top: 10px;
  1060. font-size: 28px;
  1061. }
  1062. h5 {
  1063. font-size: 20px;
  1064. font-weight: 400;
  1065. margin: 0;
  1066. display: inline;
  1067. margin-right: 6px;
  1068. line-height: 30px;
  1069. text-overflow: ellipsis;
  1070. overflow: hidden;
  1071. white-space: nowrap;
  1072. max-width: 200px;
  1073. }
  1074. i {
  1075. font-size: 22px;
  1076. }
  1077. .verified-station {
  1078. color: var(--primary-color);
  1079. }
  1080. }
  1081. .content {
  1082. word-wrap: break-word;
  1083. overflow: hidden;
  1084. text-overflow: ellipsis;
  1085. display: -webkit-box;
  1086. -webkit-box-orient: vertical;
  1087. -webkit-line-clamp: 3;
  1088. line-height: 20px;
  1089. flex-grow: 1;
  1090. text-align: left;
  1091. word-wrap: break-word;
  1092. margin-bottom: 0;
  1093. }
  1094. .under-content {
  1095. height: 20px;
  1096. position: relative;
  1097. line-height: 1;
  1098. font-size: 24px;
  1099. display: flex;
  1100. align-items: center;
  1101. text-align: left;
  1102. margin-top: 10px;
  1103. p {
  1104. font-size: 15px;
  1105. line-height: 15px;
  1106. display: inline;
  1107. }
  1108. i {
  1109. font-size: 20px;
  1110. }
  1111. * {
  1112. z-index: 10;
  1113. position: relative;
  1114. }
  1115. .icons {
  1116. position: absolute;
  1117. right: 0;
  1118. .material-icons {
  1119. font-size: 22px;
  1120. }
  1121. .material-icons:first-child {
  1122. margin-left: 5px;
  1123. }
  1124. .unlistedIcon {
  1125. color: var(--orange);
  1126. }
  1127. .privateIcon {
  1128. color: var(--dark-pink);
  1129. }
  1130. .homeIcon {
  1131. color: var(--light-purple);
  1132. }
  1133. }
  1134. .hostedBy {
  1135. font-weight: 400;
  1136. font-size: 12px;
  1137. color: var(--black);
  1138. .host,
  1139. .host a {
  1140. font-weight: 400;
  1141. color: var(--primary-color);
  1142. &:hover,
  1143. &:focus {
  1144. filter: brightness(90%);
  1145. }
  1146. }
  1147. }
  1148. }
  1149. }
  1150. }
  1151. .bottomBar {
  1152. position: relative;
  1153. display: flex;
  1154. align-items: center;
  1155. background: var(--primary-color);
  1156. width: 100%;
  1157. height: 30px;
  1158. line-height: 30px;
  1159. color: var(--white);
  1160. font-weight: 400;
  1161. font-size: 12px;
  1162. padding: 0 5px;
  1163. flex-basis: 100%;
  1164. i.material-icons {
  1165. vertical-align: middle;
  1166. margin-left: 5px;
  1167. font-size: 22px;
  1168. }
  1169. .songTitle {
  1170. text-align: left;
  1171. vertical-align: middle;
  1172. margin-left: 5px;
  1173. line-height: 30px;
  1174. flex: 2 1 0;
  1175. overflow: hidden;
  1176. text-overflow: ellipsis;
  1177. white-space: nowrap;
  1178. }
  1179. }
  1180. &.createStation {
  1181. .card-content {
  1182. .thumbnail {
  1183. .image {
  1184. width: 120px;
  1185. .material-icons {
  1186. position: absolute;
  1187. top: 25px;
  1188. bottom: 25px;
  1189. left: 0;
  1190. right: 0;
  1191. text-align: center;
  1192. font-size: 70px;
  1193. color: var(--primary-color);
  1194. }
  1195. }
  1196. }
  1197. .media {
  1198. margin: auto 0;
  1199. .displayName h5 {
  1200. font-weight: 600;
  1201. }
  1202. .content {
  1203. flex-grow: unset;
  1204. margin-bottom: auto;
  1205. }
  1206. }
  1207. }
  1208. }
  1209. &:hover {
  1210. box-shadow: @box-shadow-hover;
  1211. transition: all ease-in-out 0.2s;
  1212. }
  1213. }
  1214. .group {
  1215. flex: 1 0 auto;
  1216. text-align: center;
  1217. width: 100%;
  1218. margin: 10px 0;
  1219. min-height: 64px;
  1220. .group-title {
  1221. display: flex;
  1222. align-items: center;
  1223. justify-content: center;
  1224. margin: 25px 0;
  1225. h1 {
  1226. display: inline-block;
  1227. font-size: 45px;
  1228. margin: 0;
  1229. }
  1230. h2 {
  1231. font-size: 35px;
  1232. margin: 0;
  1233. }
  1234. a {
  1235. display: flex;
  1236. margin-left: 8px;
  1237. }
  1238. }
  1239. &.bottom {
  1240. margin-bottom: 40px;
  1241. }
  1242. }
  1243. </style>