Home.vue 26 KB

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