Home.vue 24 KB

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