Login.vue 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  1. <template>
  2. <div>
  3. <page-metadata title="Login" v-if="isPage" />
  4. <div class="modal is-active">
  5. <div class="modal-background" @click="closeLoginModal()" />
  6. <div class="modal-card">
  7. <header class="modal-card-head">
  8. <p class="modal-card-title">Login</p>
  9. <button
  10. v-if="!isPage"
  11. class="delete"
  12. @click="closeLoginModal()"
  13. />
  14. </header>
  15. <section class="modal-card-body">
  16. <form>
  17. <!-- email address -->
  18. <p class="control">
  19. <label class="label">Email</label>
  20. <input
  21. v-model="email"
  22. class="input"
  23. type="email"
  24. placeholder="Email..."
  25. @keypress="submitOnEnter(submitModal, $event)"
  26. />
  27. </p>
  28. <!-- password -->
  29. <p class="control">
  30. <label class="label">Password</label>
  31. </p>
  32. <div id="password-visibility-container">
  33. <input
  34. v-model="password.value"
  35. class="input"
  36. type="password"
  37. ref="password"
  38. placeholder="Password..."
  39. @input="checkForAutofill($event)"
  40. @keypress="submitOnEnter(submitModal, $event)"
  41. />
  42. <a @click="togglePasswordVisibility()">
  43. <i class="material-icons">
  44. {{
  45. !password.visible
  46. ? "visibility"
  47. : "visibility_off"
  48. }}
  49. </i>
  50. </a>
  51. </div>
  52. <p class="content-box-optional-helper">
  53. <router-link
  54. id="forgot-password"
  55. href="#"
  56. to="/reset_password"
  57. @click="closeLoginModal()"
  58. >
  59. Forgot password?
  60. </router-link>
  61. </p>
  62. <br />
  63. <p>
  64. By logging in you agree to our
  65. <router-link to="/terms" @click="closeLoginModal()">
  66. Terms of Service
  67. </router-link>
  68. and
  69. <router-link
  70. to="/privacy"
  71. @click="closeLoginModal()"
  72. >
  73. Privacy Policy</router-link
  74. >.
  75. </p>
  76. </form>
  77. </section>
  78. <footer class="modal-card-foot">
  79. <div id="actions">
  80. <a
  81. class="button is-primary"
  82. href="#"
  83. @click="submitModal()"
  84. >Login</a
  85. >
  86. <a
  87. class="button is-github"
  88. :href="apiDomain + '/auth/github/authorize'"
  89. @click="githubRedirect()"
  90. >
  91. <div class="icon">
  92. <img
  93. class="invert"
  94. src="/assets/social/github.svg"
  95. />
  96. </div>
  97. &nbsp;&nbsp;Login with GitHub
  98. </a>
  99. </div>
  100. <p class="content-box-optional-helper">
  101. <router-link to="/register" v-if="isPage">
  102. Don't have an account?
  103. </router-link>
  104. <a v-else href="#" @click="changeToRegisterModal()">
  105. Don't have an account?
  106. </a>
  107. </p>
  108. </footer>
  109. </div>
  110. </div>
  111. </div>
  112. </template>
  113. <script>
  114. import { mapActions } from "vuex";
  115. import Toast from "toasters";
  116. export default {
  117. data() {
  118. return {
  119. email: "",
  120. password: {
  121. value: "",
  122. visible: false
  123. },
  124. apiDomain: "",
  125. isPage: false
  126. };
  127. },
  128. async mounted() {
  129. this.apiDomain = await lofig.get("apiDomain");
  130. if (this.$route.path === "/login") this.isPage = true;
  131. },
  132. methods: {
  133. checkForAutofill(event) {
  134. if (
  135. event.target.value !== "" &&
  136. event.inputType === undefined &&
  137. event.data === undefined &&
  138. event.dataTransfer === undefined &&
  139. event.isComposing === undefined
  140. )
  141. this.submitModal();
  142. },
  143. submitOnEnter(cb, event) {
  144. if (event.which === 13) cb();
  145. },
  146. submitModal() {
  147. this.login({
  148. email: this.email,
  149. password: this.password.value
  150. })
  151. .then(res => {
  152. if (res.status === "success") window.location.reload();
  153. })
  154. .catch(err => new Toast(err.message));
  155. },
  156. togglePasswordVisibility() {
  157. if (this.$refs.password.type === "password") {
  158. this.$refs.password.type = "text";
  159. this.password.visible = true;
  160. } else {
  161. this.$refs.password.type = "password";
  162. this.password.visible = false;
  163. }
  164. },
  165. changeToRegisterModal() {
  166. if (!this.isPage) {
  167. this.closeLoginModal();
  168. this.openModal("register");
  169. }
  170. },
  171. closeLoginModal() {
  172. if (!this.isPage) this.closeModal("login");
  173. },
  174. githubRedirect() {
  175. if (!this.isPage)
  176. localStorage.setItem("github_redirect", this.$route.path);
  177. },
  178. ...mapActions("modalVisibility", ["closeModal", "openModal"]),
  179. ...mapActions("user/auth", ["login"])
  180. }
  181. };
  182. </script>
  183. <style lang="scss" scoped>
  184. .night-mode {
  185. .modal-card,
  186. .modal-card-head,
  187. .modal-card-body,
  188. .modal-card-foot {
  189. background-color: var(--dark-grey-3);
  190. }
  191. .label,
  192. p:not(.help) {
  193. color: var(--light-grey-2);
  194. }
  195. }
  196. .modal-card-foot {
  197. display: flex;
  198. justify-content: space-between;
  199. flex-wrap: wrap;
  200. .content-box-optional-helper {
  201. margin-top: 0;
  202. }
  203. }
  204. .button.is-github {
  205. background-color: var(--dark-grey-2);
  206. color: var(--white) !important;
  207. }
  208. .is-github:focus {
  209. background-color: var(--dark-grey-4);
  210. }
  211. .is-primary:focus {
  212. background-color: var(--primary-color) !important;
  213. }
  214. .invert {
  215. filter: brightness(5);
  216. }
  217. </style>