App.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805
  1. <template>
  2. <div class="upper-container">
  3. <banned v-if="banned" />
  4. <div v-else class="upper-container">
  5. <router-view :key="$route.fullPath" class="main-container" />
  6. <what-is-new />
  7. <login-modal v-if="modals.header.login" />
  8. <register-modal v-if="modals.header.register" />
  9. </div>
  10. </div>
  11. </template>
  12. <script>
  13. import { mapState, mapActions, mapGetters } from "vuex";
  14. import Toast from "toasters";
  15. import ws from "./ws";
  16. import keyboardShortcuts from "./keyboardShortcuts";
  17. export default {
  18. components: {
  19. WhatIsNew: () => import("./components/modals/WhatIsNew.vue"),
  20. LoginModal: () => import("./components/modals/Login.vue"),
  21. RegisterModal: () => import("./components/modals/Register.vue"),
  22. Banned: () => import("./pages/Banned.vue")
  23. },
  24. replace: false,
  25. data() {
  26. return {
  27. apiDomain: "",
  28. socketConnected: true,
  29. keyIsDown: false
  30. };
  31. },
  32. computed: {
  33. ...mapState({
  34. loggedIn: state => state.user.auth.loggedIn,
  35. role: state => state.user.auth.role,
  36. username: state => state.user.auth.username,
  37. userId: state => state.user.auth.userId,
  38. banned: state => state.user.auth.banned,
  39. modals: state => state.modalVisibility.modals,
  40. currentlyActive: state => state.modalVisibility.currentlyActive,
  41. nightmode: state => state.user.preferences.nightmode
  42. }),
  43. ...mapGetters({
  44. socket: "websockets/getSocket"
  45. })
  46. },
  47. watch: {
  48. socketConnected(connected) {
  49. if (!connected)
  50. new Toast({
  51. content: "Could not connect to the server.",
  52. persistant: true
  53. });
  54. else {
  55. // better implementation once vue-roaster is updated
  56. document
  57. .getElementById("toasts-content")
  58. .childNodes.forEach(toast => {
  59. if (
  60. toast.innerHTML ===
  61. "Could not connect to the server."
  62. ) {
  63. toast.remove();
  64. }
  65. });
  66. }
  67. },
  68. nightmode(nightmode) {
  69. if (nightmode) this.enableNightMode();
  70. else this.disableNightMode();
  71. }
  72. },
  73. async mounted() {
  74. document.onkeydown = ev => {
  75. const event = ev || window.event;
  76. const { keyCode } = event;
  77. const shift = event.shiftKey;
  78. const ctrl = event.ctrlKey;
  79. const alt = event.altKey;
  80. const identifier = `${keyCode}.${shift}.${ctrl}`;
  81. if (this.keyIsDown === identifier) return;
  82. this.keyIsDown = identifier;
  83. keyboardShortcuts.handleKeyDown(event, keyCode, shift, ctrl, alt);
  84. };
  85. document.onkeyup = () => {
  86. this.keyIsDown = "";
  87. };
  88. keyboardShortcuts.registerShortcut("closeModal", {
  89. keyCode: 27,
  90. shift: false,
  91. ctrl: false,
  92. handler: () => {
  93. if (Object.keys(this.currentlyActive).length !== 0)
  94. this.closeCurrentModal();
  95. }
  96. });
  97. if (localStorage.getItem("github_redirect")) {
  98. this.$router.push(localStorage.getItem("github_redirect"));
  99. localStorage.removeItem("github_redirect");
  100. }
  101. ws.onConnect(true, () => {
  102. this.socketConnected = true;
  103. });
  104. ws.onDisconnect(true, () => {
  105. this.socketConnected = false;
  106. });
  107. this.apiDomain = await lofig.get("apiDomain");
  108. this.$router.onReady(() => {
  109. if (this.$route.query.err) {
  110. let { err } = this.$route.query;
  111. err = err
  112. .replace(new RegExp("<", "g"), "&lt;")
  113. .replace(new RegExp(">", "g"), "&gt;");
  114. this.$router.push({ query: {} });
  115. new Toast({ content: err, timeout: 20000 });
  116. }
  117. if (this.$route.query.msg) {
  118. let { msg } = this.$route.query;
  119. msg = msg
  120. .replace(new RegExp("<", "g"), "&lt;")
  121. .replace(new RegExp(">", "g"), "&gt;");
  122. this.$router.push({ query: {} });
  123. new Toast({ content: msg, timeout: 20000 });
  124. }
  125. });
  126. this.socket.dispatch("users.getPreferences", res => {
  127. if (res.status === "success") {
  128. this.changeAutoSkipDisliked(res.data.autoSkipDisliked);
  129. this.changeNightmode(res.data.nightmode);
  130. this.changeActivityLogPublic(res.data.activityLogPublic);
  131. if (this.nightmode) this.enableNightMode();
  132. else this.disableNightMode();
  133. }
  134. });
  135. this.socket.on("keep.event:user.session.removed", () =>
  136. window.location.reload()
  137. );
  138. },
  139. methods: {
  140. submitOnEnter: (cb, event) => {
  141. if (event.which === 13) cb();
  142. },
  143. enableNightMode: () => {
  144. document
  145. .getElementsByTagName("body")[0]
  146. .classList.add("night-mode");
  147. },
  148. disableNightMode: () => {
  149. document
  150. .getElementsByTagName("body")[0]
  151. .classList.remove("night-mode");
  152. },
  153. ...mapActions("modalVisibility", ["closeCurrentModal"]),
  154. ...mapActions("user/preferences", [
  155. "changeNightmode",
  156. "changeAutoSkipDisliked",
  157. "changeActivityLogPublic"
  158. ])
  159. }
  160. };
  161. </script>
  162. <style lang="scss">
  163. :root {
  164. --primary-color: var(--blue);
  165. --blue: rgb(2, 166, 242);
  166. --light-blue: rgb(163, 224, 255);
  167. --dark-blue: rgb(0, 102, 244);
  168. --teal: rgb(0, 209, 178);
  169. --purple: rgb(143, 40, 140);
  170. --light-purple: rgb(170, 141, 216);
  171. --yellow: rgb(241, 196, 15);
  172. --light-pink: rgb(228, 155, 166);
  173. --dark-pink: rgb(234, 72, 97);
  174. --orange: rgb(255, 94, 0);
  175. --dark-orange: rgb(250, 50, 0);
  176. --green: rgb(68, 189, 50);
  177. --red: rgb(231, 77, 60);
  178. --white: rgb(255, 255, 255);
  179. --black: rgb(0, 0, 0);
  180. --light-grey: rgb(245, 245, 245);
  181. --light-grey-2: rgb(221, 221, 221);
  182. --light-grey-3: rgb(195, 193, 195);
  183. --grey: rgb(107, 107, 107);
  184. --grey-2: rgb(113, 113, 113);
  185. --grey-3: rgb(126, 126, 126);
  186. --dark-grey: rgb(77, 77, 77);
  187. --dark-grey-2: rgb(51, 51, 51);
  188. --dark-grey-3: rgb(34, 34, 34);
  189. --dark-grey-4: rgb(26, 26, 26);
  190. --youtube: rgb(189, 46, 46);
  191. }
  192. .night-mode {
  193. div {
  194. // background-color: var(--black);
  195. color: var(--light-grey-2);
  196. }
  197. #toasts-container .toast {
  198. color: var(--dark-grey-2);
  199. background-color: var(--light-grey-3) !important;
  200. &:last-of-type {
  201. background-color: var(--light-grey) !important;
  202. }
  203. }
  204. h1,
  205. h2,
  206. h3,
  207. h4,
  208. h5,
  209. h6 {
  210. color: var(--white) !important;
  211. }
  212. p:not(.help),
  213. label {
  214. color: var(--light-grey-2) !important;
  215. }
  216. .content {
  217. background-color: var(--dark-grey-3) !important;
  218. }
  219. .tippy-tooltip.songActions-theme {
  220. background-color: var(--dark-grey);
  221. }
  222. }
  223. body.night-mode {
  224. background-color: var(--black) !important;
  225. }
  226. #toasts-container {
  227. z-index: 10000 !important;
  228. .toast {
  229. font-weight: 600;
  230. background-color: var(--dark-grey) !important;
  231. &:last-of-type {
  232. background-color: var(--dark-grey-2) !important;
  233. }
  234. }
  235. }
  236. html {
  237. overflow: auto !important;
  238. height: 100%;
  239. }
  240. body {
  241. background-color: var(--light-grey);
  242. color: var(--dark-grey);
  243. height: 100%;
  244. font-family: "Inter", Helvetica, Arial, sans-serif;
  245. }
  246. h1,
  247. h2,
  248. h3,
  249. h4,
  250. h5,
  251. h6,
  252. .sidebar-title {
  253. font-family: "Inter", Helvetica, Arial, sans-serif;
  254. }
  255. .modal-card-title {
  256. font-weight: 600;
  257. font-family: "Inter", Helvetica, Arial, sans-serif;
  258. }
  259. p,
  260. button,
  261. input,
  262. select,
  263. textarea {
  264. font-family: "Inter", Helvetica, Arial, sans-serif;
  265. }
  266. .upper-container {
  267. height: 100%;
  268. }
  269. .main-container {
  270. height: 100%;
  271. display: flex;
  272. flex-direction: column;
  273. > .container {
  274. flex: 1 0 auto;
  275. }
  276. }
  277. a {
  278. color: var(--primary-color);
  279. text-decoration: none;
  280. }
  281. .modal-card {
  282. margin: 0 !important;
  283. }
  284. .absolute-a {
  285. width: 100%;
  286. height: 100%;
  287. position: absolute;
  288. top: 0;
  289. left: 0;
  290. }
  291. .alert {
  292. padding: 20px;
  293. color: var(--white);
  294. background-color: var(--red);
  295. position: fixed;
  296. top: 50px;
  297. right: 50px;
  298. font-size: 2em;
  299. border-radius: 5px;
  300. z-index: 10000000;
  301. }
  302. .tippy-tooltip.dark-theme {
  303. font-size: 14px;
  304. padding: 5px 10px;
  305. }
  306. .tippy-tooltip.songActions-theme {
  307. font-size: 14px;
  308. padding: 5px 10px;
  309. border: 1px solid var(--light-grey-3);
  310. box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  311. background-color: white;
  312. .button {
  313. width: 146px;
  314. }
  315. .queue-actions,
  316. .addToPlaylistDropdown {
  317. display: inline-block;
  318. }
  319. i,
  320. a {
  321. display: inline-block;
  322. cursor: pointer;
  323. color: var(--dark-grey);
  324. vertical-align: middle;
  325. &:hover,
  326. &:focus {
  327. filter: brightness(90%);
  328. }
  329. &:not(:first-of-type) {
  330. margin-left: 5px;
  331. }
  332. }
  333. .play-icon {
  334. color: var(--green);
  335. }
  336. .edit-icon,
  337. .view-icon,
  338. .add-to-playlist-icon {
  339. color: var(--primary-color);
  340. }
  341. .hide-icon {
  342. color: var(--light-grey-3);
  343. }
  344. .stop-icon,
  345. .delete-icon {
  346. color: var(--red);
  347. }
  348. .report-icon {
  349. color: var(--yellow);
  350. }
  351. }
  352. .tippy-popper[x-placement^="top"] .tippy-tooltip {
  353. &.songActions-theme,
  354. &.addToPlaylist-theme {
  355. .tippy-arrow {
  356. border-top-color: var(--light-grey-3);
  357. }
  358. }
  359. }
  360. .tippy-popper[x-placement^="bottom"] .tippy-tooltip {
  361. &.songActions-theme,
  362. &.addToPlaylist-theme {
  363. .tippy-arrow {
  364. border-bottom-color: var(--light-grey-3);
  365. }
  366. }
  367. }
  368. .tippy-popper[x-placement^="left"] .tippy-tooltip {
  369. &.songActions-theme,
  370. &.addToPlaylist-theme {
  371. .tippy-arrow {
  372. border-left-color: var(--light-grey-3);
  373. }
  374. }
  375. }
  376. .tippy-popper[x-placement^="right"] .tippy-tooltip {
  377. &.songActions-theme,
  378. &.addToPlaylist-theme {
  379. .tippy-arrow {
  380. border-right-color: var(--light-grey-3);
  381. }
  382. }
  383. }
  384. .tippy-tooltip.addToPlaylist-theme {
  385. font-size: 14px;
  386. padding: 5px;
  387. border: 1px solid var(--light-grey-3);
  388. box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  389. background-color: white;
  390. color: var(--dark-grey);
  391. .nav-dropdown-items {
  392. .nav-item {
  393. width: 100%;
  394. justify-content: flex-start;
  395. border: 0;
  396. padding: 10px;
  397. font-size: 15.5px;
  398. height: 36px;
  399. background: var(--light-grey);
  400. border-radius: 5px;
  401. cursor: pointer;
  402. .checkbox-control {
  403. display: flex;
  404. align-items: center;
  405. margin-bottom: 0 !important;
  406. width: inherit;
  407. input {
  408. margin-right: 5px;
  409. }
  410. input[type="checkbox"] {
  411. opacity: 0;
  412. position: absolute;
  413. }
  414. label {
  415. display: flex;
  416. flex-direction: row;
  417. align-items: center;
  418. width: inherit;
  419. span {
  420. cursor: pointer;
  421. min-width: 24px;
  422. height: 24px;
  423. background-color: var(--white);
  424. display: inline-block;
  425. border: 1px solid var(--dark-grey-2);
  426. position: relative;
  427. border-radius: 3px;
  428. }
  429. p {
  430. margin-left: 10px;
  431. cursor: pointer;
  432. color: var(--black);
  433. overflow: hidden;
  434. text-overflow: ellipsis;
  435. white-space: nowrap;
  436. }
  437. }
  438. input[type="checkbox"]:checked + label span::after {
  439. content: "";
  440. width: 18px;
  441. height: 18px;
  442. left: 2px;
  443. top: 2px;
  444. border-radius: 3px;
  445. background-color: var(--primary-color);
  446. position: absolute;
  447. }
  448. }
  449. &:focus {
  450. outline-color: var(--light-grey-3);
  451. }
  452. &:not(:last-of-type) {
  453. margin-bottom: 5px;
  454. }
  455. }
  456. }
  457. }
  458. .select {
  459. &:after {
  460. border-color: var(--primary-color);
  461. border-width: 1.5px;
  462. margin-top: -3px;
  463. }
  464. select {
  465. height: 36px;
  466. }
  467. }
  468. .button:focus,
  469. .button:active {
  470. border-color: var(--light-grey-2) !important;
  471. }
  472. .input:focus,
  473. .input:active,
  474. .textarea:focus,
  475. .textarea:active,
  476. .select select:focus,
  477. .select select:active {
  478. border-color: var(--primary-color) !important;
  479. }
  480. button.delete:focus {
  481. background-color: rgba(10, 10, 10, 0.3);
  482. }
  483. .tag {
  484. padding-right: 6px !important;
  485. }
  486. .button {
  487. &:hover,
  488. &:focus {
  489. filter: brightness(95%);
  490. }
  491. &.is-success {
  492. background-color: var(--green) !important;
  493. }
  494. &.is-primary {
  495. background-color: var(--primary-color) !important;
  496. }
  497. &.is-danger {
  498. background-color: var(--red) !important;
  499. }
  500. &.is-info {
  501. background-color: var(--primary-color) !important;
  502. }
  503. &.is-warning {
  504. background-color: var(--yellow) !important;
  505. }
  506. }
  507. .input,
  508. .button {
  509. height: 36px;
  510. }
  511. .fadein-helpbox-enter-active {
  512. transition-duration: 0.3s;
  513. transition-timing-function: ease-in;
  514. }
  515. .fadein-helpbox-leave-active {
  516. transition-duration: 0.3s;
  517. transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
  518. }
  519. .fadein-helpbox-enter-to,
  520. .fadein-helpbox-leave {
  521. max-height: 100px;
  522. overflow: hidden;
  523. }
  524. .fadein-helpbox-enter,
  525. .fadein-helpbox-leave-to {
  526. overflow: hidden;
  527. max-height: 0;
  528. }
  529. .control {
  530. margin-bottom: 5px !important;
  531. }
  532. .input-with-button {
  533. .control {
  534. margin-right: 0px !important;
  535. }
  536. input,
  537. select {
  538. width: 100%;
  539. height: 36px;
  540. border-radius: 3px 0 0 3px;
  541. border-right: 0;
  542. border-color: var(--light-grey-3);
  543. }
  544. .button {
  545. height: 36px;
  546. border-radius: 0 3px 3px 0;
  547. }
  548. }
  549. .page-title {
  550. margin: 0 0 50px 0;
  551. }
  552. .material-icons {
  553. user-select: none;
  554. -webkit-user-select: none;
  555. }
  556. .icon-with-button {
  557. margin-right: 3px;
  558. font-size: 18px;
  559. }
  560. .verified-song {
  561. font-size: 17px;
  562. color: var(--primary-color);
  563. }
  564. .section-title,
  565. h4.section-title {
  566. font-size: 26px;
  567. font-weight: 600;
  568. margin: 0px;
  569. }
  570. .section-description {
  571. font-size: 16px;
  572. font-weight: 400;
  573. margin-bottom: 10px !important;
  574. }
  575. .section-horizontal-rule {
  576. margin: 15px 0 30px 0;
  577. }
  578. .section-margin-bottom {
  579. height: 30px;
  580. }
  581. .margin-top-zero {
  582. margin-top: 0 !important;
  583. }
  584. .margin-bottom-zero {
  585. margin-bottom: 0 !important;
  586. }
  587. /** Universial items e.g. playlist items, queue items, activity items */
  588. .item-draggable {
  589. cursor: move;
  590. }
  591. .universal-item {
  592. display: flex;
  593. flex-direction: row;
  594. align-items: center;
  595. justify-content: space-between;
  596. padding: 7.5px;
  597. border: 1px solid var(--light-grey-3);
  598. border-radius: 3px;
  599. .item-thumbnail {
  600. width: 65px;
  601. height: 65px;
  602. margin: -7.5px;
  603. border-radius: 3px 0 0 3px;
  604. }
  605. .item-title {
  606. font-size: 20px;
  607. overflow: hidden;
  608. text-overflow: ellipsis;
  609. white-space: nowrap;
  610. }
  611. .item-description {
  612. font-size: 14px;
  613. overflow: hidden;
  614. text-overflow: ellipsis;
  615. white-space: nowrap;
  616. }
  617. .universal-item-actions {
  618. display: flex;
  619. flex-direction: row;
  620. margin-left: 10px;
  621. justify-content: center;
  622. @media screen and (max-width: 800px) {
  623. flex-wrap: wrap;
  624. }
  625. .action-dropdown-icon {
  626. display: flex;
  627. color: var(--primary-color);
  628. }
  629. .queue-actions {
  630. display: flex;
  631. }
  632. .button {
  633. width: 146px;
  634. }
  635. i {
  636. cursor: pointer;
  637. color: var(--dark-grey);
  638. &:hover,
  639. &:focus {
  640. filter: brightness(90%);
  641. }
  642. &:not(:first-of-type) {
  643. margin-left: 5px;
  644. }
  645. }
  646. .play-icon {
  647. color: var(--green);
  648. }
  649. .edit-icon,
  650. .view-icon,
  651. .add-to-playlist-icon {
  652. color: var(--primary-color);
  653. }
  654. .hide-icon {
  655. color: var(--light-grey-3);
  656. }
  657. .stop-icon,
  658. .delete-icon {
  659. color: var(--red);
  660. }
  661. .report-icon {
  662. color: var(--yellow);
  663. }
  664. }
  665. }
  666. .save-button-mixin {
  667. min-width: 200px;
  668. &:disabled {
  669. background-color: var(--light-grey) !important;
  670. color: var(--black);
  671. }
  672. }
  673. .save-button-transition-enter-active {
  674. transition: all 0.1s ease;
  675. }
  676. .save-button-transition-enter {
  677. transform: translateX(20px);
  678. opacity: 0;
  679. }
  680. .youtube-icon {
  681. margin-right: 3px;
  682. height: 20px;
  683. width: 20px;
  684. -webkit-mask: url("/assets/social/youtube.svg") no-repeat center;
  685. mask: url("/assets/social/youtube.svg") no-repeat center;
  686. background-color: var(--youtube);
  687. }
  688. </style>