App.vue 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564
  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. <mobile-alert />
  8. <login-modal v-if="modals.header.login" />
  9. <register-modal v-if="modals.header.register" />
  10. </div>
  11. </div>
  12. </template>
  13. <script>
  14. import { mapState, mapActions } from "vuex";
  15. import Toast from "toasters";
  16. import Banned from "./pages/Banned.vue";
  17. import WhatIsNew from "./components/modals/WhatIsNew.vue";
  18. import MobileAlert from "./components/common/MobileAlert.vue";
  19. import LoginModal from "./components/modals/Login.vue";
  20. import RegisterModal from "./components/modals/Register.vue";
  21. import io from "./io";
  22. import keyboardShortcuts from "./keyboardShortcuts";
  23. export default {
  24. replace: false,
  25. data() {
  26. return {
  27. serverDomain: "",
  28. socketConnected: true,
  29. keyIsDown: false
  30. };
  31. },
  32. computed: mapState({
  33. loggedIn: state => state.user.auth.loggedIn,
  34. role: state => state.user.auth.role,
  35. username: state => state.user.auth.username,
  36. userId: state => state.user.auth.userId,
  37. banned: state => state.user.auth.banned,
  38. modals: state => state.modals.modals,
  39. currentlyActive: state => state.modals.currentlyActive,
  40. nightmode: state => state.user.preferences.nightmode
  41. }),
  42. methods: {
  43. submitOnEnter: (cb, event) => {
  44. if (event.which === 13) cb();
  45. },
  46. enableNightMode: () => {
  47. document
  48. .getElementsByTagName("body")[0]
  49. .classList.add("night-mode");
  50. },
  51. disableNightMode: () => {
  52. document
  53. .getElementsByTagName("body")[0]
  54. .classList.remove("night-mode");
  55. },
  56. ...mapActions("modals", ["closeCurrentModal"]),
  57. ...mapActions("user/preferences", ["changeNightmode"])
  58. },
  59. watch: {
  60. socketConnected(connected) {
  61. console.log(connected);
  62. if (!connected)
  63. new Toast({
  64. content: "Could not connect to the server.",
  65. persistant: true
  66. });
  67. else {
  68. // better implementation once vue-roaster is updated
  69. document
  70. .getElementById("toasts-content")
  71. .childNodes.forEach(toast => {
  72. if (
  73. toast.innerHTML ===
  74. "Could not connect to the server."
  75. ) {
  76. toast.remove();
  77. }
  78. });
  79. }
  80. },
  81. nightmode(nightmode) {
  82. if (nightmode) this.enableNightMode();
  83. else this.disableNightMode();
  84. }
  85. },
  86. beforeMount() {
  87. const nightmode =
  88. false || JSON.parse(localStorage.getItem("nightmode"));
  89. this.changeNightmode(nightmode);
  90. if (nightmode) this.enableNightMode();
  91. else this.disableNightMode();
  92. },
  93. mounted() {
  94. document.onkeydown = ev => {
  95. const event = ev || window.event;
  96. const { keyCode } = event;
  97. const shift = event.shiftKey;
  98. const ctrl = event.ctrlKey;
  99. const alt = event.altKey;
  100. const identifier = `${keyCode}.${shift}.${ctrl}`;
  101. if (this.keyIsDown === identifier) return;
  102. this.keyIsDown = identifier;
  103. keyboardShortcuts.handleKeyDown(event, keyCode, shift, ctrl, alt);
  104. };
  105. document.onkeyup = () => {
  106. this.keyIsDown = "";
  107. };
  108. keyboardShortcuts.registerShortcut("closeModal", {
  109. keyCode: 27,
  110. shift: false,
  111. ctrl: false,
  112. handler: () => {
  113. if (Object.keys(this.currentlyActive).length !== 0)
  114. this.closeCurrentModal();
  115. }
  116. });
  117. if (localStorage.getItem("github_redirect")) {
  118. this.$router.go(localStorage.getItem("github_redirect"));
  119. localStorage.removeItem("github_redirect");
  120. }
  121. io.onConnect(true, () => {
  122. this.socketConnected = true;
  123. });
  124. io.onConnectError(true, () => {
  125. this.socketConnected = false;
  126. });
  127. io.onDisconnect(true, () => {
  128. this.socketConnected = false;
  129. });
  130. lofig.get("serverDomain").then(serverDomain => {
  131. this.serverDomain = serverDomain;
  132. });
  133. this.$router.onReady(() => {
  134. if (this.$route.query.err) {
  135. let { err } = this.$route.query;
  136. err = err
  137. .replace(new RegExp("<", "g"), "&lt;")
  138. .replace(new RegExp(">", "g"), "&gt;");
  139. this.$router.push({ query: {} });
  140. new Toast({ content: err, timeout: 20000 });
  141. }
  142. if (this.$route.query.msg) {
  143. let { msg } = this.$route.query;
  144. msg = msg
  145. .replace(new RegExp("<", "g"), "&lt;")
  146. .replace(new RegExp(">", "g"), "&gt;");
  147. this.$router.push({ query: {} });
  148. new Toast({ content: msg, timeout: 20000 });
  149. }
  150. });
  151. io.getSocket(true, socket => {
  152. socket.on("keep.event:user.session.removed", () => {
  153. window.location.reload();
  154. });
  155. });
  156. },
  157. components: {
  158. WhatIsNew,
  159. MobileAlert,
  160. LoginModal,
  161. RegisterModal,
  162. Banned
  163. }
  164. };
  165. </script>
  166. <style lang="scss">
  167. @import "./styles/global.scss";
  168. .night-mode {
  169. div {
  170. // background-color: #000;
  171. color: #ddd;
  172. }
  173. #toasts-container .toast {
  174. color: #333;
  175. background-color: $light-grey-2 !important;
  176. &:last-of-type {
  177. background-color: $light-grey !important;
  178. }
  179. }
  180. h1,
  181. h2,
  182. h3,
  183. h4,
  184. h5,
  185. h6 {
  186. color: #fff !important;
  187. }
  188. p:not(.help),
  189. label {
  190. color: #ddd !important;
  191. }
  192. }
  193. body.night-mode {
  194. background-color: #000 !important;
  195. }
  196. #toasts-container {
  197. z-index: 10000 !important;
  198. .toast {
  199. font-weight: 600;
  200. background-color: $dark-grey !important;
  201. &:last-of-type {
  202. background-color: $dark-grey-2 !important;
  203. }
  204. }
  205. }
  206. html {
  207. overflow: auto !important;
  208. height: 100%;
  209. }
  210. body {
  211. background-color: $light-grey;
  212. color: $dark-grey;
  213. height: 100%;
  214. font-family: "Karla", Helvetica, Arial, sans-serif;
  215. }
  216. h1,
  217. h2,
  218. h3,
  219. h4,
  220. h5,
  221. h6,
  222. .sidebar-title {
  223. font-family: "Hind", Helvetica, Arial, sans-serif;
  224. }
  225. .modal-card-title {
  226. font-weight: 600;
  227. font-family: "Hind", Helvetica, Arial, sans-serif;
  228. }
  229. p,
  230. button,
  231. input,
  232. select,
  233. textarea {
  234. font-family: "Karla", Helvetica, Arial, sans-serif;
  235. }
  236. .upper-container {
  237. height: 100%;
  238. }
  239. .main-container {
  240. height: 100%;
  241. display: flex;
  242. flex-direction: column;
  243. > .container {
  244. flex: 1 0 auto;
  245. }
  246. }
  247. a {
  248. color: $primary-color;
  249. text-decoration: none;
  250. }
  251. .modal-card {
  252. margin: 0 !important;
  253. }
  254. .absolute-a {
  255. width: 100%;
  256. height: 100%;
  257. position: absolute;
  258. top: 0;
  259. left: 0;
  260. }
  261. .alert {
  262. padding: 20px;
  263. color: $white;
  264. background-color: $red;
  265. position: fixed;
  266. top: 50px;
  267. right: 50px;
  268. font-size: 2em;
  269. border-radius: 5px;
  270. z-index: 10000000;
  271. }
  272. .tooltip {
  273. position: relative;
  274. &:after {
  275. position: absolute;
  276. min-width: 80px;
  277. margin-left: -75%;
  278. text-align: center;
  279. padding: 7.5px 6px;
  280. border-radius: 2px;
  281. background-color: $dark-grey;
  282. font-size: 0.9em;
  283. color: $white;
  284. content: attr(data-tooltip);
  285. opacity: 0;
  286. transition: all 0.2s ease-in-out 0.1s;
  287. visibility: hidden;
  288. }
  289. &:hover:after {
  290. opacity: 1;
  291. visibility: visible;
  292. }
  293. }
  294. .tooltip-top {
  295. &:after {
  296. bottom: 150%;
  297. }
  298. &:hover {
  299. &:after {
  300. bottom: 120%;
  301. }
  302. }
  303. }
  304. .tooltip-bottom {
  305. &:after {
  306. top: 155%;
  307. }
  308. &:hover {
  309. &:after {
  310. top: 125%;
  311. }
  312. }
  313. }
  314. .tooltip-left {
  315. &:after {
  316. bottom: -10px;
  317. right: 130%;
  318. min-width: 100px;
  319. }
  320. &:hover {
  321. &:after {
  322. right: 110%;
  323. }
  324. }
  325. }
  326. .tooltip-right {
  327. &:after {
  328. bottom: -10px;
  329. left: 190%;
  330. min-width: 100px;
  331. }
  332. &:hover {
  333. &:after {
  334. left: 200%;
  335. }
  336. }
  337. }
  338. .select {
  339. &:after {
  340. border-color: $musare-blue;
  341. border-width: 1.5px;
  342. margin-top: -3px;
  343. }
  344. select {
  345. height: 36px;
  346. }
  347. }
  348. .button:focus,
  349. .button:active {
  350. border-color: #dbdbdb !important;
  351. }
  352. .input:focus,
  353. .input:active,
  354. .textarea:focus,
  355. .textarea:active,
  356. .select select:focus,
  357. .select select:active {
  358. border-color: $primary-color !important;
  359. }
  360. button.delete:focus {
  361. background-color: rgba(10, 10, 10, 0.3);
  362. }
  363. .tag {
  364. padding-right: 6px !important;
  365. }
  366. .button {
  367. &.is-success {
  368. background-color: $green !important;
  369. &:hover,
  370. &:focus {
  371. background-color: darken($green, 5%) !important;
  372. }
  373. }
  374. &.is-primary {
  375. background-color: $primary-color !important;
  376. &:hover,
  377. &:focus {
  378. background-color: darken($primary-color, 5%) !important;
  379. }
  380. }
  381. &.is-danger {
  382. background-color: $red !important;
  383. &:hover,
  384. &:focus {
  385. background-color: darken($red, 5%) !important;
  386. }
  387. }
  388. &.is-info {
  389. background-color: $blue !important;
  390. &:hover,
  391. &:focus {
  392. background-color: darken($blue, 5%) !important;
  393. }
  394. }
  395. &.is-warning {
  396. background-color: $yellow !important;
  397. &:hover,
  398. &:focus {
  399. background-color: darken($yellow, 5%) !important;
  400. }
  401. }
  402. }
  403. .input,
  404. .button {
  405. height: 36px;
  406. }
  407. .input {
  408. margin-top: 3px;
  409. }
  410. .help {
  411. margin-top: 0 !important;
  412. margin-bottom: 5px !important;
  413. font-size: 12px;
  414. }
  415. .fadein-helpbox-enter-active {
  416. transition-duration: 0.3s;
  417. transition-timing-function: ease-in;
  418. }
  419. .fadein-helpbox-leave-active {
  420. transition-duration: 0.3s;
  421. transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
  422. }
  423. .fadein-helpbox-enter-to,
  424. .fadein-helpbox-leave {
  425. max-height: 100px;
  426. overflow: hidden;
  427. }
  428. .fadein-helpbox-enter,
  429. .fadein-helpbox-leave-to {
  430. overflow: hidden;
  431. max-height: 0;
  432. }
  433. .control {
  434. margin-bottom: 5px !important;
  435. &.control:not(:first-of-type) {
  436. margin: 15px 0;
  437. }
  438. }
  439. .input-with-button {
  440. .control {
  441. margin-right: 0px !important;
  442. }
  443. input {
  444. height: 36px;
  445. border-radius: 3px 0 0 3px;
  446. border-right: 0;
  447. border-colour: $light-grey-2;
  448. }
  449. .button {
  450. height: 36px;
  451. border-radius: 0 3px 3px 0;
  452. }
  453. }
  454. .page-title {
  455. margin: 0 0 50px 0;
  456. }
  457. .material-icons {
  458. user-select: none;
  459. -webkit-user-select: none;
  460. }
  461. .icon-with-button {
  462. margin-right: 3px;
  463. font-size: 18px;
  464. }
  465. .section-title,
  466. h4.section-title {
  467. font-size: 26px;
  468. margin: 0px;
  469. }
  470. .section-description {
  471. font-size: 16px;
  472. margin-bottom: 10px !important;
  473. }
  474. .section-horizontal-rule {
  475. margin: 15px 0 30px 0;
  476. }
  477. .margin-top-zero {
  478. margin-top: 0 !important;
  479. }
  480. .margin-bottom-zero {
  481. margin-bottom: 0 !important;
  482. }
  483. </style>