Home.vue 25 KB

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