index.vue 46 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953
  1. <template>
  2. <div>
  3. <metadata v-if="exists && !loading" :title="`${station.displayName}`" />
  4. <metadata v-else-if="!exists && !loading" :title="`Not found`" />
  5. <main-header v-if="exists" />
  6. <div
  7. id="station-outer-container"
  8. :style="[!exists ? { margin: 0, padding: 0 } : {}]"
  9. >
  10. <div v-show="loading" class="progress" />
  11. <div
  12. v-show="!loading && exists"
  13. id="station-inner-container"
  14. :class="{ 'nothing-here': noSong }"
  15. >
  16. <div id="station-left-column" class="column">
  17. <div class="player-container quadrant" v-show="!noSong">
  18. <div id="video-container">
  19. <div
  20. id="stationPlayer"
  21. style="width: 100%; height: 100%"
  22. />
  23. <div
  24. class="player-cannot-autoplay"
  25. v-if="!canAutoplay"
  26. >
  27. <p>
  28. Please click anywhere on the screen for the
  29. video to start
  30. </p>
  31. </div>
  32. </div>
  33. <div id="seeker-bar-container">
  34. <div id="seeker-bar" style="width: 0%" />
  35. </div>
  36. <div id="control-bar-container">
  37. <div id="left-buttons">
  38. <!-- Debug Box -->
  39. <button
  40. class="button is-primary"
  41. @click="togglePlayerDebugBox()"
  42. @dblclick="resetPlayerDebugBox()"
  43. >
  44. <i class="material-icons icon-with-button">
  45. bug_report
  46. </i>
  47. </button>
  48. <!-- Local Pause/Resume Button -->
  49. <button
  50. class="button is-primary"
  51. @click="resumeLocalStation()"
  52. id="local-resume"
  53. v-if="localPaused"
  54. >
  55. <i class="material-icons">play_arrow</i>
  56. </button>
  57. <button
  58. class="button is-primary"
  59. @click="pauseLocalStation()"
  60. id="local-pause"
  61. v-else
  62. >
  63. <i class="material-icons">pause</i>
  64. </button>
  65. <!-- Vote to Skip Button -->
  66. <button
  67. v-if="loggedIn"
  68. class="button is-primary"
  69. @click="voteSkipStation()"
  70. >
  71. <i class="material-icons icon-with-button"
  72. >skip_next</i
  73. >
  74. {{ currentSong.skipVotes }}
  75. </button>
  76. </div>
  77. <div id="duration">
  78. <p>
  79. {{ timeElapsed }} /
  80. {{ utils.formatTime(currentSong.duration) }}
  81. </p>
  82. </div>
  83. <p id="volume-control">
  84. <i
  85. v-if="muted"
  86. class="material-icons"
  87. @click="toggleMute()"
  88. >volume_mute</i
  89. >
  90. <i
  91. v-else
  92. class="material-icons"
  93. @click="toggleMute()"
  94. >volume_down</i
  95. >
  96. <input
  97. v-model="volumeSliderValue"
  98. type="range"
  99. min="0"
  100. max="10000"
  101. class="volume-slider active"
  102. @change="changeVolume()"
  103. @input="changeVolume()"
  104. />
  105. <i
  106. class="material-icons"
  107. @click="increaseVolume()"
  108. >volume_up</i
  109. >
  110. </p>
  111. <div id="right-buttons" v-if="loggedIn">
  112. <!-- Ratings (Like/Dislike) Buttons -->
  113. <div
  114. id="ratings"
  115. v-if="
  116. currentSong.likes !== -1 &&
  117. currentSong.dislikes !== -1
  118. "
  119. :class="{
  120. liked: liked,
  121. disliked: disliked
  122. }"
  123. >
  124. <!-- Like Song Button -->
  125. <button
  126. class="button is-success"
  127. id="like-song"
  128. @click="toggleLike()"
  129. >
  130. <i
  131. class="material-icons icon-with-button"
  132. :class="{ liked: liked }"
  133. >thumb_up_alt</i
  134. >{{ currentSong.likes }}
  135. </button>
  136. <!-- Dislike Song Button -->
  137. <button
  138. class="button is-danger"
  139. id="dislike-song"
  140. @click="toggleDislike()"
  141. >
  142. <i
  143. class="material-icons icon-with-button"
  144. :class="{
  145. disliked: disliked
  146. }"
  147. >thumb_down_alt</i
  148. >{{ currentSong.dislikes }}
  149. </button>
  150. </div>
  151. <!-- Add Song To Playlist Button & Dropdown -->
  152. <div id="add-song-to-playlist">
  153. <div class="control has-addons">
  154. <button
  155. class="button is-primary"
  156. @click="
  157. showPlaylistDropdown = !showPlaylistDropdown
  158. "
  159. >
  160. <i class="material-icons">queue</i>
  161. </button>
  162. <button
  163. class="button"
  164. id="dropdown-toggle"
  165. @click="
  166. showPlaylistDropdown = !showPlaylistDropdown
  167. "
  168. >
  169. <i class="material-icons">
  170. {{
  171. showPlaylistDropdown
  172. ? "expand_more"
  173. : "expand_less"
  174. }}
  175. </i>
  176. </button>
  177. </div>
  178. <add-to-playlist-dropdown
  179. v-if="showPlaylistDropdown"
  180. />
  181. </div>
  182. </div>
  183. </div>
  184. </div>
  185. <p class="player-container nothing-here-text" v-if="noSong">
  186. No song is currently playing
  187. </p>
  188. <div v-if="!noSong" id="current-next-row">
  189. <div
  190. id="currently-playing-container"
  191. class="quadrant"
  192. :class="{ 'no-currently-playing': noSong }"
  193. >
  194. <currently-playing />
  195. <!-- <p v-else class="nothing-here-text">
  196. No song is currently playing
  197. </p> -->
  198. </div>
  199. </div>
  200. </div>
  201. <div id="station-right-column" class="column">
  202. <div id="about-station-container" class="quadrant">
  203. <div id="station-info">
  204. <div class="row" id="station-name">
  205. <h1>{{ station.displayName }}</h1>
  206. <a href="#">
  207. <!-- Favorite Station Button -->
  208. <i
  209. v-if="loggedIn && station.isFavorited"
  210. @click.prevent="unfavoriteStation()"
  211. class="material-icons"
  212. >star</i
  213. >
  214. <i
  215. v-if="loggedIn && !station.isFavorited"
  216. @click.prevent="favoriteStation()"
  217. class="material-icons"
  218. >star_border</i
  219. >
  220. </a>
  221. </div>
  222. <p>{{ station.description }}</p>
  223. </div>
  224. <div id="admin-buttons" v-if="isOwnerOrAdmin()">
  225. <!-- (Admin) Pause/Resume Button -->
  226. <button
  227. class="button is-danger"
  228. v-if="stationPaused"
  229. @click="resumeStation()"
  230. >
  231. <i class="material-icons icon-with-button"
  232. >play_arrow</i
  233. >
  234. <span class="optional-desktop-only-text">
  235. Resume Station
  236. </span>
  237. </button>
  238. <button
  239. class="button is-danger"
  240. @click="pauseStation()"
  241. v-else
  242. >
  243. <i class="material-icons icon-with-button"
  244. >pause</i
  245. >
  246. <span class="optional-desktop-only-text">
  247. Pause Station
  248. </span>
  249. </button>
  250. <!-- (Admin) Skip Button -->
  251. <button
  252. class="button is-danger"
  253. @click="skipStation()"
  254. >
  255. <i class="material-icons icon-with-button"
  256. >skip_next</i
  257. >
  258. <span class="optional-desktop-only-text">
  259. Force Skip
  260. </span>
  261. </button>
  262. <!-- (Admin) Station Settings Button -->
  263. <button
  264. class="button is-primary"
  265. @click="openSettings()"
  266. >
  267. <i class="material-icons icon-with-button"
  268. >settings</i
  269. >
  270. <span class="optional-desktop-only-text">
  271. Station settings
  272. </span>
  273. </button>
  274. </div>
  275. </div>
  276. <div id="sidebar-container" class="quadrant">
  277. <station-sidebar />
  278. </div>
  279. </div>
  280. </div>
  281. <song-queue v-if="modals.addSongToQueue" />
  282. <edit-playlist v-if="modals.editPlaylist" />
  283. <create-playlist v-if="modals.createPlaylist" />
  284. <edit-station v-if="modals.editStation" store="station" />
  285. <report v-if="modals.report" />
  286. </div>
  287. <main-footer v-if="exists" />
  288. <edit-song
  289. v-if="modals.editSong"
  290. :song-id="editingSongId"
  291. song-type="songs"
  292. sector="station"
  293. />
  294. <floating-box id="player-debug-box" ref="playerDebugBox">
  295. <template #body>
  296. <span><b>YouTube id</b>: {{ currentSong.songId }}</span>
  297. <span><b>Duration</b>: {{ currentSong.duration }}</span>
  298. <span
  299. ><b>Skip duration</b>: {{ currentSong.skipDuration }}</span
  300. >
  301. <span><b>Can autoplay</b>: {{ canAutoplay }}</span>
  302. <span
  303. ><b>Attempts to play video</b>:
  304. {{ attemptsToPlayVideo }}</span
  305. >
  306. <span
  307. ><b>Last time requested if can autoplay</b>:
  308. {{ lastTimeRequestedIfCanAutoplay }}</span
  309. >
  310. <span><b>Loading</b>: {{ loading }}</span>
  311. <span><b>Playback rate</b>: {{ playbackRate }}</span>
  312. <span><b>Player ready</b>: {{ playerReady }}</span>
  313. <span><b>Ready</b>: {{ ready }}</span>
  314. <span><b>Seeking</b>: {{ seeking }}</span>
  315. <span><b>System difference</b>: {{ systemDifference }}</span>
  316. <span><b>Time before paused</b>: {{ timeBeforePause }}</span>
  317. <span><b>Time elapsed</b>: {{ timeElapsed }}</span>
  318. <span><b>Time paused</b>: {{ timePaused }}</span>
  319. <span><b>Volume slider value</b>: {{ volumeSliderValue }}</span>
  320. <span><b>Local paused</b>: {{ localPaused }}</span>
  321. <span><b>No song</b>: {{ noSong }}</span>
  322. <span
  323. ><b>Private playlist queue selected</b>:
  324. {{ privatePlaylistQueueSelected }}</span
  325. >
  326. <span><b>Station paused</b>: {{ stationPaused }}</span>
  327. <span
  328. ><b>Station Genres</b>:
  329. {{ station.genres.join(", ") }}</span
  330. >
  331. <span
  332. ><b>Station Blacklisted Genres</b>:
  333. {{ station.blacklistedGenres.join(", ") }}</span
  334. >
  335. </template>
  336. </floating-box>
  337. <Z404 v-if="!exists"></Z404>
  338. </div>
  339. </template>
  340. <script>
  341. import { mapState, mapActions } from "vuex";
  342. import Toast from "toasters";
  343. import MainHeader from "../../components/layout/MainHeader.vue";
  344. import MainFooter from "../../components/layout/MainFooter.vue";
  345. import Z404 from "../404.vue";
  346. import FloatingBox from "../../components/ui/FloatingBox.vue";
  347. import AddToPlaylistDropdown from "./components/AddToPlaylistDropdown.vue";
  348. import io from "../../io";
  349. import keyboardShortcuts from "../../keyboardShortcuts";
  350. import utils from "../../../js/utils";
  351. import CurrentlyPlaying from "./components/CurrentlyPlaying.vue";
  352. import StationSidebar from "./components/Sidebar/index.vue";
  353. export default {
  354. components: {
  355. MainHeader,
  356. MainFooter,
  357. SongQueue: () => import("./AddSongToQueue.vue"),
  358. EditPlaylist: () => import("../../components/modals/EditPlaylist.vue"),
  359. CreatePlaylist: () =>
  360. import("../../components/modals/CreatePlaylist.vue"),
  361. EditStation: () => import("../../components/modals/EditStation.vue"),
  362. Report: () => import("./Report.vue"),
  363. Z404,
  364. FloatingBox,
  365. CurrentlyPlaying,
  366. StationSidebar,
  367. AddToPlaylistDropdown,
  368. EditSong: () => import("../../components/modals/EditSong.vue")
  369. },
  370. data() {
  371. return {
  372. utils,
  373. title: "Station",
  374. loading: true,
  375. ready: false,
  376. exists: true,
  377. playerReady: false,
  378. player: undefined,
  379. timePaused: 0,
  380. muted: false,
  381. timeElapsed: "0:00",
  382. liked: false,
  383. disliked: false,
  384. timeBeforePause: 0,
  385. skipVotes: 0,
  386. automaticallyRequestedSongId: null,
  387. systemDifference: 0,
  388. attemptsToPlayVideo: 0,
  389. canAutoplay: true,
  390. lastTimeRequestedIfCanAutoplay: 0,
  391. seeking: false,
  392. playbackRate: 1,
  393. volumeSliderValue: 0,
  394. showPlaylistDropdown: false,
  395. editingSongId: ""
  396. };
  397. },
  398. computed: {
  399. ...mapState("modals", {
  400. modals: state => state.modals.station
  401. }),
  402. ...mapState("station", {
  403. station: state => state.station,
  404. currentSong: state => state.currentSong,
  405. songsList: state => state.songsList,
  406. stationPaused: state => state.stationPaused,
  407. localPaused: state => state.localPaused,
  408. noSong: state => state.noSong,
  409. privatePlaylistQueueSelected: state =>
  410. state.privatePlaylistQueueSelected
  411. }),
  412. ...mapState({
  413. loggedIn: state => state.user.auth.loggedIn,
  414. userId: state => state.user.auth.userId,
  415. role: state => state.user.auth.role
  416. })
  417. },
  418. mounted() {
  419. window.scrollTo(0, 0);
  420. Date.currently = () => {
  421. return new Date().getTime() + this.systemDifference;
  422. };
  423. this.stationName = this.$route.params.id;
  424. window.stationInterval = 0;
  425. io.getSocket(socket => {
  426. this.socket = socket;
  427. if (this.socket.connected) this.join();
  428. io.onConnect(this.join);
  429. this.socket.emit("stations.existsByName", this.stationName, res => {
  430. if (res.status === "failure" || !res.exists) {
  431. this.loading = false;
  432. this.exists = false;
  433. }
  434. });
  435. this.socket.on("event:songs.next", data => {
  436. const previousSong = this.currentSong.songId
  437. ? this.currentSong
  438. : null;
  439. this.updatePreviousSong(previousSong);
  440. const { currentSong } = data;
  441. if (currentSong && !currentSong.thumbnail)
  442. currentSong.ytThumbnail = `https://img.youtube.com/vi/${currentSong.songId}/mqdefault.jpg`;
  443. this.updateCurrentSong(currentSong || {});
  444. this.startedAt = data.startedAt;
  445. this.updateStationPaused(data.paused);
  446. this.timePaused = data.timePaused;
  447. if (currentSong) {
  448. this.updateNoSong(false);
  449. if (this.currentSong.artists)
  450. this.currentSong.artists = this.currentSong.artists.join(
  451. ", "
  452. );
  453. if (!this.playerReady) this.youtubeReady();
  454. else this.playVideo();
  455. this.socket.emit(
  456. "songs.getOwnSongRatings",
  457. data.currentSong.songId,
  458. song => {
  459. if (this.currentSong.songId === song.songId) {
  460. this.liked = song.liked;
  461. this.disliked = song.disliked;
  462. if (
  463. this.autoSkipDisliked &&
  464. song.disliked === true
  465. ) {
  466. this.voteSkipStation();
  467. new Toast({
  468. content:
  469. "Automatically voted to skip disliked song.",
  470. timeout: 4000
  471. });
  472. }
  473. }
  474. }
  475. );
  476. } else {
  477. if (this.playerReady) this.player.pauseVideo();
  478. this.updateNoSong(true);
  479. }
  480. let isInQueue = false;
  481. this.songsList.forEach(queueSong => {
  482. if (queueSong.requestedBy === this.userId) isInQueue = true;
  483. });
  484. if (
  485. !isInQueue &&
  486. this.privatePlaylistQueueSelected &&
  487. (this.automaticallyRequestedSongId !==
  488. this.currentSong.songId ||
  489. !this.currentSong.songId)
  490. ) {
  491. this.addFirstPrivatePlaylistSongToQueue();
  492. }
  493. });
  494. this.socket.on("event:stations.pause", data => {
  495. this.pausedAt = data.pausedAt;
  496. this.updateStationPaused(true);
  497. this.pauseLocalPlayer();
  498. });
  499. this.socket.on("event:stations.resume", data => {
  500. this.timePaused = data.timePaused;
  501. this.updateStationPaused(false);
  502. if (!this.localPaused) this.resumeLocalPlayer();
  503. });
  504. this.socket.on("event:stations.remove", () => {
  505. window.location.href = "/";
  506. return true;
  507. });
  508. this.socket.on("event:song.like", data => {
  509. if (!this.noSong) {
  510. if (data.songId === this.currentSong.songId) {
  511. this.currentSong.dislikes = data.dislikes;
  512. this.currentSong.likes = data.likes;
  513. }
  514. }
  515. });
  516. this.socket.on("event:song.dislike", data => {
  517. if (!this.noSong) {
  518. if (data.songId === this.currentSong.songId) {
  519. this.currentSong.dislikes = data.dislikes;
  520. this.currentSong.likes = data.likes;
  521. }
  522. }
  523. });
  524. this.socket.on("event:song.unlike", data => {
  525. if (!this.noSong) {
  526. if (data.songId === this.currentSong.songId) {
  527. this.currentSong.dislikes = data.dislikes;
  528. this.currentSong.likes = data.likes;
  529. }
  530. }
  531. });
  532. this.socket.on("event:song.undislike", data => {
  533. if (!this.noSong) {
  534. if (data.songId === this.currentSong.songId) {
  535. this.currentSong.dislikes = data.dislikes;
  536. this.currentSong.likes = data.likes;
  537. }
  538. }
  539. });
  540. this.socket.on("event:song.newRatings", data => {
  541. if (!this.noSong) {
  542. if (data.songId === this.currentSong.songId) {
  543. this.liked = data.liked;
  544. this.disliked = data.disliked;
  545. }
  546. }
  547. });
  548. this.socket.on("event:queue.update", queue => {
  549. if (this.station.type === "community")
  550. this.updateSongsList(queue);
  551. });
  552. this.socket.on("event:song.voteSkipSong", () => {
  553. if (this.currentSong) this.currentSong.skipVotes += 1;
  554. });
  555. this.socket.on("event:privatePlaylist.selected", playlistId => {
  556. if (this.station.type === "community") {
  557. this.station.privatePlaylist = playlistId;
  558. }
  559. });
  560. this.socket.on("event:privatePlaylist.deselected", () => {
  561. if (this.station.type === "community") {
  562. this.station.privatePlaylist = null;
  563. }
  564. });
  565. this.socket.on("event:partyMode.updated", partyMode => {
  566. if (this.station.type === "community") {
  567. this.station.partyMode = partyMode;
  568. }
  569. });
  570. this.socket.on("event:newOfficialPlaylist", playlist => {
  571. if (this.station.type === "official") {
  572. this.updateSongsList(playlist);
  573. }
  574. });
  575. this.socket.on("event:users.updated", users => {
  576. this.updateUsers(users);
  577. });
  578. this.socket.on("event:userCount.updated", userCount => {
  579. this.updateUserCount(userCount);
  580. });
  581. this.socket.on("event:queueLockToggled", locked => {
  582. this.station.locked = locked;
  583. });
  584. this.socket.on("event:user.favoritedStation", stationId => {
  585. if (stationId === this.station._id)
  586. this.updateIfStationIsFavorited({ isFavorited: true });
  587. });
  588. this.socket.on("event:user.unfavoritedStation", stationId => {
  589. if (stationId === this.station._id)
  590. this.updateIfStationIsFavorited({ isFavorited: false });
  591. });
  592. });
  593. if (JSON.parse(localStorage.getItem("muted"))) {
  594. this.muted = true;
  595. this.player.setVolume(0);
  596. this.volumeSliderValue = 0 * 100;
  597. } else {
  598. let volume = parseFloat(localStorage.getItem("volume"));
  599. volume =
  600. typeof volume === "number" && !Number.isNaN(volume)
  601. ? volume
  602. : 20;
  603. localStorage.setItem("volume", volume);
  604. this.volumeSliderValue = volume * 100;
  605. }
  606. },
  607. beforeDestroy() {
  608. /** Reset Songslist */
  609. this.updateSongsList([]);
  610. const shortcutNames = [
  611. "station.pauseResume",
  612. "station.skipStation",
  613. "station.lowerVolumeLarge",
  614. "station.lowerVolumeSmall",
  615. "station.increaseVolumeLarge",
  616. "station.increaseVolumeSmall",
  617. "station.toggleDebug"
  618. ];
  619. shortcutNames.forEach(shortcutName => {
  620. keyboardShortcuts.unregisterShortcut(shortcutName);
  621. });
  622. },
  623. methods: {
  624. isOwnerOnly() {
  625. return this.loggedIn && this.userId === this.station.owner;
  626. },
  627. isAdminOnly() {
  628. return this.loggedIn && this.role === "admin";
  629. },
  630. isOwnerOrAdmin() {
  631. return this.isOwnerOnly() || this.isAdminOnly();
  632. },
  633. openSettings() {
  634. this.editStation({
  635. _id: this.station._id,
  636. name: this.station.name,
  637. type: this.station.type,
  638. partyMode: this.station.partyMode,
  639. description: this.station.description,
  640. privacy: this.station.privacy,
  641. displayName: this.station.displayName,
  642. locked: this.station.locked,
  643. genres: this.station.genres,
  644. blacklistedGenres: this.station.blacklistedGenres
  645. });
  646. this.openModal({
  647. sector: "station",
  648. modal: "editStation"
  649. });
  650. },
  651. removeFromQueue(songId) {
  652. window.socket.emit(
  653. "stations.removeFromQueue",
  654. this.station._id,
  655. songId,
  656. res => {
  657. if (res.status === "success") {
  658. new Toast({
  659. content:
  660. "Successfully removed song from the queue.",
  661. timeout: 4000
  662. });
  663. } else new Toast({ content: res.message, timeout: 8000 });
  664. }
  665. );
  666. },
  667. youtubeReady() {
  668. if (!this.player) {
  669. this.player = new window.YT.Player("stationPlayer", {
  670. height: 270,
  671. width: 480,
  672. videoId: this.currentSong.songId,
  673. host: "https://www.youtube-nocookie.com",
  674. startSeconds:
  675. this.getTimeElapsed() / 1000 +
  676. this.currentSong.skipDuration,
  677. playerVars: {
  678. controls: 0,
  679. iv_load_policy: 3,
  680. rel: 0,
  681. showinfo: 0
  682. },
  683. events: {
  684. onReady: () => {
  685. this.playerReady = true;
  686. let volume = parseInt(
  687. localStorage.getItem("volume")
  688. );
  689. volume = typeof volume === "number" ? volume : 20;
  690. this.player.setVolume(volume);
  691. if (volume > 0) {
  692. this.player.unMute();
  693. }
  694. if (this.muted) this.player.mute();
  695. this.playVideo();
  696. },
  697. onError: err => {
  698. console.log("iframe error", err);
  699. if (this.loggedIn) {
  700. new Toast({
  701. content:
  702. "Error with YouTube Embed, voted to skip the current song.",
  703. timeout: 8000
  704. });
  705. this.voteSkipStation();
  706. } else {
  707. new Toast({
  708. content: "Error with YouTube Embed",
  709. timeout: 8000
  710. });
  711. }
  712. },
  713. onStateChange: event => {
  714. if (
  715. event.data === window.YT.PlayerState.PLAYING &&
  716. this.videoLoading === true
  717. ) {
  718. this.videoLoading = false;
  719. this.player.seekTo(
  720. this.getTimeElapsed() / 1000 +
  721. this.currentSong.skipDuration,
  722. true
  723. );
  724. if (this.localPaused || this.stationPaused)
  725. this.player.pauseVideo();
  726. } else if (
  727. event.data === window.YT.PlayerState.PLAYING &&
  728. (this.localPaused || this.stationPaused)
  729. ) {
  730. this.player.seekTo(
  731. this.timeBeforePause / 1000,
  732. true
  733. );
  734. this.player.pauseVideo();
  735. } else if (
  736. event.data === window.YT.PlayerState.PLAYING &&
  737. this.seeking === true
  738. ) {
  739. this.seeking = false;
  740. }
  741. if (
  742. event.data === window.YT.PlayerState.PAUSED &&
  743. !this.localPaused &&
  744. !this.stationPaused &&
  745. !this.noSong &&
  746. this.player.getDuration() / 1000 <
  747. this.currentSong.duration
  748. ) {
  749. this.player.seekTo(
  750. this.getTimeElapsed() / 1000 +
  751. this.currentSong.skipDuration,
  752. true
  753. );
  754. this.player.playVideo();
  755. }
  756. }
  757. }
  758. });
  759. }
  760. },
  761. getTimeElapsed() {
  762. if (this.currentSong) {
  763. let { timePaused } = this;
  764. if (this.stationPaused)
  765. timePaused += Date.currently() - this.pausedAt;
  766. return Date.currently() - this.startedAt - timePaused;
  767. }
  768. return 0;
  769. },
  770. playVideo() {
  771. if (this.playerReady) {
  772. this.videoLoading = true;
  773. this.player.loadVideoById(
  774. this.currentSong.songId,
  775. this.getTimeElapsed() / 1000 + this.currentSong.skipDuration
  776. );
  777. if (window.stationInterval !== 0)
  778. clearInterval(window.stationInterval);
  779. window.stationInterval = setInterval(() => {
  780. this.resizeSeekerbar();
  781. this.calculateTimeElapsed();
  782. }, 150);
  783. }
  784. },
  785. resizeSeekerbar() {
  786. if (!this.stationPaused) {
  787. document.getElementById(
  788. "seeker-bar"
  789. ).style.width = `${parseFloat(
  790. (this.getTimeElapsed() / 1000 / this.currentSong.duration) *
  791. 100
  792. )}%`;
  793. }
  794. },
  795. calculateTimeElapsed() {
  796. if (
  797. this.playerReady &&
  798. this.currentSong &&
  799. this.player.getPlayerState() === -1
  800. ) {
  801. if (this.attemptsToPlayVideo >= 5) {
  802. if (
  803. Date.now() - this.lastTimeRequestedIfCanAutoplay >
  804. 2000
  805. ) {
  806. this.lastTimeRequestedIfCanAutoplay = Date.now();
  807. window.canAutoplay.video().then(({ result }) => {
  808. if (result) {
  809. this.attemptsToPlayVideo = 0;
  810. this.canAutoplay = true;
  811. } else {
  812. this.canAutoplay = false;
  813. }
  814. });
  815. }
  816. } else {
  817. this.player.playVideo();
  818. this.attemptsToPlayVideo += 1;
  819. }
  820. }
  821. if (!this.stationPaused && !this.localPaused) {
  822. const timeElapsed = this.getTimeElapsed();
  823. const currentPlayerTime =
  824. Math.max(
  825. this.player.getCurrentTime() -
  826. this.currentSong.skipDuration,
  827. 0
  828. ) * 1000;
  829. const difference = timeElapsed - currentPlayerTime;
  830. // console.log(difference);
  831. let playbackRate = 1;
  832. if (difference < -2000) {
  833. if (!this.seeking) {
  834. this.seeking = true;
  835. this.player.seekTo(
  836. this.getTimeElapsed() / 1000 +
  837. this.currentSong.skipDuration
  838. );
  839. }
  840. } else if (difference < -200) {
  841. // console.log("Difference0.8");
  842. playbackRate = 0.8;
  843. } else if (difference < -50) {
  844. // console.log("Difference0.9");
  845. playbackRate = 0.9;
  846. } else if (difference < -25) {
  847. // console.log("Difference0.99");
  848. playbackRate = 0.95;
  849. } else if (difference > 2000) {
  850. if (!this.seeking) {
  851. this.seeking = true;
  852. this.player.seekTo(
  853. this.getTimeElapsed() / 1000 +
  854. this.currentSong.skipDuration
  855. );
  856. }
  857. } else if (difference > 200) {
  858. // console.log("Difference1.2");
  859. playbackRate = 1.2;
  860. } else if (difference > 50) {
  861. // console.log("Difference1.1");
  862. playbackRate = 1.1;
  863. } else if (difference > 25) {
  864. // console.log("Difference1.01");
  865. playbackRate = 1.05;
  866. } else if (this.player.getPlaybackRate !== 1.0) {
  867. // console.log("NDifference1.0");
  868. this.player.setPlaybackRate(1.0);
  869. }
  870. if (this.playbackRate !== playbackRate) {
  871. this.player.setPlaybackRate(playbackRate);
  872. this.playbackRate = playbackRate;
  873. }
  874. }
  875. /* if (this.currentTime !== undefined && this.paused) {
  876. this.timePaused += Date.currently() - this.currentTime;
  877. this.currentTime = undefined;
  878. } */
  879. let { timePaused } = this;
  880. if (this.stationPaused)
  881. timePaused += Date.currently() - this.pausedAt;
  882. const duration =
  883. (Date.currently() - this.startedAt - timePaused) / 1000;
  884. const songDuration = this.currentSong.duration;
  885. if (songDuration <= duration) this.player.pauseVideo();
  886. if (!this.stationPaused && duration <= songDuration)
  887. this.timeElapsed = utils.formatTime(duration);
  888. },
  889. toggleLock() {
  890. window.socket.emit("stations.toggleLock", this.station._id, res => {
  891. if (res.status === "success") {
  892. new Toast({
  893. content: "Successfully toggled the queue lock.",
  894. timeout: 4000
  895. });
  896. } else new Toast({ content: res.message, timeout: 8000 });
  897. });
  898. },
  899. changeVolume() {
  900. const volume = this.volumeSliderValue;
  901. localStorage.setItem("volume", volume / 100);
  902. if (this.playerReady) {
  903. this.player.setVolume(volume / 100);
  904. if (volume > 0) {
  905. this.player.unMute();
  906. localStorage.setItem("muted", false);
  907. this.muted = false;
  908. }
  909. }
  910. },
  911. resumeLocalStation() {
  912. this.updateLocalPaused(false);
  913. if (!this.stationPaused) this.resumeLocalPlayer();
  914. },
  915. pauseLocalStation() {
  916. this.updateLocalPaused(true);
  917. this.pauseLocalPlayer();
  918. },
  919. resumeLocalPlayer() {
  920. if (!this.noSong) {
  921. if (this.playerReady) {
  922. this.player.seekTo(
  923. this.getTimeElapsed() / 1000 +
  924. this.currentSong.skipDuration
  925. );
  926. this.player.playVideo();
  927. }
  928. }
  929. },
  930. pauseLocalPlayer() {
  931. if (!this.noSong) {
  932. this.timeBeforePause = this.getTimeElapsed();
  933. if (this.playerReady) this.player.pauseVideo();
  934. }
  935. },
  936. skipStation() {
  937. this.socket.emit("stations.forceSkip", this.station._id, data => {
  938. if (data.status !== "success")
  939. new Toast({
  940. content: `Error: ${data.message}`,
  941. timeout: 8000
  942. });
  943. else
  944. new Toast({
  945. content:
  946. "Successfully skipped the station's current song.",
  947. timeout: 4000
  948. });
  949. });
  950. },
  951. voteSkipStation() {
  952. this.socket.emit("stations.voteSkip", this.station._id, data => {
  953. if (data.status !== "success")
  954. new Toast({
  955. content: `Error: ${data.message}`,
  956. timeout: 8000
  957. });
  958. else
  959. new Toast({
  960. content: "Successfully voted to skip the current song.",
  961. timeout: 4000
  962. });
  963. });
  964. },
  965. resumeStation() {
  966. this.socket.emit("stations.resume", this.station._id, data => {
  967. if (data.status !== "success")
  968. new Toast({
  969. content: `Error: ${data.message}`,
  970. timeout: 8000
  971. });
  972. else
  973. new Toast({
  974. content: "Successfully resumed the station.",
  975. timeout: 4000
  976. });
  977. });
  978. },
  979. pauseStation() {
  980. this.socket.emit("stations.pause", this.station._id, data => {
  981. if (data.status !== "success")
  982. new Toast({
  983. content: `Error: ${data.message}`,
  984. timeout: 8000
  985. });
  986. else
  987. new Toast({
  988. content: "Successfully paused the station.",
  989. timeout: 4000
  990. });
  991. });
  992. },
  993. toggleMute() {
  994. if (this.playerReady) {
  995. const previousVolume = parseFloat(
  996. localStorage.getItem("volume")
  997. );
  998. const volume =
  999. this.player.getVolume() * 100 <= 0 ? previousVolume : 0;
  1000. this.muted = !this.muted;
  1001. localStorage.setItem("muted", this.muted);
  1002. this.volumeSliderValue = volume * 100;
  1003. this.player.setVolume(volume);
  1004. if (!this.muted) localStorage.setItem("volume", volume);
  1005. }
  1006. },
  1007. increaseVolume() {
  1008. if (this.playerReady) {
  1009. const previousVolume = parseInt(localStorage.getItem("volume"));
  1010. let volume = previousVolume + 5;
  1011. if (previousVolume === 0) {
  1012. this.muted = false;
  1013. localStorage.setItem("muted", false);
  1014. }
  1015. if (volume > 100) volume = 100;
  1016. this.volumeSliderValue = volume * 100;
  1017. this.player.setVolume(volume);
  1018. localStorage.setItem("volume", volume);
  1019. }
  1020. },
  1021. toggleLike() {
  1022. if (this.liked)
  1023. this.socket.emit(
  1024. "songs.unlike",
  1025. this.currentSong.songId,
  1026. data => {
  1027. if (data.status !== "success")
  1028. new Toast({
  1029. content: `Error: ${data.message}`,
  1030. timeout: 8000
  1031. });
  1032. }
  1033. );
  1034. else
  1035. this.socket.emit(
  1036. "songs.like",
  1037. this.currentSong.songId,
  1038. data => {
  1039. if (data.status !== "success")
  1040. new Toast({
  1041. content: `Error: ${data.message}`,
  1042. timeout: 8000
  1043. });
  1044. }
  1045. );
  1046. },
  1047. toggleDislike() {
  1048. if (this.disliked)
  1049. return this.socket.emit(
  1050. "songs.undislike",
  1051. this.currentSong.songId,
  1052. data => {
  1053. if (data.status !== "success")
  1054. new Toast({
  1055. content: `Error: ${data.message}`,
  1056. timeout: 8000
  1057. });
  1058. }
  1059. );
  1060. return this.socket.emit(
  1061. "songs.dislike",
  1062. this.currentSong.songId,
  1063. data => {
  1064. if (data.status !== "success")
  1065. new Toast({
  1066. content: `Error: ${data.message}`,
  1067. timeout: 8000
  1068. });
  1069. }
  1070. );
  1071. },
  1072. addFirstPrivatePlaylistSongToQueue() {
  1073. let isInQueue = false;
  1074. if (
  1075. this.station.type === "community" &&
  1076. this.station.partyMode === true
  1077. ) {
  1078. this.songsList.forEach(queueSong => {
  1079. if (queueSong.requestedBy === this.userId) isInQueue = true;
  1080. });
  1081. if (!isInQueue && this.privatePlaylistQueueSelected) {
  1082. this.socket.emit(
  1083. "playlists.getFirstSong",
  1084. this.privatePlaylistQueueSelected,
  1085. data => {
  1086. if (data.status === "success") {
  1087. if (data.song) {
  1088. if (data.song.duration < 15 * 60) {
  1089. this.automaticallyRequestedSongId =
  1090. data.song.songId;
  1091. this.socket.emit(
  1092. "stations.addToQueue",
  1093. this.station._id,
  1094. data.song.songId,
  1095. data2 => {
  1096. if (
  1097. data2.status === "success"
  1098. ) {
  1099. this.socket.emit(
  1100. "playlists.moveSongToBottom",
  1101. this
  1102. .privatePlaylistQueueSelected,
  1103. data.song.songId,
  1104. data3 => {
  1105. if (
  1106. data3.status ===
  1107. "success"
  1108. ) {
  1109. console.log(
  1110. "This comment is just here because of eslint/prettier issues, ignore it"
  1111. );
  1112. }
  1113. }
  1114. );
  1115. }
  1116. }
  1117. );
  1118. } else {
  1119. new Toast({
  1120. content: `Top song in playlist was too long to be added.`,
  1121. timeout: 3000
  1122. });
  1123. this.socket.emit(
  1124. "playlists.moveSongToBottom",
  1125. this.privatePlaylistQueueSelected,
  1126. data.song.songId,
  1127. data3 => {
  1128. if (
  1129. data3.status === "success"
  1130. ) {
  1131. setTimeout(() => {
  1132. this.addFirstPrivatePlaylistSongToQueue();
  1133. }, 3000);
  1134. }
  1135. }
  1136. );
  1137. }
  1138. } else {
  1139. new Toast({
  1140. content: `Selected playlist has no songs.`,
  1141. timeout: 4000
  1142. });
  1143. }
  1144. }
  1145. }
  1146. );
  1147. }
  1148. }
  1149. },
  1150. togglePlayerDebugBox() {
  1151. this.$refs.playerDebugBox.toggleBox();
  1152. },
  1153. resetPlayerDebugBox() {
  1154. this.$refs.playerDebugBox.resetBox();
  1155. },
  1156. join() {
  1157. this.socket.emit("stations.join", this.stationName, res => {
  1158. if (res.status === "success") {
  1159. this.loading = false;
  1160. const {
  1161. _id,
  1162. displayName,
  1163. description,
  1164. privacy,
  1165. locked,
  1166. partyMode,
  1167. owner,
  1168. privatePlaylist,
  1169. type,
  1170. genres,
  1171. blacklistedGenres,
  1172. isFavorited
  1173. } = res.data;
  1174. this.joinStation({
  1175. _id,
  1176. name: this.stationName,
  1177. displayName,
  1178. description,
  1179. privacy,
  1180. locked,
  1181. partyMode,
  1182. owner,
  1183. privatePlaylist,
  1184. type,
  1185. genres,
  1186. blacklistedGenres,
  1187. isFavorited
  1188. });
  1189. const currentSong = res.data.currentSong
  1190. ? res.data.currentSong
  1191. : {};
  1192. if (currentSong.artists)
  1193. currentSong.artists = currentSong.artists.join(", ");
  1194. if (currentSong && !currentSong.thumbnail)
  1195. currentSong.ytThumbnail = `https://img.youtube.com/vi/${currentSong.songId}/mqdefault.jpg`;
  1196. this.updateCurrentSong(currentSong);
  1197. this.startedAt = res.data.startedAt;
  1198. this.updateStationPaused(res.data.paused);
  1199. this.timePaused = res.data.timePaused;
  1200. this.updateUserCount(res.data.userCount);
  1201. this.updateUsers(res.data.users);
  1202. this.pausedAt = res.data.pausedAt;
  1203. if (res.data.currentSong) {
  1204. this.updateNoSong(false);
  1205. this.youtubeReady();
  1206. this.playVideo();
  1207. this.socket.emit(
  1208. "songs.getOwnSongRatings",
  1209. res.data.currentSong.songId,
  1210. data => {
  1211. if (this.currentSong.songId === data.songId) {
  1212. this.liked = data.liked;
  1213. this.disliked = data.disliked;
  1214. }
  1215. }
  1216. );
  1217. } else {
  1218. if (this.playerReady) this.player.pauseVideo();
  1219. this.updateNoSong(true);
  1220. }
  1221. if (type === "community" && partyMode === true) {
  1222. this.socket.emit("stations.getQueue", _id, res => {
  1223. if (res.status === "success") {
  1224. this.updateSongsList(res.queue);
  1225. }
  1226. });
  1227. }
  1228. if (this.isOwnerOrAdmin()) {
  1229. keyboardShortcuts.registerShortcut(
  1230. "station.pauseResume",
  1231. {
  1232. keyCode: 32,
  1233. shift: false,
  1234. ctrl: true,
  1235. preventDefault: true,
  1236. handler: () => {
  1237. if (this.stationPaused)
  1238. this.resumeStation();
  1239. else this.pauseStation();
  1240. }
  1241. }
  1242. );
  1243. keyboardShortcuts.registerShortcut(
  1244. "station.skipStation",
  1245. {
  1246. keyCode: 39,
  1247. shift: false,
  1248. ctrl: true,
  1249. preventDefault: true,
  1250. handler: () => {
  1251. this.skipStation();
  1252. }
  1253. }
  1254. );
  1255. }
  1256. keyboardShortcuts.registerShortcut(
  1257. "station.lowerVolumeLarge",
  1258. {
  1259. keyCode: 40,
  1260. shift: false,
  1261. ctrl: true,
  1262. preventDefault: true,
  1263. handler: () => {
  1264. this.volumeSliderValue -= 1000;
  1265. this.changeVolume();
  1266. }
  1267. }
  1268. );
  1269. keyboardShortcuts.registerShortcut(
  1270. "station.lowerVolumeSmall",
  1271. {
  1272. keyCode: 40,
  1273. shift: true,
  1274. ctrl: true,
  1275. preventDefault: true,
  1276. handler: () => {
  1277. this.volumeSliderValue -= 100;
  1278. this.changeVolume();
  1279. }
  1280. }
  1281. );
  1282. keyboardShortcuts.registerShortcut(
  1283. "station.increaseVolumeLarge",
  1284. {
  1285. keyCode: 38,
  1286. shift: false,
  1287. ctrl: true,
  1288. preventDefault: true,
  1289. handler: () => {
  1290. this.volumeSliderValue += 1000;
  1291. this.changeVolume();
  1292. }
  1293. }
  1294. );
  1295. keyboardShortcuts.registerShortcut(
  1296. "station.increaseVolumeSmall",
  1297. {
  1298. keyCode: 38,
  1299. shift: true,
  1300. ctrl: true,
  1301. preventDefault: true,
  1302. handler: () => {
  1303. this.volumeSliderValue += 100;
  1304. this.changeVolume();
  1305. }
  1306. }
  1307. );
  1308. keyboardShortcuts.registerShortcut("station.toggleDebug", {
  1309. keyCode: 68,
  1310. shift: false,
  1311. ctrl: true,
  1312. preventDefault: true,
  1313. handler: () => {
  1314. this.togglePlayerDebugBox();
  1315. }
  1316. });
  1317. // UNIX client time before ping
  1318. const beforePing = Date.now();
  1319. this.socket.emit("apis.ping", pong => {
  1320. // UNIX client time after ping
  1321. const afterPing = Date.now();
  1322. // Average time in MS it took between the server responding and the client receiving
  1323. const connectionLatency = (afterPing - beforePing) / 2;
  1324. console.log(connectionLatency, beforePing - afterPing);
  1325. // UNIX server time
  1326. const serverDate = pong.date;
  1327. // Difference between the server UNIX time and the client UNIX time after ping, with the connectionLatency added to the server UNIX time
  1328. const difference =
  1329. serverDate + connectionLatency - afterPing;
  1330. console.log("Difference: ", difference);
  1331. if (difference > 3000 || difference < -3000) {
  1332. console.log(
  1333. "System time difference is bigger than 3 seconds."
  1334. );
  1335. }
  1336. this.systemDifference = difference;
  1337. });
  1338. } else {
  1339. this.loading = false;
  1340. this.exists = false;
  1341. }
  1342. });
  1343. },
  1344. favoriteStation() {
  1345. this.socket.emit(
  1346. "stations.favoriteStation",
  1347. this.station._id,
  1348. res => {
  1349. if (res.status === "success") {
  1350. new Toast({
  1351. content: "Successfully favorited station.",
  1352. timeout: 4000
  1353. });
  1354. } else new Toast({ content: res.message, timeout: 8000 });
  1355. }
  1356. );
  1357. },
  1358. unfavoriteStation() {
  1359. this.socket.emit(
  1360. "stations.unfavoriteStation",
  1361. this.station._id,
  1362. res => {
  1363. if (res.status === "success") {
  1364. new Toast({
  1365. content: "Successfully unfavorited station.",
  1366. timeout: 4000
  1367. });
  1368. } else new Toast({ content: res.message, timeout: 8000 });
  1369. }
  1370. );
  1371. },
  1372. editSong(song) {
  1373. this.editingSongId = song._id;
  1374. this.openModal({ sector: "station", modal: "editSong" });
  1375. },
  1376. ...mapActions("modals", ["openModal"]),
  1377. ...mapActions("station", [
  1378. "joinStation",
  1379. "updateUserCount",
  1380. "updateUsers",
  1381. "updateCurrentSong",
  1382. "updatePreviousSong",
  1383. "updateSongsList",
  1384. "updateStationPaused",
  1385. "updateLocalPaused",
  1386. "updateNoSong",
  1387. "editStation",
  1388. "updateIfStationIsFavorited"
  1389. ]),
  1390. ...mapActions("editSongModal", ["stopVideo"])
  1391. }
  1392. };
  1393. </script>
  1394. <style lang="scss" scoped>
  1395. @import "../../styles/global.scss";
  1396. .progress {
  1397. width: 50px;
  1398. animation: rotate 0.8s infinite linear;
  1399. border: 8px solid $primary-color;
  1400. border-right-color: transparent;
  1401. height: 50px;
  1402. position: absolute;
  1403. top: 50%;
  1404. left: 50%;
  1405. }
  1406. @keyframes rotate {
  1407. 0% {
  1408. transform: rotate(0deg);
  1409. }
  1410. 100% {
  1411. transform: rotate(360deg);
  1412. }
  1413. }
  1414. .experimental {
  1415. display: none !important;
  1416. }
  1417. #player-debug-box {
  1418. .box-body {
  1419. flex-direction: column;
  1420. b {
  1421. color: #000;
  1422. }
  1423. }
  1424. }
  1425. .night-mode {
  1426. #currently-playing-container,
  1427. #about-station-container,
  1428. #control-bar-container,
  1429. .player-container.nothing-here-text {
  1430. background-color: $night-mode-bg-secondary !important;
  1431. }
  1432. #video-container,
  1433. #control-bar-container {
  1434. border: 0 !important;
  1435. }
  1436. #dropdown-toggle {
  1437. background-color: $dark-grey !important;
  1438. border: 0;
  1439. i {
  1440. color: #fff;
  1441. }
  1442. }
  1443. }
  1444. #station-outer-container {
  1445. margin: 0 auto;
  1446. padding: 20px 40px;
  1447. height: 100%;
  1448. width: 100%;
  1449. max-width: 1800px;
  1450. display: flex;
  1451. #station-inner-container {
  1452. height: 100%;
  1453. width: 100%;
  1454. min-height: calc(100vh - 64px - 190px);
  1455. display: flex;
  1456. flex-direction: row;
  1457. flex-wrap: wrap;
  1458. .row {
  1459. display: flex;
  1460. flex-direction: row;
  1461. max-width: 100%;
  1462. }
  1463. .column {
  1464. display: flex;
  1465. flex-direction: column;
  1466. }
  1467. .quadrant {
  1468. border-radius: 5px;
  1469. margin: 10px;
  1470. flex-grow: 1;
  1471. }
  1472. .quadrant:not(#sidebar-container) {
  1473. background-color: #fff;
  1474. border: 1px solid $light-grey-2;
  1475. }
  1476. #station-left-column {
  1477. padding: 0;
  1478. }
  1479. #station-right-column {
  1480. max-width: 650px;
  1481. padding: 0;
  1482. }
  1483. #about-station-container {
  1484. padding: 20px;
  1485. display: flex;
  1486. flex-direction: column;
  1487. flex-grow: unset;
  1488. #station-info {
  1489. #station-name {
  1490. flex-direction: row !important;
  1491. h1 {
  1492. margin: 0;
  1493. font-size: 36px;
  1494. line-height: 0.8;
  1495. }
  1496. i {
  1497. margin-left: 10px;
  1498. font-size: 30px;
  1499. color: $yellow;
  1500. }
  1501. }
  1502. p {
  1503. max-width: 700px;
  1504. margin-bottom: 10px;
  1505. }
  1506. }
  1507. #admin-buttons {
  1508. display: flex;
  1509. .button {
  1510. margin: 3px;
  1511. }
  1512. }
  1513. }
  1514. #current-next-row {
  1515. display: flex;
  1516. flex-direction: row;
  1517. #currently-playing-container,
  1518. #next-up-container {
  1519. overflow: hidden;
  1520. flex-basis: 50%;
  1521. .nothing-here-text {
  1522. height: 100%;
  1523. }
  1524. }
  1525. }
  1526. .player-container {
  1527. height: inherit;
  1528. background-color: #fff;
  1529. display: flex;
  1530. flex-direction: column;
  1531. border: 1px solid $light-grey-2;
  1532. border-radius: 5px;
  1533. overflow: hidden;
  1534. flex-grow: 1;
  1535. &.nothing-here-text {
  1536. border: 1px solid $light-grey-2;
  1537. border-radius: 5px;
  1538. }
  1539. #video-container {
  1540. width: 100%;
  1541. height: 100%;
  1542. .player-cannot-autoplay {
  1543. position: relative;
  1544. width: 100%;
  1545. height: 100%;
  1546. bottom: calc(100% + 5px);
  1547. background: rgba(3, 169, 244, 0.95);
  1548. display: flex;
  1549. align-items: center;
  1550. justify-content: center;
  1551. p {
  1552. color: $white;
  1553. font-size: 26px;
  1554. text-align: center;
  1555. }
  1556. }
  1557. }
  1558. #seeker-bar-container {
  1559. background-color: #fff;
  1560. position: relative;
  1561. height: 7px;
  1562. display: block;
  1563. width: 100%;
  1564. overflow: hidden;
  1565. #seeker-bar {
  1566. background-color: $musare-blue;
  1567. top: 0;
  1568. left: 0;
  1569. bottom: 0;
  1570. position: absolute;
  1571. }
  1572. }
  1573. #control-bar-container {
  1574. display: flex;
  1575. justify-content: space-around;
  1576. padding: 10px 0;
  1577. width: 100%;
  1578. background: #fff;
  1579. flex-direction: column;
  1580. flex-flow: wrap;
  1581. .button:not(#dropdown-toggle) {
  1582. width: 75px;
  1583. }
  1584. #left-buttons,
  1585. #right-buttons {
  1586. margin: 3px;
  1587. }
  1588. #left-buttons {
  1589. display: flex;
  1590. .button:not(:first-of-type) {
  1591. margin-left: 5px;
  1592. }
  1593. }
  1594. #duration {
  1595. margin: 3px;
  1596. display: flex;
  1597. align-items: center;
  1598. p {
  1599. font-size: 22px;
  1600. /** prevents duration width slightly varying and shifting other controls slightly */
  1601. width: 150px;
  1602. text-align: center;
  1603. }
  1604. }
  1605. #volume-control {
  1606. margin: 3px;
  1607. margin-top: 0;
  1608. display: flex;
  1609. align-items: center;
  1610. cursor: pointer;
  1611. .volume-slider {
  1612. width: 100%;
  1613. padding: 0 15px;
  1614. background: transparent;
  1615. min-width: 100px;
  1616. }
  1617. input[type="range"] {
  1618. -webkit-appearance: none;
  1619. margin: 7.3px 0;
  1620. }
  1621. input[type="range"]:focus {
  1622. outline: none;
  1623. }
  1624. input[type="range"]::-webkit-slider-runnable-track {
  1625. width: 100%;
  1626. height: 5.2px;
  1627. cursor: pointer;
  1628. box-shadow: 0;
  1629. background: $light-grey-2;
  1630. border-radius: 0;
  1631. border: 0;
  1632. }
  1633. input[type="range"]::-webkit-slider-thumb {
  1634. box-shadow: 0;
  1635. border: 0;
  1636. height: 19px;
  1637. width: 19px;
  1638. border-radius: 15px;
  1639. background: $primary-color;
  1640. cursor: pointer;
  1641. -webkit-appearance: none;
  1642. margin-top: -6.5px;
  1643. }
  1644. input[type="range"]::-moz-range-track {
  1645. width: 100%;
  1646. height: 5.2px;
  1647. cursor: pointer;
  1648. box-shadow: 0;
  1649. background: $light-grey-2;
  1650. border-radius: 0;
  1651. border: 0;
  1652. }
  1653. input[type="range"]::-moz-range-thumb {
  1654. box-shadow: 0;
  1655. border: 0;
  1656. height: 19px;
  1657. width: 19px;
  1658. border-radius: 15px;
  1659. background: $primary-color;
  1660. cursor: pointer;
  1661. -webkit-appearance: none;
  1662. margin-top: -6.5px;
  1663. }
  1664. input[type="range"]::-ms-track {
  1665. width: 100%;
  1666. height: 5.2px;
  1667. cursor: pointer;
  1668. box-shadow: 0;
  1669. background: $light-grey-2;
  1670. border-radius: 1.3px;
  1671. }
  1672. input[type="range"]::-ms-fill-lower {
  1673. background: $light-grey-2;
  1674. border: 0;
  1675. border-radius: 0;
  1676. box-shadow: 0;
  1677. }
  1678. input[type="range"]::-ms-fill-upper {
  1679. background: $light-grey-2;
  1680. border: 0;
  1681. border-radius: 0;
  1682. box-shadow: 0;
  1683. }
  1684. input[type="range"]::-ms-thumb {
  1685. box-shadow: 0;
  1686. border: 0;
  1687. height: 15px;
  1688. width: 15px;
  1689. border-radius: 15px;
  1690. background: $primary-color;
  1691. cursor: pointer;
  1692. -webkit-appearance: none;
  1693. margin-top: 1.5px;
  1694. }
  1695. }
  1696. #right-buttons {
  1697. display: flex;
  1698. #dropdown-toggle {
  1699. width: 35px;
  1700. }
  1701. #dislike-song,
  1702. #add-song-to-playlist .button:not(#dropdown-toggle) {
  1703. margin-left: 5px;
  1704. }
  1705. #ratings {
  1706. display: flex;
  1707. #like-song:hover,
  1708. #like-song.liked {
  1709. background-color: darken($green, 5%) !important;
  1710. }
  1711. #dislike-song:hover,
  1712. #dislike-song.disliked {
  1713. background-color: darken($red, 5%) !important;
  1714. }
  1715. &.liked #dislike-song,
  1716. &.disliked #like-song {
  1717. background-color: $grey !important;
  1718. &:hover {
  1719. background-color: darken($grey, 5%) !important;
  1720. }
  1721. }
  1722. }
  1723. #add-song-to-playlist {
  1724. display: flex;
  1725. flex-direction: column-reverse;
  1726. .control {
  1727. width: fit-content;
  1728. margin-bottom: 0 !important;
  1729. }
  1730. }
  1731. }
  1732. }
  1733. }
  1734. #sidebar-container {
  1735. border-top: 0;
  1736. position: relative;
  1737. height: inherit;
  1738. }
  1739. }
  1740. }
  1741. .footer {
  1742. margin-top: 30px;
  1743. }
  1744. /deep/ .nothing-here-text {
  1745. display: flex;
  1746. align-items: center;
  1747. justify-content: center;
  1748. }
  1749. @media (max-width: 1300px) {
  1750. #station-outer-container {
  1751. padding: 10px;
  1752. height: unset;
  1753. max-width: 700px;
  1754. #station-inner-container {
  1755. flex-direction: column;
  1756. #station-left-column {
  1757. #current-next-row {
  1758. flex-direction: column;
  1759. }
  1760. #video-container {
  1761. min-height: 200px;
  1762. }
  1763. #control-bar-container {
  1764. #duration,
  1765. #volume-control,
  1766. #right-buttons,
  1767. #left-buttons {
  1768. margin-bottom: 5px;
  1769. justify-content: center;
  1770. }
  1771. #duration {
  1772. order: 1;
  1773. }
  1774. #volume-control {
  1775. order: 2;
  1776. max-width: 400px;
  1777. }
  1778. #right-buttons {
  1779. order: 3;
  1780. flex-wrap: wrap;
  1781. #ratings {
  1782. flex-wrap: wrap;
  1783. }
  1784. }
  1785. #left-buttons {
  1786. order: 4;
  1787. flex-wrap: wrap;
  1788. }
  1789. }
  1790. }
  1791. #station-right-column {
  1792. max-width: unset;
  1793. #about-station-container #admin-buttons {
  1794. flex-wrap: wrap;
  1795. }
  1796. #sidebar-container {
  1797. min-height: 350px;
  1798. }
  1799. }
  1800. }
  1801. }
  1802. }
  1803. </style>