Home.vue 26 KB

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