Home.vue 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486
  1. <template>
  2. <div>
  3. <metadata title="Home" />
  4. <div class="app">
  5. <main-header />
  6. <div class="content-wrapper">
  7. <div class="group">
  8. <div class="group-title">
  9. Stations&nbsp;
  10. <a
  11. v-if="loggedIn"
  12. href="#"
  13. @click="
  14. openModal({
  15. sector: 'home',
  16. modal: 'createCommunityStation'
  17. })
  18. "
  19. >
  20. <i class="material-icons community-button"
  21. >add_circle_outline</i
  22. >
  23. </a>
  24. </div>
  25. <router-link
  26. v-for="(station, index) in filteredStations"
  27. :key="index"
  28. :to="{
  29. name: 'station',
  30. params: { id: station.name }
  31. }"
  32. class="card station-card"
  33. :class="{
  34. isPrivate: station.privacy === 'private',
  35. isMine: isOwner(station)
  36. }"
  37. >
  38. <div class="card-image">
  39. <figure class="image is-square">
  40. <div
  41. v-if="station.currentSong.ytThumbnail"
  42. class="ytThumbnailBg"
  43. v-bind:style="{
  44. 'background-image':
  45. 'url(' +
  46. station.currentSong.ytThumbnail +
  47. ')'
  48. }"
  49. ></div>
  50. <img
  51. v-if="station.currentSong.ytThumbnail"
  52. :src="station.currentSong.ytThumbnail"
  53. onerror="this.src='/assets/notes-transparent.png'"
  54. class="ytThumbnail"
  55. />
  56. <img
  57. v-else
  58. :src="station.currentSong.thumbnail"
  59. onerror="this.src='/assets/notes-transparent.png'"
  60. />
  61. </figure>
  62. </div>
  63. <div class="card-content">
  64. <div class="media">
  65. <div class="media-left displayName">
  66. <h5>
  67. {{ station.displayName }}
  68. <i
  69. v-if="station.type === 'official'"
  70. class="badge material-icons"
  71. >verified_user</i
  72. >
  73. </h5>
  74. </div>
  75. </div>
  76. <div class="content">
  77. {{ station.description }}
  78. </div>
  79. <div class="under-content">
  80. <span class="hostedby"
  81. >Hosted by
  82. <span class="host">
  83. <span
  84. v-if="station.type === 'official'"
  85. title="Musare"
  86. >Musare</span
  87. >
  88. <user-id-to-username
  89. v-else
  90. :userId="station.owner"
  91. :link="true"
  92. />
  93. </span>
  94. </span>
  95. <i
  96. v-if="station.privacy !== 'public'"
  97. class="material-icons right-icon"
  98. title="This station is not visible to other users."
  99. >lock</i
  100. >
  101. <i
  102. v-if="
  103. station.type === 'community' &&
  104. isOwner(station)
  105. "
  106. class="material-icons right-icon"
  107. title="This is your station."
  108. >home</i
  109. >
  110. </div>
  111. </div>
  112. <router-link
  113. class="absolute-a"
  114. :to="{
  115. name: 'station',
  116. params: { id: station.name }
  117. }"
  118. />
  119. </router-link>
  120. </div>
  121. </div>
  122. <main-footer />
  123. </div>
  124. <create-community-station v-if="modals.createCommunityStation" />
  125. </div>
  126. </template>
  127. <script>
  128. import { mapState, mapActions } from "vuex";
  129. import MainHeader from "../MainHeader.vue";
  130. import MainFooter from "../MainFooter.vue";
  131. import CreateCommunityStation from "../Modals/CreateCommunityStation.vue";
  132. import UserIdToUsername from "../UserIdToUsername.vue";
  133. import io from "../../io";
  134. export default {
  135. data() {
  136. return {
  137. recaptcha: {
  138. key: ""
  139. },
  140. stations: [],
  141. searchQuery: ""
  142. };
  143. },
  144. computed: {
  145. filteredStations() {
  146. return this.stations.filter(
  147. station =>
  148. JSON.stringify(Object.values(station)).indexOf(
  149. this.searchQuery
  150. ) !== -1
  151. );
  152. },
  153. ...mapState({
  154. modals: state => state.modals.modals.home,
  155. loggedIn: state => state.user.auth.loggedIn,
  156. userId: state => state.user.auth.userId
  157. })
  158. },
  159. mounted() {
  160. io.getSocket(socket => {
  161. this.socket = socket;
  162. if (this.socket.connected) this.init();
  163. io.onConnect(() => {
  164. this.init();
  165. });
  166. this.socket.on("event:stations.created", res => {
  167. const station = res;
  168. if (!station.currentSong)
  169. station.currentSong = {
  170. thumbnail: "/assets/notes-transparent.png"
  171. };
  172. if (station.currentSong && !station.currentSong.thumbnail)
  173. station.currentSong.ytThumbnail = `https://img.youtube.com/vi/${station.currentSong.songId}/mqdefault.jpg`;
  174. this.stations.push(station);
  175. });
  176. this.socket.on(
  177. "event:userCount.updated",
  178. (stationId, userCount) => {
  179. this.stations.forEach(s => {
  180. const station = s;
  181. if (station._id === stationId) {
  182. station.userCount = userCount;
  183. }
  184. });
  185. }
  186. );
  187. this.socket.on("event:station.nextSong", (stationId, song) => {
  188. let newSong = song;
  189. this.stations.forEach(s => {
  190. const station = s;
  191. if (station._id === stationId) {
  192. if (!newSong)
  193. newSong = {
  194. thumbnail: "/assets/notes-transparent.png"
  195. };
  196. if (newSong && !newSong.thumbnail)
  197. newSong.ytThumbnail = `https://img.youtube.com/vi/${newSong.songId}/mqdefault.jpg`;
  198. station.currentSong = newSong;
  199. }
  200. });
  201. });
  202. });
  203. },
  204. methods: {
  205. init() {
  206. this.socket.emit("stations.index", data => {
  207. this.stations = [];
  208. if (data.status === "success")
  209. data.stations.forEach(s => {
  210. const station = s;
  211. if (!station.currentSong)
  212. station.currentSong = {
  213. thumbnail: "/assets/notes-transparent.png"
  214. };
  215. if (
  216. station.currentSong &&
  217. !station.currentSong.thumbnail
  218. )
  219. station.currentSong.ytThumbnail = `https://img.youtube.com/vi/${station.currentSong.songId}/mqdefault.jpg`;
  220. this.stations.push(station);
  221. });
  222. });
  223. this.socket.emit("apis.joinRoom", "home", () => {});
  224. },
  225. isOwner(station) {
  226. return (
  227. station.owner === this.userId && station.privacy === "public"
  228. );
  229. },
  230. ...mapActions("modals", ["openModal"])
  231. },
  232. components: {
  233. MainHeader,
  234. MainFooter,
  235. CreateCommunityStation,
  236. UserIdToUsername
  237. }
  238. };
  239. </script>
  240. <style lang="scss">
  241. @import "styles/global.scss";
  242. * {
  243. box-sizing: border-box;
  244. }
  245. html {
  246. width: 100%;
  247. height: 100%;
  248. color: $dark-grey-2;
  249. body {
  250. width: 100%;
  251. height: 100%;
  252. margin: 0;
  253. padding: 0;
  254. }
  255. }
  256. @media only screen and (min-width: 1200px) {
  257. html {
  258. font-size: 15px;
  259. }
  260. }
  261. @media only screen and (min-width: 992px) {
  262. html {
  263. font-size: 14.5px;
  264. }
  265. }
  266. @media only screen and (min-width: 0) {
  267. html {
  268. font-size: 14px;
  269. }
  270. }
  271. .under-content {
  272. width: calc(100% - 40px);
  273. left: 20px;
  274. right: 20px;
  275. bottom: 10px;
  276. text-align: left;
  277. height: 25px;
  278. position: absolute;
  279. margin-bottom: 10px;
  280. line-height: 1;
  281. font-size: 24px;
  282. vertical-align: middle;
  283. * {
  284. z-index: 10;
  285. position: relative;
  286. }
  287. .official {
  288. font-size: 18px;
  289. color: $primary-color;
  290. position: relative;
  291. top: -5px;
  292. }
  293. .hostedby {
  294. font-size: 15px;
  295. .host {
  296. color: $primary-color;
  297. a {
  298. color: $primary-color;
  299. }
  300. }
  301. }
  302. .right-icon {
  303. float: right;
  304. }
  305. }
  306. .users-count {
  307. font-size: 20px;
  308. position: relative;
  309. top: -4px;
  310. }
  311. .right {
  312. float: right;
  313. }
  314. .group {
  315. min-height: 64px;
  316. }
  317. .station-card {
  318. margin: 10px;
  319. cursor: pointer;
  320. height: 475px;
  321. background: $white;
  322. transition: all ease-in-out 0.2s;
  323. .card-content {
  324. max-height: 159px;
  325. .content {
  326. word-wrap: break-word;
  327. overflow: hidden;
  328. text-overflow: ellipsis;
  329. display: -webkit-box;
  330. -webkit-box-orient: vertical;
  331. -webkit-line-clamp: 3;
  332. line-height: 20px;
  333. max-height: 60px;
  334. }
  335. }
  336. .card-image {
  337. height: 300px;
  338. width: 300px;
  339. overflow: hidden;
  340. .image {
  341. .ytThumbnailBg {
  342. background: url("/assets/notes-transparent.png") no-repeat
  343. center center;
  344. background-size: cover;
  345. height: 300px;
  346. width: 300px;
  347. position: absolute;
  348. top: 0;
  349. filter: blur(5px);
  350. }
  351. .ytThumbnail {
  352. height: auto;
  353. top: 0;
  354. margin-top: auto;
  355. margin-bottom: auto;
  356. }
  357. }
  358. }
  359. }
  360. .station-card:hover {
  361. box-shadow: 0 2px 3px rgba(10, 10, 10, 0.3), 0 0 10px rgba(10, 10, 10, 0.3);
  362. transition: all ease-in-out 0.2s;
  363. }
  364. /*.isPrivate {
  365. background-color: #F8BBD0;
  366. }
  367. .isMine {
  368. background-color: #29B6F6;
  369. }*/
  370. .community-button {
  371. cursor: pointer;
  372. transition: 0.25s ease color;
  373. font-size: 30px;
  374. color: $dark-grey;
  375. }
  376. .community-button:hover {
  377. color: $primary-color;
  378. }
  379. .station-privacy {
  380. text-transform: capitalize;
  381. }
  382. .label {
  383. display: flex;
  384. }
  385. .g-recaptcha {
  386. display: flex;
  387. justify-content: center;
  388. margin-top: 20px;
  389. }
  390. .group {
  391. text-align: center;
  392. width: 100%;
  393. .group-title {
  394. float: left;
  395. clear: none;
  396. width: 100%;
  397. height: 64px;
  398. line-height: 48px;
  399. text-align: center;
  400. font-size: 48px;
  401. margin-bottom: 25px;
  402. }
  403. }
  404. .group .card {
  405. display: inline-flex;
  406. flex-direction: column;
  407. overflow: hidden;
  408. .content {
  409. text-align: left;
  410. word-wrap: break-word;
  411. }
  412. .media {
  413. display: flex;
  414. align-items: center;
  415. .station-status {
  416. line-height: 13px;
  417. }
  418. h5 {
  419. margin: 0;
  420. }
  421. }
  422. }
  423. .displayName {
  424. word-wrap: break-word;
  425. width: 80%;
  426. word-wrap: break-word;
  427. overflow: hidden;
  428. text-overflow: ellipsis;
  429. display: -webkit-box;
  430. -webkit-box-orient: vertical;
  431. -webkit-line-clamp: 1;
  432. line-height: 30px;
  433. max-height: 30px;
  434. .badge {
  435. position: relative;
  436. padding-right: 2px;
  437. color: $lime;
  438. top: +5px;
  439. }
  440. }
  441. </style>