index.vue 61 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637
  1. <template>
  2. <div>
  3. <metadata v-if="exists && !loading" :title="`${station.displayName}`" />
  4. <metadata v-else-if="!exists && !loading" :title="`Not found`" />
  5. <div id="page-loader-container" v-if="loading">
  6. <content-loader
  7. width="1920"
  8. height="1080"
  9. :primary-color="nightmode ? '#222' : '#fff'"
  10. :secondary-color="nightmode ? '#444' : '#ddd'"
  11. preserve-aspect-ratio="none"
  12. id="page-loader-content"
  13. >
  14. <rect x="100" y="108" rx="5" ry="5" width="1048" height="672" />
  15. <rect x="100" y="810" rx="5" ry="5" width="1048" height="110" />
  16. <rect x="1190" y="110" rx="5" ry="5" width="630" height="149" />
  17. <rect x="1190" y="288" rx="5" ry="5" width="630" height="630" />
  18. </content-loader>
  19. <content-loader
  20. width="1920"
  21. height="1080"
  22. :primary-color="nightmode ? '#222' : '#fff'"
  23. :secondary-color="nightmode ? '#444' : '#ddd'"
  24. preserve-aspect-ratio="none"
  25. id="page-loader-layout"
  26. >
  27. <rect x="0" y="0" rx="0" ry="0" width="1920" height="64" />
  28. <rect x="0" y="980" rx="0" ry="0" width="1920" height="100" />
  29. </content-loader>
  30. </div>
  31. <!-- More simplistic loading animation for mobile users -->
  32. <div v-show="loading" id="mobile-progress-animation" />
  33. <ul
  34. v-if="
  35. currentSong &&
  36. (currentSong.youtubeId === 'l9PxOanFjxQ' ||
  37. currentSong.youtubeId === 'xKVcVSYmesU' ||
  38. currentSong.youtubeId === '60ItHLz5WEA')
  39. "
  40. class="bg-bubbles"
  41. >
  42. <li></li>
  43. <li></li>
  44. <li></li>
  45. <li></li>
  46. <li></li>
  47. <li></li>
  48. <li></li>
  49. <li></li>
  50. <li></li>
  51. <li></li>
  52. </ul>
  53. <div v-show="!loading">
  54. <main-header v-if="exists" />
  55. <div
  56. id="station-outer-container"
  57. :style="[!exists ? { margin: 0, padding: 0 } : {}]"
  58. >
  59. <div
  60. v-show="exists"
  61. id="station-inner-container"
  62. :class="{ 'nothing-here': noSong }"
  63. >
  64. <div id="station-left-column" class="column">
  65. <div id="about-station-container" class="quadrant">
  66. <div id="station-info">
  67. <div class="row" id="station-name">
  68. <h1>{{ station.displayName }}</h1>
  69. <a href="#">
  70. <!-- Favorite Station Button -->
  71. <i
  72. v-if="
  73. loggedIn && station.isFavorited
  74. "
  75. @click.prevent="unfavoriteStation()"
  76. content="Unfavorite Station"
  77. v-tippy
  78. class="material-icons"
  79. >star</i
  80. >
  81. <i
  82. v-if="
  83. loggedIn && !station.isFavorited
  84. "
  85. @click.prevent="favoriteStation()"
  86. class="material-icons"
  87. content="Favorite Station"
  88. v-tippy
  89. >star_border</i
  90. >
  91. </a>
  92. <i
  93. class="material-icons stationMode"
  94. :content="
  95. station.partyMode
  96. ? 'Station in Party mode'
  97. : 'Station in Playlist mode'
  98. "
  99. v-tippy
  100. >{{
  101. station.partyMode
  102. ? "emoji_people"
  103. : "playlist_play"
  104. }}</i
  105. >
  106. </div>
  107. <p>{{ station.description }}</p>
  108. </div>
  109. <div id="admin-buttons" v-if="isOwnerOrAdmin()">
  110. <!-- (Admin) Pause/Resume Button -->
  111. <button
  112. class="button is-danger"
  113. v-if="stationPaused"
  114. @click="resumeStation()"
  115. >
  116. <i class="material-icons icon-with-button"
  117. >play_arrow</i
  118. >
  119. <span class="optional-desktop-only-text">
  120. Resume Station
  121. </span>
  122. </button>
  123. <button
  124. class="button is-danger"
  125. @click="pauseStation()"
  126. v-else
  127. >
  128. <i class="material-icons icon-with-button"
  129. >pause</i
  130. >
  131. <span class="optional-desktop-only-text">
  132. Pause Station
  133. </span>
  134. </button>
  135. <!-- (Admin) Skip Button -->
  136. <button
  137. class="button is-danger"
  138. @click="skipStation()"
  139. >
  140. <i class="material-icons icon-with-button"
  141. >skip_next</i
  142. >
  143. <span class="optional-desktop-only-text">
  144. Force Skip
  145. </span>
  146. </button>
  147. <!-- (Admin) Station Settings Button -->
  148. <button
  149. class="button is-primary"
  150. @click="openModal('manageStation')"
  151. >
  152. <i class="material-icons icon-with-button"
  153. >settings</i
  154. >
  155. <span class="optional-desktop-only-text">
  156. Manage Station
  157. </span>
  158. </button>
  159. </div>
  160. </div>
  161. <div id="sidebar-container" class="quadrant">
  162. <station-sidebar />
  163. </div>
  164. </div>
  165. <div id="station-right-column" class="column">
  166. <div class="player-container quadrant" v-show="!noSong">
  167. <div id="video-container">
  168. <div
  169. id="stationPlayer"
  170. style="
  171. width: 100%;
  172. height: 100%;
  173. min-height: 200px;
  174. "
  175. />
  176. <div
  177. class="player-cannot-autoplay"
  178. v-if="!canAutoplay"
  179. @click="
  180. increaseVolume() && decreaseVolume()
  181. "
  182. >
  183. <p>
  184. Please click anywhere on the screen for
  185. the video to start
  186. </p>
  187. </div>
  188. </div>
  189. <div id="seeker-bar-container">
  190. <div
  191. id="seeker-bar"
  192. :style="{
  193. width: `${seekerbarPercentage}%`
  194. }"
  195. :class="{
  196. nyan:
  197. currentSong &&
  198. currentSong.youtubeId ===
  199. 'QH2-TGUlwu4'
  200. }"
  201. />
  202. <img
  203. v-if="
  204. currentSong &&
  205. currentSong.youtubeId ===
  206. 'QH2-TGUlwu4'
  207. "
  208. src="https://freepngimg.com/thumb/nyan_cat/1-2-nyan-cat-free-download-png.png"
  209. :style="{
  210. position: 'absolute',
  211. top: `-10px`,
  212. left: `${seekerbarPercentage}%`,
  213. width: '50px'
  214. }"
  215. />
  216. <img
  217. v-if="
  218. currentSong &&
  219. (currentSong.youtubeId ===
  220. 'DtVBCG6ThDk' ||
  221. currentSong.youtubeId ===
  222. 'sI66hcu9fIs' ||
  223. currentSong.youtubeId ===
  224. 'iYYRH4apXDo' ||
  225. currentSong.youtubeId ===
  226. 'tRcPA7Fzebw')
  227. "
  228. src="/assets/rocket.svg"
  229. :style="{
  230. position: 'absolute',
  231. top: `-21px`,
  232. left: `calc(${seekerbarPercentage}% - 35px)`,
  233. width: '50px',
  234. transform: 'rotate(45deg)'
  235. }"
  236. />
  237. <img
  238. v-if="
  239. currentSong &&
  240. currentSong.youtubeId ===
  241. 'jofNR_WkoCE'
  242. "
  243. src="/assets/fox.svg"
  244. :style="{
  245. position: 'absolute',
  246. top: `-21px`,
  247. left: `calc(${seekerbarPercentage}% - 35px)`,
  248. width: '50px',
  249. transform: 'scaleX(-1)',
  250. opacity: 1
  251. }"
  252. />
  253. <img
  254. v-if="
  255. currentSong &&
  256. (currentSong.youtubeId ===
  257. 'l9PxOanFjxQ' ||
  258. currentSong.youtubeId ===
  259. 'xKVcVSYmesU' ||
  260. currentSong.youtubeId ===
  261. '60ItHLz5WEA')
  262. "
  263. src="/assets/old_logo.png"
  264. :style="{
  265. position: 'absolute',
  266. top: `-9px`,
  267. left: `calc(${seekerbarPercentage}% - 22px)`,
  268. 'background-color': 'rgb(96, 199, 169)',
  269. width: '25px',
  270. height: '25px',
  271. 'border-radius': '25px'
  272. }"
  273. />
  274. </div>
  275. <div id="control-bar-container">
  276. <div id="left-buttons">
  277. <!-- Debug Box -->
  278. <button
  279. v-if="frontendDevMode === 'development'"
  280. class="button is-primary"
  281. @click="togglePlayerDebugBox()"
  282. @dblclick="resetPlayerDebugBox()"
  283. content="Debug"
  284. v-tippy
  285. >
  286. <i
  287. class="material-icons icon-with-button"
  288. >
  289. bug_report
  290. </i>
  291. </button>
  292. <!-- Local Pause/Resume Button -->
  293. <button
  294. class="button is-primary"
  295. @click="resumeLocalStation()"
  296. id="local-resume"
  297. v-if="localPaused"
  298. content="Unpause Playback"
  299. v-tippy
  300. >
  301. <i class="material-icons">play_arrow</i>
  302. </button>
  303. <button
  304. class="button is-primary"
  305. @click="pauseLocalStation()"
  306. id="local-pause"
  307. v-else
  308. content="Pause Playback"
  309. v-tippy
  310. >
  311. <i class="material-icons">pause</i>
  312. </button>
  313. <!-- Vote to Skip Button -->
  314. <button
  315. v-if="loggedIn"
  316. class="button is-primary"
  317. @click="voteSkipStation()"
  318. content="Vote to Skip Song"
  319. v-tippy
  320. >
  321. <i
  322. class="material-icons icon-with-button"
  323. >skip_next</i
  324. >
  325. {{ currentSong.skipVotes }}
  326. </button>
  327. <button
  328. v-else
  329. class="button is-primary disabled"
  330. content="Login to vote to skip songs"
  331. v-tippy
  332. >
  333. <i
  334. class="material-icons icon-with-button"
  335. >skip_next</i
  336. >
  337. {{ currentSong.skipVotes }}
  338. </button>
  339. </div>
  340. <div id="duration">
  341. <p>
  342. {{ timeElapsed }} /
  343. {{
  344. utils.formatTime(
  345. currentSong.duration
  346. )
  347. }}
  348. </p>
  349. </div>
  350. <p id="volume-control">
  351. <i
  352. v-if="muted"
  353. class="material-icons"
  354. @click="toggleMute()"
  355. content="Unmute"
  356. v-tippy
  357. >volume_mute</i
  358. >
  359. <i
  360. v-else
  361. class="material-icons"
  362. @click="toggleMute()"
  363. content="Mute"
  364. v-tippy
  365. >volume_down</i
  366. >
  367. <input
  368. v-model="volumeSliderValue"
  369. type="range"
  370. min="0"
  371. max="10000"
  372. class="volume-slider active"
  373. @change="changeVolume()"
  374. @input="changeVolume()"
  375. />
  376. <i
  377. class="material-icons"
  378. @click="increaseVolume()"
  379. content="Increase Volume"
  380. v-tippy
  381. >volume_up</i
  382. >
  383. </p>
  384. <div id="right-buttons" v-if="loggedIn">
  385. <!-- Ratings (Like/Dislike) Buttons -->
  386. <div
  387. id="ratings"
  388. :class="{
  389. liked: liked,
  390. disliked: disliked
  391. }"
  392. >
  393. <!-- Like Song Button -->
  394. <button
  395. class="button is-success like-song"
  396. id="like-song"
  397. @click="toggleLike()"
  398. content="Like Song"
  399. v-tippy
  400. >
  401. <i
  402. class="material-icons icon-with-button"
  403. :class="{ liked: liked }"
  404. >thumb_up_alt</i
  405. >{{ currentSong.likes }}
  406. </button>
  407. <!-- Dislike Song Button -->
  408. <button
  409. class="button is-danger dislike-song"
  410. id="dislike-song"
  411. @click="toggleDislike()"
  412. content="Dislike Song"
  413. v-tippy
  414. >
  415. <i
  416. class="material-icons icon-with-button"
  417. :class="{
  418. disliked: disliked
  419. }"
  420. >thumb_down_alt</i
  421. >{{ currentSong.dislikes }}
  422. </button>
  423. </div>
  424. <!-- Add Song To Playlist Button & Dropdown -->
  425. <add-to-playlist-dropdown
  426. :song="currentSong"
  427. placement="top-end"
  428. >
  429. <div
  430. slot="button"
  431. id="add-song-to-playlist"
  432. content="Add Song to Playlist"
  433. v-tippy
  434. >
  435. <div class="control has-addons">
  436. <button
  437. class="button is-primary"
  438. >
  439. <i class="material-icons"
  440. >playlist_add</i
  441. >
  442. </button>
  443. <button
  444. class="button"
  445. id="dropdown-toggle"
  446. >
  447. <i class="material-icons">
  448. {{
  449. showPlaylistDropdown
  450. ? "expand_more"
  451. : "expand_less"
  452. }}
  453. </i>
  454. </button>
  455. </div>
  456. </div>
  457. </add-to-playlist-dropdown>
  458. </div>
  459. <div id="right-buttons" v-else>
  460. <!-- Disabled Ratings (Like/Dislike) Buttons -->
  461. <div id="ratings">
  462. <!-- Disabled Like Song Button -->
  463. <button
  464. class="button is-success disabled"
  465. id="like-song"
  466. content="Login to like songs"
  467. v-tippy
  468. >
  469. <i
  470. class="material-icons icon-with-button"
  471. >thumb_up_alt</i
  472. >{{ currentSong.likes }}
  473. </button>
  474. <!-- Disabled Dislike Song Button -->
  475. <button
  476. class="button is-danger disabled"
  477. id="dislike-song"
  478. content="Login to dislike songs"
  479. v-tippy
  480. >
  481. <i
  482. class="material-icons icon-with-button"
  483. >thumb_down_alt</i
  484. >{{ currentSong.dislikes }}
  485. </button>
  486. </div>
  487. <!-- Disabled Add Song To Playlist Button & Dropdown -->
  488. <div id="add-song-to-playlist">
  489. <div class="control has-addons">
  490. <button
  491. class="button is-primary disabled"
  492. content="Login to add songs to playlist"
  493. v-tippy
  494. >
  495. <i class="material-icons"
  496. >queue</i
  497. >
  498. </button>
  499. </div>
  500. </div>
  501. </div>
  502. </div>
  503. </div>
  504. <p
  505. class="player-container nothing-here-text"
  506. v-if="noSong"
  507. >
  508. No song is currently playing
  509. </p>
  510. <div v-if="!noSong" id="current-next-row">
  511. <div
  512. id="currently-playing-container"
  513. class="quadrant"
  514. :class="{ 'no-currently-playing': noSong }"
  515. >
  516. <song-item
  517. :song="currentSong"
  518. :duration="false"
  519. :large-thumbnail="true"
  520. :requested-by="
  521. station.type === 'community' &&
  522. station.partyMode === true
  523. "
  524. header="Currently Playing.."
  525. />
  526. <!-- <p v-else class="nothing-here-text">
  527. No song is currently playing
  528. </p> -->
  529. </div>
  530. <div
  531. v-if="nextSong"
  532. id="next-up-container"
  533. class="quadrant"
  534. >
  535. <song-item
  536. :song="nextSong"
  537. :duration="false"
  538. :large-thumbnail="true"
  539. :requested-by="
  540. station.type === 'community' &&
  541. station.partyMode === true
  542. "
  543. header="Next Up.."
  544. />
  545. </div>
  546. </div>
  547. </div>
  548. </div>
  549. <request-song v-if="modals.requestSong" />
  550. <edit-playlist v-if="modals.editPlaylist" />
  551. <create-playlist v-if="modals.createPlaylist" />
  552. <manage-station
  553. v-if="modals.manageStation"
  554. :station-id="station._id"
  555. sector="station"
  556. />
  557. <report v-if="modals.report" />
  558. </div>
  559. <main-footer v-if="exists" />
  560. </div>
  561. <edit-song v-if="modals.editSong" song-type="songs" sector="station" />
  562. <floating-box id="player-debug-box" ref="playerDebugBox">
  563. <template #body>
  564. <span><b>YouTube id</b>: {{ currentSong.youtubeId }}</span>
  565. <span><b>Duration</b>: {{ currentSong.duration }}</span>
  566. <span
  567. ><b>Skip duration</b>: {{ currentSong.skipDuration }}</span
  568. >
  569. <span><b>Can autoplay</b>: {{ canAutoplay }}</span>
  570. <span
  571. ><b>Attempts to play video</b>:
  572. {{ attemptsToPlayVideo }}</span
  573. >
  574. <span
  575. ><b>Last time requested if can autoplay</b>:
  576. {{ lastTimeRequestedIfCanAutoplay }}</span
  577. >
  578. <span><b>Loading</b>: {{ loading }}</span>
  579. <span><b>Playback rate</b>: {{ playbackRate }}</span>
  580. <span><b>Player ready</b>: {{ playerReady }}</span>
  581. <span><b>Ready</b>: {{ ready }}</span>
  582. <span><b>Seeking</b>: {{ seeking }}</span>
  583. <span><b>System difference</b>: {{ systemDifference }}</span>
  584. <span><b>Time before paused</b>: {{ timeBeforePause }}</span>
  585. <span><b>Time elapsed</b>: {{ timeElapsed }}</span>
  586. <span><b>Time paused</b>: {{ timePaused }}</span>
  587. <span><b>Volume slider value</b>: {{ volumeSliderValue }}</span>
  588. <span><b>Local paused</b>: {{ localPaused }}</span>
  589. <span><b>No song</b>: {{ noSong }}</span>
  590. <span
  591. ><b>Party playlists selected</b>: {{ partyPlaylists }}</span
  592. >
  593. <span><b>Station paused</b>: {{ stationPaused }}</span>
  594. <span
  595. ><b>Station Included Playlists</b>:
  596. {{ station.includedPlaylists.join(", ") }}</span
  597. >
  598. <span
  599. ><b>Station Excluded Playlists</b>:
  600. {{ station.excludedPlaylists.join(", ") }}</span
  601. >
  602. </template>
  603. </floating-box>
  604. <Z404 v-if="!exists"></Z404>
  605. </div>
  606. </template>
  607. <script>
  608. import { mapState, mapActions, mapGetters } from "vuex";
  609. import Toast from "toasters";
  610. import { ContentLoader } from "vue-content-loader";
  611. import aw from "@/aw";
  612. import ws from "@/ws";
  613. import keyboardShortcuts from "@/keyboardShortcuts";
  614. import MainHeader from "@/components/layout/MainHeader.vue";
  615. import MainFooter from "@/components/layout/MainFooter.vue";
  616. import FloatingBox from "@/components/FloatingBox.vue";
  617. import AddToPlaylistDropdown from "@/components/AddToPlaylistDropdown.vue";
  618. import SongItem from "@/components/SongItem.vue";
  619. import Z404 from "../404.vue";
  620. import utils from "../../../js/utils";
  621. import StationSidebar from "./Sidebar/index.vue";
  622. export default {
  623. components: {
  624. ContentLoader,
  625. MainHeader,
  626. MainFooter,
  627. RequestSong: () => import("@/components/modals/RequestSong.vue"),
  628. EditPlaylist: () => import("@/components/modals/EditPlaylist.vue"),
  629. CreatePlaylist: () => import("@/components/modals/CreatePlaylist.vue"),
  630. ManageStation: () =>
  631. import("@/components/modals/ManageStation/index.vue"),
  632. Report: () => import("@/components/modals/Report.vue"),
  633. Z404,
  634. FloatingBox,
  635. StationSidebar,
  636. AddToPlaylistDropdown,
  637. EditSong: () => import("@/components/modals/EditSong.vue"),
  638. SongItem
  639. },
  640. data() {
  641. return {
  642. utils,
  643. title: "Station",
  644. loading: true,
  645. ready: false,
  646. exists: true,
  647. playerReady: false,
  648. player: undefined,
  649. timePaused: 0,
  650. muted: false,
  651. timeElapsed: "0:00",
  652. liked: false,
  653. disliked: false,
  654. timeBeforePause: 0,
  655. skipVotes: 0,
  656. systemDifference: 0,
  657. attemptsToPlayVideo: 0,
  658. canAutoplay: true,
  659. lastTimeRequestedIfCanAutoplay: 0,
  660. seeking: false,
  661. playbackRate: 1,
  662. volumeSliderValue: 0,
  663. showPlaylistDropdown: false,
  664. theme: "var(--primary-color)",
  665. seekerbarPercentage: 0,
  666. frontendDevMode: "production",
  667. activityWatchVideoDataInterval: null,
  668. activityWatchVideoLastStatus: "",
  669. activityWatchVideoLastYouTubeId: "",
  670. activityWatchVideoLastStartDuration: ""
  671. };
  672. },
  673. computed: {
  674. ...mapState("modalVisibility", {
  675. modals: state => state.modals
  676. }),
  677. ...mapState("station", {
  678. station: state => state.station,
  679. currentSong: state => state.currentSong,
  680. nextSong: state => state.nextSong,
  681. songsList: state => state.songsList,
  682. stationPaused: state => state.stationPaused,
  683. localPaused: state => state.localPaused,
  684. noSong: state => state.noSong,
  685. partyPlaylists: state => state.partyPlaylists,
  686. includedPlaylists: state => state.includedPlaylists,
  687. excludedPlaylists: state => state.excludedPlaylists
  688. }),
  689. ...mapState({
  690. loggedIn: state => state.user.auth.loggedIn,
  691. userId: state => state.user.auth.userId,
  692. role: state => state.user.auth.role,
  693. nightmode: state => state.user.preferences.nightmode,
  694. autoSkipDisliked: state => state.user.preferences.autoSkipDisliked
  695. }),
  696. ...mapGetters({
  697. socket: "websockets/getSocket"
  698. })
  699. },
  700. async mounted() {
  701. window.scrollTo(0, 0);
  702. Date.currently = () => {
  703. return new Date().getTime() + this.systemDifference;
  704. };
  705. this.stationIdentifier = this.$route.params.id;
  706. window.stationInterval = 0;
  707. this.activityWatchVideoDataInterval = setInterval(() => {
  708. this.sendActivityWatchVideoData();
  709. }, 1000);
  710. if (this.socket.readyState === 1) this.join();
  711. ws.onConnect(() => this.join());
  712. this.frontendDevMode = await lofig.get("mode");
  713. this.socket.dispatch(
  714. "stations.existsByName",
  715. this.stationIdentifier,
  716. res => {
  717. if (res.status === "error" || !res.data.exists) {
  718. // station identifier may be using stationid instead
  719. this.socket.dispatch(
  720. "stations.existsById",
  721. this.stationIdentifier,
  722. res => {
  723. if (res.status === "error" || !res.data.exists) {
  724. this.loading = false;
  725. this.exists = false;
  726. }
  727. }
  728. );
  729. }
  730. }
  731. );
  732. this.socket.on("event:songs.next", res => {
  733. const previousSong = this.currentSong.youtubeId
  734. ? this.currentSong
  735. : null;
  736. this.updatePreviousSong(previousSong);
  737. const { currentSong } = res.data;
  738. this.updateCurrentSong(currentSong || {});
  739. let nextSong = null;
  740. if (this.songsList[1]) {
  741. nextSong = this.songsList[1].youtubeId
  742. ? this.songsList[1]
  743. : null;
  744. }
  745. this.updateNextSong(nextSong);
  746. this.startedAt = res.data.startedAt;
  747. this.updateStationPaused(res.data.paused);
  748. this.timePaused = res.data.timePaused;
  749. if (currentSong) {
  750. this.updateNoSong(false);
  751. if (!this.playerReady) this.youtubeReady();
  752. else this.playVideo();
  753. this.socket.dispatch(
  754. "songs.getOwnSongRatings",
  755. currentSong.youtubeId,
  756. res => {
  757. if (
  758. res.status === "success" &&
  759. this.currentSong.youtubeId === res.data.youtubeId
  760. ) {
  761. this.liked = res.data.liked;
  762. this.disliked = res.data.disliked;
  763. if (
  764. this.autoSkipDisliked &&
  765. res.data.disliked === true
  766. ) {
  767. this.voteSkipStation();
  768. new Toast(
  769. "Automatically voted to skip disliked song."
  770. );
  771. }
  772. }
  773. }
  774. );
  775. } else {
  776. if (this.playerReady) this.player.pauseVideo();
  777. this.updateNoSong(true);
  778. }
  779. });
  780. this.socket.on("event:stations.pause", res => {
  781. this.pausedAt = res.data.pausedAt;
  782. this.updateStationPaused(true);
  783. this.pauseLocalPlayer();
  784. });
  785. this.socket.on("event:stations.resume", res => {
  786. this.timePaused = res.data.timePaused;
  787. this.updateStationPaused(false);
  788. if (!this.localPaused) this.resumeLocalPlayer();
  789. });
  790. this.socket.on("event:stations.remove", () => {
  791. window.location.href = "/";
  792. return true;
  793. });
  794. this.socket.on("event:song.like", res => {
  795. if (!this.noSong) {
  796. if (res.data.youtubeId === this.currentSong.youtubeId) {
  797. this.currentSong.dislikes = res.data.dislikes;
  798. this.currentSong.likes = res.data.likes;
  799. }
  800. }
  801. });
  802. this.socket.on("event:song.dislike", res => {
  803. if (!this.noSong) {
  804. if (res.data.youtubeId === this.currentSong.youtubeId) {
  805. this.currentSong.dislikes = res.data.dislikes;
  806. this.currentSong.likes = res.data.likes;
  807. }
  808. }
  809. });
  810. this.socket.on("event:song.unlike", res => {
  811. if (!this.noSong) {
  812. if (res.data.youtubeId === this.currentSong.youtubeId) {
  813. this.currentSong.dislikes = res.data.dislikes;
  814. this.currentSong.likes = res.data.likes;
  815. }
  816. }
  817. });
  818. this.socket.on("event:song.undislike", res => {
  819. if (!this.noSong) {
  820. if (res.data.youtubeId === this.currentSong.youtubeId) {
  821. this.currentSong.dislikes = res.data.dislikes;
  822. this.currentSong.likes = res.data.likes;
  823. }
  824. }
  825. });
  826. this.socket.on("event:song.newRatings", res => {
  827. if (!this.noSong) {
  828. if (res.data.youtubeId === this.currentSong.youtubeId) {
  829. this.liked = res.data.liked;
  830. this.disliked = res.data.disliked;
  831. }
  832. }
  833. });
  834. this.socket.on("event:queue.update", res => {
  835. this.updateSongsList(res.data.queue);
  836. let nextSong = null;
  837. if (this.songsList[0])
  838. nextSong = this.songsList[0].youtubeId
  839. ? this.songsList[0]
  840. : null;
  841. this.updateNextSong(nextSong);
  842. this.addPartyPlaylistSongToQueue();
  843. });
  844. this.socket.on("event:queue.repositionSong", res => {
  845. this.repositionSongInList(res.data.song);
  846. let nextSong = null;
  847. if (this.songsList[0])
  848. nextSong = this.songsList[0].youtubeId
  849. ? this.songsList[0]
  850. : null;
  851. this.updateNextSong(nextSong);
  852. });
  853. this.socket.on("event:song.voteSkipSong", () => {
  854. if (this.currentSong) this.currentSong.skipVotes += 1;
  855. });
  856. this.socket.on("event:privatePlaylist.selected", res => {
  857. if (this.station.type === "community")
  858. this.station.privatePlaylist = res.data.playlistId;
  859. });
  860. this.socket.on("event:privatePlaylist.deselected", () => {
  861. if (this.station.type === "community")
  862. this.station.privatePlaylist = null;
  863. });
  864. this.socket.on("event:partyMode.updated", res => {
  865. if (this.station.type === "community")
  866. this.station.partyMode = res.data.partyMode;
  867. });
  868. this.socket.on("event:station.themeUpdated", res => {
  869. const { theme } = res.data;
  870. this.station.theme = theme;
  871. document.body.style.cssText = `--primary-color: var(--${theme})`;
  872. });
  873. this.socket.on("event:station.updateName", res => {
  874. this.station.name = res.data.name;
  875. // eslint-disable-next-line no-restricted-globals
  876. history.pushState(
  877. {},
  878. null,
  879. `${res.data.name}?${Object.keys(this.$route.query)
  880. .map(key => {
  881. return `${encodeURIComponent(key)}=${encodeURIComponent(
  882. this.$route.query[key]
  883. )}`;
  884. })
  885. .join("&")}`
  886. );
  887. });
  888. this.socket.on("event:station.updateDisplayName", res => {
  889. this.station.displayName = res.data.displayName;
  890. });
  891. this.socket.on("event:station.updateDescription", res => {
  892. this.station.description = res.data.description;
  893. });
  894. // this.socket.on("event:newOfficialPlaylist", res => {
  895. // if (this.station.type === "official")
  896. // this.updateSongsList(res.data.playlist);
  897. // });
  898. this.socket.on("event:users.updated", res =>
  899. this.updateUsers(res.data.users)
  900. );
  901. this.socket.on("event:userCount.updated", res =>
  902. this.updateUserCount(res.data.userCount)
  903. );
  904. this.socket.on("event:queueLockToggled", res => {
  905. this.station.locked = res.data.locked;
  906. });
  907. this.socket.on("event:user.favoritedStation", res => {
  908. if (res.data.stationId === this.station._id)
  909. this.updateIfStationIsFavorited({ isFavorited: true });
  910. });
  911. this.socket.on("event:user.unfavoritedStation", res => {
  912. if (res.data.stationId === this.station._id)
  913. this.updateIfStationIsFavorited({ isFavorited: false });
  914. });
  915. if (JSON.parse(localStorage.getItem("muted"))) {
  916. this.muted = true;
  917. this.player.setVolume(0);
  918. this.volumeSliderValue = 0 * 100;
  919. } else {
  920. let volume = parseFloat(localStorage.getItem("volume"));
  921. volume =
  922. typeof volume === "number" && !Number.isNaN(volume)
  923. ? volume
  924. : 20;
  925. localStorage.setItem("volume", volume);
  926. this.volumeSliderValue = volume * 100;
  927. }
  928. },
  929. beforeDestroy() {
  930. document.body.style.cssText = "";
  931. /** Reset Songslist */
  932. this.updateSongsList([]);
  933. const shortcutNames = [
  934. "station.pauseResume",
  935. "station.skipStation",
  936. "station.lowerVolumeLarge",
  937. "station.lowerVolumeSmall",
  938. "station.increaseVolumeLarge",
  939. "station.increaseVolumeSmall",
  940. "station.toggleDebug"
  941. ];
  942. shortcutNames.forEach(shortcutName => {
  943. keyboardShortcuts.unregisterShortcut(shortcutName);
  944. });
  945. clearInterval(this.activityWatchVideoDataInterval);
  946. this.socket.dispatch("stations.leave", this.station._id, () => {});
  947. this.leaveStation();
  948. },
  949. methods: {
  950. isOwnerOnly() {
  951. return this.loggedIn && this.userId === this.station.owner;
  952. },
  953. isAdminOnly() {
  954. return this.loggedIn && this.role === "admin";
  955. },
  956. isOwnerOrAdmin() {
  957. return this.isOwnerOnly() || this.isAdminOnly();
  958. },
  959. removeFromQueue(youtubeId) {
  960. window.socket.dispatch(
  961. "stations.removeFromQueue",
  962. this.station._id,
  963. youtubeId,
  964. res => {
  965. if (res.status === "success") {
  966. new Toast("Successfully removed song from the queue.");
  967. } else new Toast(res.message);
  968. }
  969. );
  970. },
  971. youtubeReady() {
  972. if (!this.player) {
  973. this.player = new window.YT.Player("stationPlayer", {
  974. height: 270,
  975. width: 480,
  976. videoId: this.currentSong.youtubeId,
  977. host: "https://www.youtube-nocookie.com",
  978. startSeconds:
  979. this.getTimeElapsed() / 1000 +
  980. this.currentSong.skipDuration,
  981. playerVars: {
  982. controls: 0,
  983. iv_load_policy: 3,
  984. rel: 0,
  985. showinfo: 0,
  986. disablekb: 1
  987. },
  988. events: {
  989. onReady: () => {
  990. this.playerReady = true;
  991. let volume = parseInt(
  992. localStorage.getItem("volume")
  993. );
  994. volume = typeof volume === "number" ? volume : 20;
  995. this.player.setVolume(volume);
  996. if (volume > 0) this.player.unMute();
  997. if (this.muted) this.player.mute();
  998. this.playVideo();
  999. },
  1000. onError: err => {
  1001. console.log("error with youtube video", err);
  1002. if (err.data === 150 && this.loggedIn) {
  1003. new Toast(
  1004. "Automatically voted to skip as this song isn't available for you."
  1005. );
  1006. // automatically vote to skip
  1007. this.voteSkipStation();
  1008. // persistent message while song is playing
  1009. const persistentToast = new Toast({
  1010. content:
  1011. "This song is unavailable for you, but is playing for everyone else.",
  1012. persistent: true
  1013. });
  1014. // save current song id
  1015. const erroredYoutubeId = this.currentSong
  1016. .youtubeId;
  1017. // remove persistent toast if video has finished
  1018. window.isSongErroredInterval = setInterval(
  1019. () => {
  1020. if (
  1021. this.currentSong.youtubeId !==
  1022. erroredYoutubeId
  1023. ) {
  1024. persistentToast.destroy();
  1025. clearInterval(
  1026. window.isSongErroredInterval
  1027. );
  1028. }
  1029. },
  1030. 150
  1031. );
  1032. } else {
  1033. new Toast(
  1034. "There has been an error with the YouTube Embed"
  1035. );
  1036. }
  1037. },
  1038. onStateChange: event => {
  1039. if (
  1040. event.data === window.YT.PlayerState.PLAYING &&
  1041. this.videoLoading === true
  1042. ) {
  1043. this.videoLoading = false;
  1044. this.player.seekTo(
  1045. this.getTimeElapsed() / 1000 +
  1046. this.currentSong.skipDuration,
  1047. true
  1048. );
  1049. this.canAutoplay = true;
  1050. if (this.localPaused || this.stationPaused)
  1051. this.player.pauseVideo();
  1052. } else if (
  1053. event.data === window.YT.PlayerState.PLAYING &&
  1054. (this.localPaused || this.stationPaused)
  1055. ) {
  1056. this.player.seekTo(
  1057. this.timeBeforePause / 1000,
  1058. true
  1059. );
  1060. this.player.pauseVideo();
  1061. } else if (
  1062. event.data === window.YT.PlayerState.PLAYING &&
  1063. this.seeking === true
  1064. ) {
  1065. this.seeking = false;
  1066. }
  1067. if (
  1068. event.data === window.YT.PlayerState.PAUSED &&
  1069. !this.localPaused &&
  1070. !this.stationPaused &&
  1071. !this.noSong &&
  1072. this.player.getDuration() / 1000 <
  1073. this.currentSong.duration
  1074. ) {
  1075. this.player.seekTo(
  1076. this.getTimeElapsed() / 1000 +
  1077. this.currentSong.skipDuration,
  1078. true
  1079. );
  1080. this.player.playVideo();
  1081. }
  1082. }
  1083. }
  1084. });
  1085. }
  1086. },
  1087. getTimeElapsed() {
  1088. if (this.currentSong) {
  1089. let { timePaused } = this;
  1090. if (this.stationPaused)
  1091. timePaused += Date.currently() - this.pausedAt;
  1092. return Date.currently() - this.startedAt - timePaused;
  1093. }
  1094. return 0;
  1095. },
  1096. playVideo() {
  1097. if (this.playerReady) {
  1098. this.videoLoading = true;
  1099. this.player.loadVideoById(
  1100. this.currentSong.youtubeId,
  1101. this.getTimeElapsed() / 1000 + this.currentSong.skipDuration
  1102. );
  1103. if (window.stationInterval !== 0)
  1104. clearInterval(window.stationInterval);
  1105. window.stationInterval = setInterval(() => {
  1106. this.resizeSeekerbar();
  1107. this.calculateTimeElapsed();
  1108. }, 150);
  1109. }
  1110. },
  1111. resizeSeekerbar() {
  1112. if (!this.stationPaused) {
  1113. this.seekerbarPercentage = parseFloat(
  1114. (this.getTimeElapsed() / 1000 / this.currentSong.duration) *
  1115. 100
  1116. );
  1117. }
  1118. },
  1119. calculateTimeElapsed() {
  1120. if (
  1121. this.playerReady &&
  1122. this.currentSong &&
  1123. this.player.getPlayerState() === -1
  1124. ) {
  1125. if (!this.canAutoplay) {
  1126. if (
  1127. Date.now() - this.lastTimeRequestedIfCanAutoplay >
  1128. 2000
  1129. ) {
  1130. this.lastTimeRequestedIfCanAutoplay = Date.now();
  1131. window.canAutoplay.video().then(({ result }) => {
  1132. if (result) {
  1133. this.attemptsToPlayVideo = 0;
  1134. this.canAutoplay = true;
  1135. } else {
  1136. this.canAutoplay = false;
  1137. }
  1138. });
  1139. }
  1140. } else {
  1141. this.player.playVideo();
  1142. this.attemptsToPlayVideo += 1;
  1143. }
  1144. }
  1145. if (!this.stationPaused && !this.localPaused) {
  1146. const timeElapsed = this.getTimeElapsed();
  1147. const currentPlayerTime =
  1148. Math.max(
  1149. this.player.getCurrentTime() -
  1150. this.currentSong.skipDuration,
  1151. 0
  1152. ) * 1000;
  1153. const difference = timeElapsed - currentPlayerTime;
  1154. // console.log(difference);
  1155. let playbackRate = 1;
  1156. if (difference < -2000) {
  1157. if (!this.seeking) {
  1158. this.seeking = true;
  1159. this.player.seekTo(
  1160. this.getTimeElapsed() / 1000 +
  1161. this.currentSong.skipDuration
  1162. );
  1163. }
  1164. } else if (difference < -200) {
  1165. // console.log("Difference0.8");
  1166. playbackRate = 0.8;
  1167. } else if (difference < -50) {
  1168. // console.log("Difference0.9");
  1169. playbackRate = 0.9;
  1170. } else if (difference < -25) {
  1171. // console.log("Difference0.99");
  1172. playbackRate = 0.95;
  1173. } else if (difference > 2000) {
  1174. if (!this.seeking) {
  1175. this.seeking = true;
  1176. this.player.seekTo(
  1177. this.getTimeElapsed() / 1000 +
  1178. this.currentSong.skipDuration
  1179. );
  1180. }
  1181. } else if (difference > 200) {
  1182. // console.log("Difference1.2");
  1183. playbackRate = 1.2;
  1184. } else if (difference > 50) {
  1185. // console.log("Difference1.1");
  1186. playbackRate = 1.1;
  1187. } else if (difference > 25) {
  1188. // console.log("Difference1.01");
  1189. playbackRate = 1.05;
  1190. } else if (this.player.getPlaybackRate !== 1.0) {
  1191. // console.log("NDifference1.0");
  1192. this.player.setPlaybackRate(1.0);
  1193. }
  1194. if (this.playbackRate !== playbackRate) {
  1195. this.player.setPlaybackRate(playbackRate);
  1196. this.playbackRate = playbackRate;
  1197. }
  1198. }
  1199. /* if (this.currentTime !== undefined && this.paused) {
  1200. this.timePaused += Date.currently() - this.currentTime;
  1201. this.currentTime = undefined;
  1202. } */
  1203. let { timePaused } = this;
  1204. if (this.stationPaused)
  1205. timePaused += Date.currently() - this.pausedAt;
  1206. const duration =
  1207. (Date.currently() - this.startedAt - timePaused) / 1000;
  1208. const songDuration = this.currentSong.duration;
  1209. if (songDuration <= duration) this.player.pauseVideo();
  1210. if (!this.stationPaused && duration <= songDuration)
  1211. this.timeElapsed = utils.formatTime(duration);
  1212. },
  1213. toggleLock() {
  1214. window.socket.dispatch(
  1215. "stations.toggleLock",
  1216. this.station._id,
  1217. res => {
  1218. if (res.status === "success") {
  1219. new Toast("Successfully toggled the queue lock.");
  1220. } else new Toast(res.message);
  1221. }
  1222. );
  1223. },
  1224. changeVolume() {
  1225. const volume = this.volumeSliderValue;
  1226. localStorage.setItem("volume", volume / 100);
  1227. if (this.playerReady) {
  1228. this.player.setVolume(volume / 100);
  1229. if (volume > 0) {
  1230. this.player.unMute();
  1231. localStorage.setItem("muted", false);
  1232. this.muted = false;
  1233. }
  1234. }
  1235. },
  1236. resumeLocalStation() {
  1237. this.updateLocalPaused(false);
  1238. if (!this.stationPaused) this.resumeLocalPlayer();
  1239. },
  1240. pauseLocalStation() {
  1241. this.updateLocalPaused(true);
  1242. this.pauseLocalPlayer();
  1243. },
  1244. resumeLocalPlayer() {
  1245. if (!this.noSong) {
  1246. if (this.playerReady) {
  1247. this.player.seekTo(
  1248. this.getTimeElapsed() / 1000 +
  1249. this.currentSong.skipDuration
  1250. );
  1251. this.player.playVideo();
  1252. }
  1253. }
  1254. },
  1255. pauseLocalPlayer() {
  1256. if (!this.noSong) {
  1257. this.timeBeforePause = this.getTimeElapsed();
  1258. if (this.playerReady) this.player.pauseVideo();
  1259. }
  1260. },
  1261. skipStation() {
  1262. this.socket.dispatch(
  1263. "stations.forceSkip",
  1264. this.station._id,
  1265. data => {
  1266. if (data.status !== "success")
  1267. new Toast(`Error: ${data.message}`);
  1268. else
  1269. new Toast(
  1270. "Successfully skipped the station's current song."
  1271. );
  1272. }
  1273. );
  1274. },
  1275. voteSkipStation() {
  1276. this.socket.dispatch(
  1277. "stations.voteSkip",
  1278. this.station._id,
  1279. data => {
  1280. if (data.status !== "success")
  1281. new Toast(`Error: ${data.message}`);
  1282. else
  1283. new Toast(
  1284. "Successfully voted to skip the current song."
  1285. );
  1286. }
  1287. );
  1288. },
  1289. resumeStation() {
  1290. this.socket.dispatch("stations.resume", this.station._id, data => {
  1291. if (data.status !== "success")
  1292. new Toast(`Error: ${data.message}`);
  1293. else new Toast("Successfully resumed the station.");
  1294. });
  1295. },
  1296. pauseStation() {
  1297. this.socket.dispatch("stations.pause", this.station._id, data => {
  1298. if (data.status !== "success")
  1299. new Toast(`Error: ${data.message}`);
  1300. else new Toast("Successfully paused the station.");
  1301. });
  1302. },
  1303. toggleMute() {
  1304. if (this.playerReady) {
  1305. const previousVolume = parseFloat(
  1306. localStorage.getItem("volume")
  1307. );
  1308. const volume =
  1309. this.player.getVolume() * 100 <= 0 ? previousVolume : 0;
  1310. this.muted = !this.muted;
  1311. localStorage.setItem("muted", this.muted);
  1312. this.volumeSliderValue = volume * 100;
  1313. this.player.setVolume(volume);
  1314. if (!this.muted) localStorage.setItem("volume", volume);
  1315. }
  1316. },
  1317. increaseVolume() {
  1318. if (this.playerReady) {
  1319. const previousVolume = parseInt(localStorage.getItem("volume"));
  1320. let volume = previousVolume + 5;
  1321. if (previousVolume === 0) {
  1322. this.muted = false;
  1323. localStorage.setItem("muted", false);
  1324. }
  1325. if (volume > 100) volume = 100;
  1326. this.volumeSliderValue = volume * 100;
  1327. this.player.setVolume(volume);
  1328. localStorage.setItem("volume", volume);
  1329. }
  1330. },
  1331. toggleLike() {
  1332. if (this.liked)
  1333. this.socket.dispatch(
  1334. "songs.unlike",
  1335. this.currentSong.youtubeId,
  1336. res => {
  1337. if (res.status !== "success")
  1338. new Toast(`Error: ${res.message}`);
  1339. }
  1340. );
  1341. else
  1342. this.socket.dispatch(
  1343. "songs.like",
  1344. this.currentSong.youtubeId,
  1345. res => {
  1346. if (res.status !== "success")
  1347. new Toast(`Error: ${res.message}`);
  1348. }
  1349. );
  1350. },
  1351. toggleDislike() {
  1352. if (this.disliked)
  1353. return this.socket.dispatch(
  1354. "songs.undislike",
  1355. this.currentSong.youtubeId,
  1356. res => {
  1357. if (res.status !== "success")
  1358. new Toast(`Error: ${res.message}`);
  1359. }
  1360. );
  1361. return this.socket.dispatch(
  1362. "songs.dislike",
  1363. this.currentSong.youtubeId,
  1364. res => {
  1365. if (res.status !== "success")
  1366. new Toast(`Error: ${res.message}`);
  1367. }
  1368. );
  1369. },
  1370. addPartyPlaylistSongToQueue() {
  1371. let isInQueue = false;
  1372. if (
  1373. this.station.type === "community" &&
  1374. this.station.partyMode === true
  1375. ) {
  1376. this.songsList.forEach(queueSong => {
  1377. if (queueSong.requestedBy === this.userId) isInQueue = true;
  1378. });
  1379. if (!isInQueue && this.partyPlaylists.length > 0) {
  1380. const selectedPlaylist = this.partyPlaylists[
  1381. Math.floor(Math.random() * this.partyPlaylists.length)
  1382. ];
  1383. if (
  1384. selectedPlaylist._id &&
  1385. selectedPlaylist.songs.length > 0
  1386. ) {
  1387. const selectedSong =
  1388. selectedPlaylist.songs[
  1389. Math.floor(
  1390. Math.random() *
  1391. selectedPlaylist.songs.length
  1392. )
  1393. ];
  1394. if (selectedSong.youtubeId) {
  1395. this.socket.dispatch(
  1396. "stations.addToQueue",
  1397. this.station._id,
  1398. selectedSong.youtubeId,
  1399. data => {
  1400. if (data.status !== "success")
  1401. new Toast("Error auto queueing song");
  1402. }
  1403. );
  1404. }
  1405. }
  1406. }
  1407. }
  1408. },
  1409. togglePlayerDebugBox() {
  1410. this.$refs.playerDebugBox.toggleBox();
  1411. },
  1412. resetPlayerDebugBox() {
  1413. this.$refs.playerDebugBox.resetBox();
  1414. },
  1415. join() {
  1416. this.socket.dispatch(
  1417. "stations.join",
  1418. this.stationIdentifier,
  1419. res => {
  1420. if (res.status === "success") {
  1421. setTimeout(() => {
  1422. this.loading = false;
  1423. }, 1000); // prevents popping in of youtube embed etc.
  1424. const {
  1425. _id,
  1426. displayName,
  1427. name,
  1428. description,
  1429. privacy,
  1430. locked,
  1431. partyMode,
  1432. owner,
  1433. privatePlaylist,
  1434. includedPlaylists,
  1435. excludedPlaylists,
  1436. type,
  1437. genres,
  1438. blacklistedGenres,
  1439. isFavorited,
  1440. theme
  1441. } = res.data;
  1442. // change url to use station name instead of station id
  1443. if (name !== this.stationIdentifier) {
  1444. // eslint-disable-next-line no-restricted-globals
  1445. this.$router.replace(name);
  1446. }
  1447. this.joinStation({
  1448. _id,
  1449. name,
  1450. displayName,
  1451. description,
  1452. privacy,
  1453. locked,
  1454. partyMode,
  1455. owner,
  1456. privatePlaylist,
  1457. includedPlaylists,
  1458. excludedPlaylists,
  1459. type,
  1460. genres,
  1461. blacklistedGenres,
  1462. isFavorited,
  1463. theme
  1464. });
  1465. document.body.style.cssText = `--primary-color: var(--${res.data.theme})`;
  1466. const currentSong = res.data.currentSong
  1467. ? res.data.currentSong
  1468. : {};
  1469. this.updateCurrentSong(currentSong);
  1470. this.startedAt = res.data.startedAt;
  1471. this.updateStationPaused(res.data.paused);
  1472. this.timePaused = res.data.timePaused;
  1473. this.updateUserCount(res.data.userCount);
  1474. this.updateUsers(res.data.users);
  1475. this.pausedAt = res.data.pausedAt;
  1476. if (res.data.currentSong) {
  1477. this.updateNoSong(false);
  1478. this.youtubeReady();
  1479. this.playVideo();
  1480. this.socket.dispatch(
  1481. "songs.getOwnSongRatings",
  1482. res.data.currentSong.youtubeId,
  1483. res => {
  1484. if (
  1485. res.status === "success" &&
  1486. this.currentSong.youtubeId ===
  1487. res.data.youtubeId
  1488. ) {
  1489. this.liked = res.data.liked;
  1490. this.disliked = res.data.disliked;
  1491. }
  1492. }
  1493. );
  1494. } else {
  1495. if (this.playerReady) this.player.pauseVideo();
  1496. this.updateNoSong(true);
  1497. }
  1498. this.socket.dispatch(
  1499. "stations.getStationIncludedPlaylistsById",
  1500. this.station._id,
  1501. res => {
  1502. if (res.status === "success") {
  1503. this.setIncludedPlaylists(
  1504. res.data.playlists
  1505. );
  1506. }
  1507. }
  1508. );
  1509. this.socket.dispatch(
  1510. "stations.getStationExcludedPlaylistsById",
  1511. this.station._id,
  1512. res => {
  1513. if (res.status === "success") {
  1514. this.setExcludedPlaylists(
  1515. res.data.playlists
  1516. );
  1517. }
  1518. }
  1519. );
  1520. this.socket.dispatch("stations.getQueue", _id, res => {
  1521. if (res.status === "success") {
  1522. this.updateSongsList(res.data.queue);
  1523. let nextSong = null;
  1524. if (this.songsList[0]) {
  1525. nextSong = this.songsList[0].youtubeId
  1526. ? this.songsList[0]
  1527. : null;
  1528. }
  1529. this.updateNextSong(nextSong);
  1530. }
  1531. });
  1532. if (this.isOwnerOrAdmin()) {
  1533. keyboardShortcuts.registerShortcut(
  1534. "station.pauseResume",
  1535. {
  1536. keyCode: 32,
  1537. shift: false,
  1538. ctrl: true,
  1539. preventDefault: true,
  1540. handler: () => {
  1541. if (this.stationPaused)
  1542. this.resumeStation();
  1543. else this.pauseStation();
  1544. }
  1545. }
  1546. );
  1547. keyboardShortcuts.registerShortcut(
  1548. "station.skipStation",
  1549. {
  1550. keyCode: 39,
  1551. shift: false,
  1552. ctrl: true,
  1553. preventDefault: true,
  1554. handler: () => {
  1555. this.skipStation();
  1556. }
  1557. }
  1558. );
  1559. }
  1560. keyboardShortcuts.registerShortcut(
  1561. "station.lowerVolumeLarge",
  1562. {
  1563. keyCode: 40,
  1564. shift: false,
  1565. ctrl: true,
  1566. preventDefault: true,
  1567. handler: () => {
  1568. this.volumeSliderValue -= 1000;
  1569. this.changeVolume();
  1570. }
  1571. }
  1572. );
  1573. keyboardShortcuts.registerShortcut(
  1574. "station.lowerVolumeSmall",
  1575. {
  1576. keyCode: 40,
  1577. shift: true,
  1578. ctrl: true,
  1579. preventDefault: true,
  1580. handler: () => {
  1581. this.volumeSliderValue -= 100;
  1582. this.changeVolume();
  1583. }
  1584. }
  1585. );
  1586. keyboardShortcuts.registerShortcut(
  1587. "station.increaseVolumeLarge",
  1588. {
  1589. keyCode: 38,
  1590. shift: false,
  1591. ctrl: true,
  1592. preventDefault: true,
  1593. handler: () => {
  1594. this.volumeSliderValue += 1000;
  1595. this.changeVolume();
  1596. }
  1597. }
  1598. );
  1599. keyboardShortcuts.registerShortcut(
  1600. "station.increaseVolumeSmall",
  1601. {
  1602. keyCode: 38,
  1603. shift: true,
  1604. ctrl: true,
  1605. preventDefault: true,
  1606. handler: () => {
  1607. this.volumeSliderValue += 100;
  1608. this.changeVolume();
  1609. }
  1610. }
  1611. );
  1612. keyboardShortcuts.registerShortcut(
  1613. "station.toggleDebug",
  1614. {
  1615. keyCode: 68,
  1616. shift: false,
  1617. ctrl: true,
  1618. preventDefault: true,
  1619. handler: () => {
  1620. this.togglePlayerDebugBox();
  1621. }
  1622. }
  1623. );
  1624. // UNIX client time before ping
  1625. const beforePing = Date.now();
  1626. this.socket.dispatch("apis.ping", res => {
  1627. if (res.status === "success") {
  1628. // UNIX client time after ping
  1629. const afterPing = Date.now();
  1630. // Average time in MS it took between the server responding and the client receiving
  1631. const connectionLatency =
  1632. (afterPing - beforePing) / 2;
  1633. console.log(
  1634. connectionLatency,
  1635. beforePing - afterPing
  1636. );
  1637. // UNIX server time
  1638. const serverDate = res.data.date;
  1639. // Difference between the server UNIX time and the client UNIX time after ping, with the connectionLatency added to the server UNIX time
  1640. const difference =
  1641. serverDate + connectionLatency - afterPing;
  1642. console.log("Difference: ", difference);
  1643. if (difference > 3000 || difference < -3000) {
  1644. console.log(
  1645. "System time difference is bigger than 3 seconds."
  1646. );
  1647. }
  1648. this.systemDifference = difference;
  1649. }
  1650. });
  1651. } else {
  1652. this.loading = false;
  1653. this.exists = false;
  1654. }
  1655. }
  1656. );
  1657. },
  1658. favoriteStation() {
  1659. this.socket.dispatch(
  1660. "stations.favoriteStation",
  1661. this.station._id,
  1662. res => {
  1663. if (res.status === "success") {
  1664. new Toast("Successfully favorited station.");
  1665. } else new Toast(res.message);
  1666. }
  1667. );
  1668. },
  1669. unfavoriteStation() {
  1670. this.socket.dispatch(
  1671. "stations.unfavoriteStation",
  1672. this.station._id,
  1673. res => {
  1674. if (res.status === "success") {
  1675. new Toast("Successfully unfavorited station.");
  1676. } else new Toast(res.message);
  1677. }
  1678. );
  1679. },
  1680. sendActivityWatchVideoData() {
  1681. if (!this.stationPaused && !this.localPaused && this.currentSong) {
  1682. if (this.activityWatchVideoLastStatus !== "playing") {
  1683. this.activityWatchVideoLastStatus = "playing";
  1684. this.activityWatchVideoLastStartDuration =
  1685. this.currentSong.skipDuration + this.getTimeElapsed();
  1686. }
  1687. if (
  1688. this.activityWatchVideoLastYouTubeId !==
  1689. this.currentSong.youtubeId
  1690. ) {
  1691. this.activityWatchVideoLastYouTubeId = this.currentSong.youtubeId;
  1692. this.activityWatchVideoLastStartDuration =
  1693. this.currentSong.skipDuration + this.getTimeElapsed();
  1694. }
  1695. const videoData = {
  1696. title: this.currentSong ? this.currentSong.title : null,
  1697. artists:
  1698. this.currentSong && this.currentSong.artists
  1699. ? this.currentSong.artists.join(", ")
  1700. : null,
  1701. youtubeId: this.currentSong.youtubeId,
  1702. muted: this.muted,
  1703. volume: this.volumeSliderValue / 100,
  1704. startedDuration:
  1705. this.activityWatchVideoLastStartDuration <= 0
  1706. ? 0
  1707. : Math.floor(
  1708. this.activityWatchVideoLastStartDuration /
  1709. 1000
  1710. ),
  1711. source: `station#${this.station.name}`,
  1712. hostname: window.location.hostname
  1713. };
  1714. aw.sendVideoData(videoData);
  1715. } else {
  1716. this.activityWatchVideoLastStatus = "not_playing";
  1717. }
  1718. },
  1719. ...mapActions("modalVisibility", ["openModal"]),
  1720. ...mapActions("station", [
  1721. "joinStation",
  1722. "leaveStation",
  1723. "updateUserCount",
  1724. "updateUsers",
  1725. "updateCurrentSong",
  1726. "updatePreviousSong",
  1727. "updateNextSong",
  1728. "updateSongsList",
  1729. "repositionSongInList",
  1730. "updateStationPaused",
  1731. "updateLocalPaused",
  1732. "updateNoSong",
  1733. "updateIfStationIsFavorited",
  1734. "setIncludedPlaylists",
  1735. "setExcludedPlaylists"
  1736. ]),
  1737. ...mapActions("modals/editSong", ["stopVideo"])
  1738. }
  1739. };
  1740. </script>
  1741. <style lang="scss">
  1742. #stationPlayer {
  1743. position: absolute;
  1744. top: 0;
  1745. left: 0;
  1746. width: 100%;
  1747. height: 100%;
  1748. }
  1749. </style>
  1750. <style lang="scss" scoped>
  1751. // .main-container > div {
  1752. // height: 100%;
  1753. // }
  1754. #page-loader-container {
  1755. height: inherit;
  1756. #page-loader-content {
  1757. height: inherit;
  1758. position: absolute;
  1759. max-width: 100%;
  1760. width: 1800px;
  1761. transform: translateX(-50%);
  1762. left: 50%;
  1763. }
  1764. #page-loader-layout {
  1765. height: inherit;
  1766. width: 100%;
  1767. }
  1768. }
  1769. #mobile-progress-animation {
  1770. width: 50px;
  1771. animation: rotate 0.8s infinite linear;
  1772. border: 8px solid var(--primary-color);
  1773. border-right-color: transparent;
  1774. border-radius: 50%;
  1775. height: 50px;
  1776. position: absolute;
  1777. top: 50%;
  1778. left: 50%;
  1779. display: none;
  1780. }
  1781. @keyframes rotate {
  1782. 0% {
  1783. transform: rotate(0deg);
  1784. }
  1785. 100% {
  1786. transform: rotate(360deg);
  1787. }
  1788. }
  1789. .nav,
  1790. .button.is-primary {
  1791. background-color: var(--primary-color) !important;
  1792. }
  1793. .button.is-primary:hover,
  1794. .button.is-primary:focus {
  1795. filter: brightness(90%);
  1796. }
  1797. #player-debug-box {
  1798. .box-body {
  1799. flex-direction: column;
  1800. b {
  1801. color: var(--black);
  1802. }
  1803. }
  1804. }
  1805. .night-mode {
  1806. #currently-playing-container,
  1807. #next-up-container,
  1808. #about-station-container,
  1809. #control-bar-container,
  1810. .player-container {
  1811. background-color: var(--dark-grey-3) !important;
  1812. }
  1813. #video-container,
  1814. #control-bar-container,
  1815. .quadrant:not(#sidebar-container),
  1816. .player-container {
  1817. border: 0 !important;
  1818. }
  1819. #seeker-bar-container {
  1820. background-color: var(--dark-grey-3) !important;
  1821. }
  1822. #dropdown-toggle {
  1823. background-color: var(--dark-grey-2) !important;
  1824. border: 0;
  1825. i {
  1826. color: var(--white);
  1827. }
  1828. }
  1829. }
  1830. #station-outer-container {
  1831. margin: 0 auto;
  1832. padding: 20px 40px;
  1833. height: 100%;
  1834. min-height: calc(100vh - 264px);
  1835. width: 100%;
  1836. max-width: 1800px;
  1837. display: flex;
  1838. #station-inner-container {
  1839. width: 100%;
  1840. // height: fit-content;
  1841. min-height: calc(100vh - 428px);
  1842. display: flex;
  1843. flex-direction: row;
  1844. flex-wrap: wrap;
  1845. .row {
  1846. display: flex;
  1847. flex-direction: row;
  1848. max-width: 100%;
  1849. }
  1850. .column {
  1851. display: flex;
  1852. flex-direction: column;
  1853. }
  1854. .quadrant {
  1855. border-radius: 5px;
  1856. margin: 10px;
  1857. }
  1858. .quadrant:not(#sidebar-container) {
  1859. background-color: var(--white);
  1860. border: 1px solid var(--light-grey-3);
  1861. }
  1862. #station-left-column,
  1863. #station-right-column {
  1864. padding: 0;
  1865. }
  1866. #about-station-container {
  1867. padding: 20px;
  1868. display: flex;
  1869. flex-direction: column;
  1870. flex-grow: unset;
  1871. #station-info {
  1872. #station-name {
  1873. flex-direction: row !important;
  1874. h1 {
  1875. margin: 0;
  1876. font-size: 36px;
  1877. line-height: 0.8;
  1878. }
  1879. i {
  1880. margin-left: 10px;
  1881. font-size: 30px;
  1882. color: var(--yellow);
  1883. &.stationMode {
  1884. padding-left: 10px;
  1885. margin-left: auto;
  1886. color: var(--primary-color);
  1887. }
  1888. }
  1889. }
  1890. p {
  1891. max-width: 700px;
  1892. margin-bottom: 10px;
  1893. }
  1894. }
  1895. #admin-buttons {
  1896. display: flex;
  1897. .button {
  1898. margin: 3px;
  1899. }
  1900. }
  1901. }
  1902. #current-next-row {
  1903. display: flex;
  1904. flex-direction: row;
  1905. // max-width: calc(100vw - 40px);
  1906. #currently-playing-container,
  1907. #next-up-container {
  1908. overflow: hidden;
  1909. flex-basis: 50%;
  1910. .song-item {
  1911. border: unset;
  1912. }
  1913. .nothing-here-text {
  1914. height: 100%;
  1915. }
  1916. }
  1917. > div:only-child {
  1918. flex: 1 !important;
  1919. flex-basis: 100% !important;
  1920. }
  1921. }
  1922. .player-container {
  1923. height: inherit;
  1924. background-color: var(--white);
  1925. display: flex;
  1926. flex-direction: column;
  1927. border: 1px solid var(--light-grey-3);
  1928. border-radius: 5px;
  1929. overflow: hidden;
  1930. &.nothing-here-text {
  1931. margin: 10px;
  1932. flex: 1;
  1933. min-height: 487px;
  1934. }
  1935. #video-container {
  1936. position: relative;
  1937. padding-bottom: 56.25%; /* proportion value to aspect ratio 16:9 (9 / 16 = 0.5625 or 56.25%) */
  1938. height: 0;
  1939. overflow: hidden;
  1940. .player-cannot-autoplay {
  1941. position: relative;
  1942. width: 100%;
  1943. height: 100%;
  1944. bottom: calc(100% + 5px);
  1945. background: var(--primary-color);
  1946. display: flex;
  1947. align-items: center;
  1948. justify-content: center;
  1949. p {
  1950. color: var(--white);
  1951. font-size: 26px;
  1952. text-align: center;
  1953. }
  1954. }
  1955. }
  1956. #seeker-bar-container {
  1957. background-color: var(--white);
  1958. position: relative;
  1959. height: 7px;
  1960. display: block;
  1961. width: 100%;
  1962. // overflow: hidden;
  1963. #seeker-bar {
  1964. background-color: var(--primary-color);
  1965. top: 0;
  1966. left: 0;
  1967. bottom: 0;
  1968. position: absolute;
  1969. }
  1970. }
  1971. #control-bar-container {
  1972. display: flex;
  1973. justify-content: space-around;
  1974. padding: 10px 0;
  1975. width: 100%;
  1976. background: var(--white);
  1977. flex-direction: column;
  1978. flex-flow: wrap;
  1979. .button:not(#dropdown-toggle) {
  1980. width: 75px;
  1981. }
  1982. #left-buttons,
  1983. #right-buttons {
  1984. margin: 3px;
  1985. }
  1986. #left-buttons {
  1987. display: flex;
  1988. .button:not(:first-of-type) {
  1989. margin-left: 5px;
  1990. }
  1991. .disabled {
  1992. filter: grayscale(0.4);
  1993. }
  1994. }
  1995. #duration {
  1996. margin: 3px;
  1997. display: flex;
  1998. align-items: center;
  1999. p {
  2000. font-size: 22px;
  2001. /** prevents duration width slightly varying and shifting other controls slightly */
  2002. width: 150px;
  2003. text-align: center;
  2004. }
  2005. }
  2006. #volume-control {
  2007. margin: 3px;
  2008. margin-top: 0;
  2009. display: flex;
  2010. align-items: center;
  2011. cursor: pointer;
  2012. .volume-slider {
  2013. width: 100%;
  2014. padding: 0 15px;
  2015. background: transparent;
  2016. min-width: 100px;
  2017. }
  2018. input[type="range"] {
  2019. -webkit-appearance: none;
  2020. margin: 7.3px 0;
  2021. }
  2022. input[type="range"]:focus {
  2023. outline: none;
  2024. }
  2025. input[type="range"]::-webkit-slider-runnable-track {
  2026. width: 100%;
  2027. height: 5.2px;
  2028. cursor: pointer;
  2029. box-shadow: 0;
  2030. background: var(--light-grey-3);
  2031. border-radius: 0;
  2032. border: 0;
  2033. }
  2034. input[type="range"]::-webkit-slider-thumb {
  2035. box-shadow: 0;
  2036. border: 0;
  2037. height: 19px;
  2038. width: 19px;
  2039. border-radius: 15px;
  2040. background: var(--primary-color);
  2041. cursor: pointer;
  2042. -webkit-appearance: none;
  2043. margin-top: -6.5px;
  2044. }
  2045. input[type="range"]::-moz-range-track {
  2046. width: 100%;
  2047. height: 5.2px;
  2048. cursor: pointer;
  2049. box-shadow: 0;
  2050. background: var(--light-grey-3);
  2051. border-radius: 0;
  2052. border: 0;
  2053. }
  2054. input[type="range"]::-moz-range-thumb {
  2055. box-shadow: 0;
  2056. border: 0;
  2057. height: 19px;
  2058. width: 19px;
  2059. border-radius: 15px;
  2060. background: var(--primary-color);
  2061. cursor: pointer;
  2062. -webkit-appearance: none;
  2063. margin-top: -6.5px;
  2064. }
  2065. input[type="range"]::-ms-track {
  2066. width: 100%;
  2067. height: 5.2px;
  2068. cursor: pointer;
  2069. box-shadow: 0;
  2070. background: var(--light-grey-3);
  2071. border-radius: 1.3px;
  2072. }
  2073. input[type="range"]::-ms-fill-lower {
  2074. background: var(--light-grey-3);
  2075. border: 0;
  2076. border-radius: 0;
  2077. box-shadow: 0;
  2078. }
  2079. input[type="range"]::-ms-fill-upper {
  2080. background: var(--light-grey-3);
  2081. border: 0;
  2082. border-radius: 0;
  2083. box-shadow: 0;
  2084. }
  2085. input[type="range"]::-ms-thumb {
  2086. box-shadow: 0;
  2087. border: 0;
  2088. height: 15px;
  2089. width: 15px;
  2090. border-radius: 15px;
  2091. background: var(--primary-color);
  2092. cursor: pointer;
  2093. -webkit-appearance: none;
  2094. margin-top: 1.5px;
  2095. }
  2096. }
  2097. #right-buttons {
  2098. display: flex;
  2099. #dropdown-toggle {
  2100. width: 35px;
  2101. }
  2102. #dislike-song,
  2103. #add-song-to-playlist .button:not(#dropdown-toggle) {
  2104. margin-left: 5px;
  2105. }
  2106. #ratings {
  2107. display: flex;
  2108. &.liked #dislike-song,
  2109. &.disliked #like-song {
  2110. background-color: var(--grey) !important;
  2111. }
  2112. #like-song.disabled,
  2113. #dislike-song.disabled {
  2114. filter: grayscale(0.4);
  2115. }
  2116. }
  2117. #add-song-to-playlist {
  2118. display: flex;
  2119. flex-direction: column-reverse;
  2120. #nav-dropdown {
  2121. position: absolute;
  2122. margin-left: 4px;
  2123. margin-bottom: 36px;
  2124. .nav-dropdown-items {
  2125. position: relative;
  2126. right: calc(100% - 110px);
  2127. }
  2128. }
  2129. .control {
  2130. width: fit-content;
  2131. margin-bottom: 0 !important;
  2132. button.disabled {
  2133. filter: grayscale(0.4);
  2134. border-radius: 3px;
  2135. &::after {
  2136. margin-right: 100%;
  2137. }
  2138. }
  2139. }
  2140. }
  2141. }
  2142. }
  2143. }
  2144. #sidebar-container {
  2145. border-top: 0;
  2146. position: relative;
  2147. height: inherit;
  2148. flex-grow: 1;
  2149. min-height: 350px;
  2150. }
  2151. }
  2152. }
  2153. .footer {
  2154. margin-top: 30px;
  2155. }
  2156. .nyan {
  2157. background: linear-gradient(
  2158. 90deg,
  2159. magenta 0%,
  2160. red 15%,
  2161. orange 30%,
  2162. yellow 45%,
  2163. lime 60%,
  2164. cyan 75%,
  2165. blue 90%,
  2166. magenta 100%
  2167. );
  2168. background-size: 200%;
  2169. animation: nyanMoving 4s linear infinite;
  2170. }
  2171. @keyframes nyanMoving {
  2172. 0% {
  2173. background-position: 0% 0%;
  2174. }
  2175. 100% {
  2176. background-position: -200% 0%;
  2177. }
  2178. }
  2179. .bg-bubbles {
  2180. top: 0;
  2181. left: 0;
  2182. width: 100%;
  2183. height: 100%;
  2184. position: absolute;
  2185. z-index: -1;
  2186. margin: 0px;
  2187. pointer-events: none;
  2188. }
  2189. .bg-bubbles li {
  2190. position: absolute;
  2191. list-style: none;
  2192. display: block;
  2193. width: 40px;
  2194. height: 40px;
  2195. border-radius: 100px;
  2196. // background-color: rgba(255, 255, 255, 0.15);
  2197. background-color: var(--primary-color);
  2198. opacity: 0.15;
  2199. bottom: 0px;
  2200. -webkit-animation: square 25s infinite;
  2201. animation: square 25s infinite;
  2202. -webkit-transition-timing-function: linear;
  2203. transition-timing-function: linear;
  2204. }
  2205. .bg-bubbles li:nth-child(1) {
  2206. left: 10%;
  2207. }
  2208. .bg-bubbles li:nth-child(2) {
  2209. left: 20%;
  2210. width: 80px;
  2211. height: 80px;
  2212. -webkit-animation-delay: 2s;
  2213. animation-delay: 2s;
  2214. -webkit-animation-duration: 17s;
  2215. animation-duration: 17s;
  2216. }
  2217. .bg-bubbles li:nth-child(3) {
  2218. left: 25%;
  2219. -webkit-animation-delay: 4s;
  2220. animation-delay: 4s;
  2221. }
  2222. .bg-bubbles li:nth-child(4) {
  2223. left: 40%;
  2224. width: 60px;
  2225. height: 60px;
  2226. -webkit-animation-duration: 22s;
  2227. animation-duration: 22s;
  2228. // background-color: rgba(255, 255, 255, 0.25);
  2229. background-color: var(--primary-color);
  2230. opacity: 0.25;
  2231. }
  2232. .bg-bubbles li:nth-child(5) {
  2233. left: 70%;
  2234. }
  2235. .bg-bubbles li:nth-child(6) {
  2236. left: 80%;
  2237. width: 120px;
  2238. height: 120px;
  2239. -webkit-animation-delay: 3s;
  2240. animation-delay: 3s;
  2241. // background-color: rgba(255, 255, 255, 0.2);
  2242. background-color: var(--primary-color);
  2243. opacity: 0.2;
  2244. }
  2245. .bg-bubbles li:nth-child(7) {
  2246. left: 32%;
  2247. width: 160px;
  2248. height: 160px;
  2249. -webkit-animation-delay: 7s;
  2250. animation-delay: 7s;
  2251. }
  2252. .bg-bubbles li:nth-child(8) {
  2253. left: 55%;
  2254. width: 20px;
  2255. height: 20px;
  2256. -webkit-animation-delay: 15s;
  2257. animation-delay: 15s;
  2258. -webkit-animation-duration: 40s;
  2259. animation-duration: 40s;
  2260. }
  2261. .bg-bubbles li:nth-child(9) {
  2262. left: 25%;
  2263. width: 10px;
  2264. height: 10px;
  2265. -webkit-animation-delay: 2s;
  2266. animation-delay: 2s;
  2267. -webkit-animation-duration: 40s;
  2268. animation-duration: 40s;
  2269. // background-color: rgba(255, 255, 255, 0.3);
  2270. background-color: var(--primary-color);
  2271. opacity: 0.3;
  2272. }
  2273. .bg-bubbles li:nth-child(10) {
  2274. left: 80%;
  2275. width: 160px;
  2276. height: 160px;
  2277. -webkit-animation-delay: 11s;
  2278. animation-delay: 11s;
  2279. }
  2280. /* Tablet view fix */
  2281. @media (max-width: 768px) {
  2282. .bg-bubbles li:nth-child(10) {
  2283. display: none;
  2284. }
  2285. }
  2286. @-webkit-keyframes square {
  2287. 0% {
  2288. -webkit-transform: translateY(0);
  2289. transform: translateY(0);
  2290. }
  2291. 100% {
  2292. -webkit-transform: translateY(-700px) rotate(600deg);
  2293. transform: translateY(-700px) rotate(600deg);
  2294. }
  2295. }
  2296. @keyframes square {
  2297. 0% {
  2298. -webkit-transform: translateY(0);
  2299. transform: translateY(0);
  2300. }
  2301. 100% {
  2302. -webkit-transform: translateY(-700px) rotate(600deg);
  2303. transform: translateY(-700px) rotate(600deg);
  2304. }
  2305. }
  2306. /deep/ .nothing-here-text {
  2307. display: flex;
  2308. align-items: center;
  2309. justify-content: center;
  2310. }
  2311. @media (min-width: 1500px) {
  2312. #station-left-column {
  2313. max-width: 650px;
  2314. }
  2315. #station-right-column {
  2316. max-width: calc(100% - 650px);
  2317. }
  2318. }
  2319. // // #current-next-row {
  2320. // // flex-direction: column;
  2321. // // > div {
  2322. // // flex: 1 !important;
  2323. // // }
  2324. // // }
  2325. // }
  2326. @media (max-width: 1700px) {
  2327. #current-next-row {
  2328. flex-direction: column !important;
  2329. > div {
  2330. flex: 1 !important;
  2331. }
  2332. }
  2333. }
  2334. @media (max-width: 1500px) {
  2335. #mobile-progress-animation {
  2336. display: block;
  2337. }
  2338. #page-loader-container {
  2339. display: none;
  2340. }
  2341. #station-outer-container {
  2342. // padding: 10px;
  2343. max-width: 1500px;
  2344. #station-inner-container {
  2345. flex-direction: row;
  2346. #station-left-column {
  2347. #about-station-container #admin-buttons {
  2348. flex-wrap: wrap;
  2349. }
  2350. #sidebar-container {
  2351. min-height: 350px;
  2352. }
  2353. }
  2354. #station-right-column {
  2355. #current-next-row {
  2356. flex-direction: column;
  2357. }
  2358. #control-bar-container {
  2359. #duration,
  2360. #volume-control,
  2361. #right-buttons,
  2362. #left-buttons {
  2363. margin-bottom: 5px;
  2364. justify-content: center;
  2365. }
  2366. #duration {
  2367. order: 1;
  2368. }
  2369. #volume-control {
  2370. order: 2;
  2371. max-width: 400px;
  2372. }
  2373. #right-buttons {
  2374. order: 3;
  2375. flex-wrap: wrap;
  2376. #ratings {
  2377. flex-wrap: wrap;
  2378. }
  2379. }
  2380. #left-buttons {
  2381. order: 4;
  2382. flex-wrap: wrap;
  2383. }
  2384. }
  2385. }
  2386. }
  2387. }
  2388. }
  2389. @media (max-width: 1200px) {
  2390. #station-outer-container {
  2391. max-width: 900px;
  2392. padding: 0;
  2393. #station-inner-container {
  2394. flex-direction: column-reverse;
  2395. flex-wrap: nowrap;
  2396. }
  2397. }
  2398. }
  2399. @media (max-width: 990px) {
  2400. #station-outer-container {
  2401. min-height: calc(
  2402. 100vh - 256px
  2403. ); // Height of nav (64px) + height of footer (190px)
  2404. }
  2405. }
  2406. </style>