123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571 |
- <script setup lang="ts">
- import { defineAsyncComponent, ref, watch, onMounted } from "vue";
- import Toast from "toasters";
- import { storeToRefs } from "pinia";
- import { useUserAuthStore } from "@/stores/userAuth";
- import validation from "@/validation";
- import { useWebsocketsStore } from "@/stores/websockets";
- const MainHeader = defineAsyncComponent(
- () => import("@/components/MainHeader.vue")
- );
- const MainFooter = defineAsyncComponent(
- () => import("@/components/MainFooter.vue")
- );
- const InputHelpBox = defineAsyncComponent(
- () => import("@/components/InputHelpBox.vue")
- );
- const props = defineProps({
- mode: { type: String, enum: ["reset", "set"], default: "reset" }
- });
- const userAuthStore = useUserAuthStore();
- const { email: accountEmail } = storeToRefs(userAuthStore);
- const { socket } = useWebsocketsStore();
- const code = ref("");
- const inputs = ref({
- email: {
- value: "",
- hasBeenSentAlready: true,
- entered: false,
- valid: false,
- message: "Please enter a valid email address."
- },
- password: {
- value: "",
- visible: false,
- entered: false,
- valid: false,
- message:
- "Include at least one lowercase letter, one uppercase letter, one number and one special character."
- },
- passwordAgain: {
- value: "",
- visible: false,
- entered: false,
- valid: false,
- message: "This password must match."
- }
- });
- const step = ref(1);
- const inputElements = ref([]);
- const togglePasswordVisibility = input => {
- if (inputElements.value[input].type === "password") {
- inputElements.value[input].type = "text";
- inputs.value[input].visible = true;
- } else {
- inputElements.value[input].type = "password";
- inputs.value[input].visible = false;
- }
- };
- const checkPasswordMatch = (pass, passAgain) => {
- if (passAgain !== pass) {
- inputs.value.passwordAgain.message = "This password must match.";
- inputs.value.passwordAgain.valid = false;
- } else {
- inputs.value.passwordAgain.message = "Everything looks great!";
- inputs.value.passwordAgain.valid = true;
- }
- };
- const onInput = inputName => {
- inputs.value[inputName].entered = true;
- };
- const submitEmail = () => {
- if (
- inputs.value.email.value.indexOf("@") !==
- inputs.value.email.value.lastIndexOf("@") ||
- !validation.regex.emailSimple.test(inputs.value.email.value)
- )
- return new Toast("Invalid email format.");
- if (!inputs.value.email.value) return new Toast("Email cannot be empty");
- inputs.value.email.hasBeenSentAlready = false;
- if (props.mode === "set") {
- return socket.dispatch("users.requestPassword", res => {
- new Toast(res.message);
- if (res.status === "success") step.value = 2;
- });
- }
- return socket.dispatch(
- "users.requestPasswordReset",
- inputs.value.email.value,
- res => {
- new Toast(res.message);
- if (res.status === "success") {
- code.value = ""; // in case: already have a code -> request another code
- step.value = 2;
- } else step.value = 5;
- }
- );
- };
- const verifyCode = () => {
- if (!code.value) return new Toast("Code cannot be empty");
- return socket.dispatch(
- props.mode === "set"
- ? "users.verifyPasswordCode"
- : "users.verifyPasswordResetCode",
- code.value,
- res => {
- new Toast(res.message);
- if (res.status === "success") step.value = 3;
- }
- );
- };
- const changePassword = () => {
- if (inputs.value.password.valid && !inputs.value.passwordAgain.valid)
- return new Toast("Please ensure the passwords match.");
- if (!inputs.value.password.valid)
- return new Toast("Please enter a valid password.");
- return socket.dispatch(
- props.mode === "set"
- ? "users.changePasswordWithCode"
- : "users.changePasswordWithResetCode",
- code.value,
- inputs.value.password.value,
- res => {
- new Toast(res.message);
- if (res.status === "success") step.value = 4;
- else step.value = 5;
- }
- );
- };
- watch(
- () => inputs.value.email.value,
- value => {
- if (!value) return;
- if (
- value.indexOf("@") !== value.lastIndexOf("@") ||
- !validation.regex.emailSimple.test(value)
- ) {
- inputs.value.email.message = "Please enter a valid email address.";
- inputs.value.email.valid = false;
- } else {
- inputs.value.email.message = "Everything looks great!";
- inputs.value.email.valid = true;
- }
- }
- );
- watch(
- () => inputs.value.password.value,
- value => {
- if (!value) return;
- checkPasswordMatch(value, inputs.value.passwordAgain.value);
- if (!validation.isLength(value, 6, 200)) {
- inputs.value.password.message =
- "Password must have between 6 and 200 characters.";
- inputs.value.password.valid = false;
- } else if (!validation.regex.password.test(value)) {
- inputs.value.password.message =
- "Include at least one lowercase letter, one uppercase letter, one number and one special character.";
- inputs.value.password.valid = false;
- } else {
- inputs.value.password.message = "Everything looks great!";
- inputs.value.password.valid = true;
- }
- }
- );
- watch(
- () => inputs.value.passwordAgain.value,
- value => {
- if (!value) return;
- checkPasswordMatch(inputs.value.password.value, value);
- }
- );
- onMounted(() => {
- inputs.value.email.value = accountEmail.value;
- });
- </script>
- <template>
- <div>
- <page-metadata
- :title="mode === 'reset' ? 'Reset password' : 'Set password'"
- />
- <main-header />
- <div class="container">
- <div class="content-wrapper">
- <h1 id="title" class="has-text-centered page-title">
- {{ mode === "reset" ? "Reset" : "Set" }} your password
- </h1>
- <div id="steps">
- <p class="step" :class="{ selected: step === 1 }">1</p>
- <span class="divider"></span>
- <p class="step" :class="{ selected: step === 2 }">2</p>
- <span class="divider"></span>
- <p class="step" :class="{ selected: step === 3 }">3</p>
- </div>
- <div class="content-box-wrapper">
- <transition-group name="steps-fade" mode="out-in">
- <div class="content-box">
- <!-- Step 1 -- Enter email address -->
- <div v-if="step === 1" key="1">
- <h2 class="content-box-title">
- Enter your email address
- </h2>
- <p class="content-box-description">
- We will send a code to your email address to
- verify your identity.
- </p>
- <p class="content-box-optional-helper">
- <a @click="step = 2"
- >Already have a code?</a
- >
- </p>
- <div class="content-box-inputs">
- <div
- class="control is-grouped input-with-button"
- >
- <p class="control is-expanded">
- <input
- class="input"
- type="email"
- :ref="
- el =>
- (inputElements[
- 'email'
- ] = el)
- "
- placeholder="Enter email address here..."
- autofocus
- v-model="inputs.email.value"
- @keyup.enter="submitEmail()"
- @keypress="onInput('email')"
- @paste="onInput('email')"
- />
- </p>
- <p class="control">
- <button
- class="button is-info"
- @click="submitEmail()"
- >
- <i
- class="material-icons icon-with-button"
- >mail</i
- >Request
- </button>
- </p>
- </div>
- <transition name="fadein-helpbox">
- <input-help-box
- :entered="inputs.email.entered"
- :valid="inputs.email.valid"
- :message="inputs.email.message"
- />
- </transition>
- </div>
- </div>
- <!-- Step 2 -- Enter code -->
- <div v-if="step === 2" key="2">
- <h2 class="content-box-title">
- Enter the code sent to your email
- </h2>
- <p
- class="content-box-description"
- v-if="!inputs.email.hasBeenSentAlready"
- >
- A code has been sent to
- <strong>{{ inputs.email.value }}.</strong>
- </p>
- <p class="content-box-optional-helper">
- <a
- @click="
- inputs.email.value
- ? submitEmail()
- : (step = 1)
- "
- >Request another code</a
- >
- </p>
- <div class="content-box-inputs">
- <div
- class="control is-grouped input-with-button"
- >
- <p class="control is-expanded">
- <input
- class="input"
- type="text"
- placeholder="Enter code here..."
- autofocus
- v-model="code"
- @keyup.enter="verifyCode()"
- />
- </p>
- <p class="control">
- <button
- class="button is-info"
- @click="verifyCode()"
- >
- <i
- class="material-icons icon-with-button"
- >vpn_key</i
- >Verify
- </button>
- </p>
- </div>
- </div>
- </div>
- <!-- Step 3 -- Set new password -->
- <div v-if="step === 3" key="3">
- <h2 class="content-box-title">
- Set a new password
- </h2>
- <p class="content-box-description">
- Create a new password for your account.
- </p>
- <div class="content-box-inputs">
- <p class="control is-expanded">
- <label for="new-password"
- >New password</label
- >
- </p>
- <div id="password-visibility-container">
- <input
- class="input"
- id="new-password"
- type="password"
- :ref="
- el =>
- (inputElements['password'] =
- el)
- "
- placeholder="Enter password here..."
- v-model="inputs.password.value"
- @keypress="onInput('password')"
- @paste="onInput('password')"
- />
- <a
- @click="
- togglePasswordVisibility(
- 'password'
- )
- "
- >
- <i class="material-icons">
- {{
- !inputs.password.visible
- ? "visibility"
- : "visibility_off"
- }}
- </i>
- </a>
- </div>
- <transition name="fadein-helpbox">
- <input-help-box
- :entered="inputs.password.entered"
- :valid="inputs.password.valid"
- :message="inputs.password.message"
- />
- </transition>
- <p
- id="new-password-again-input"
- class="control is-expanded"
- >
- <label for="new-password-again"
- >New password again</label
- >
- </p>
- <div id="password-visibility-container">
- <input
- class="input"
- id="new-password-again"
- type="password"
- :ref="
- el =>
- (inputElements[
- 'passwordAgain'
- ] = el)
- "
- placeholder="Enter password here..."
- v-model="inputs.passwordAgain.value"
- @keyup.enter="changePassword()"
- @keypress="onInput('passwordAgain')"
- @paste="onInput('passwordAgain')"
- />
- <a
- @click="
- togglePasswordVisibility(
- 'passwordAgain'
- )
- "
- >
- <i class="material-icons">
- {{
- !inputs.passwordAgain
- .visible
- ? "visibility"
- : "visibility_off"
- }}
- </i>
- </a>
- </div>
- <transition name="fadein-helpbox">
- <input-help-box
- :entered="
- inputs.passwordAgain.entered
- "
- :valid="inputs.passwordAgain.valid"
- :message="
- inputs.passwordAgain.message
- "
- />
- </transition>
- <button
- id="change-password-button"
- class="button is-success"
- @click="changePassword()"
- >
- Change password
- </button>
- </div>
- </div>
- <div
- class="reset-status-box"
- v-if="step === 4"
- key="4"
- >
- <i class="material-icons success-icon"
- >check_circle</i
- >
- <h2>Password successfully {{ mode }}</h2>
- <router-link
- class="button is-dark"
- to="/settings"
- ><i class="material-icons icon-with-button"
- >undo</i
- >Return to Settings</router-link
- >
- </div>
- <div
- class="reset-status-box"
- v-if="step === 5"
- key="5"
- >
- <i class="material-icons error-icon">error</i>
- <h2>
- Password {{ mode }} failed, please try again
- later
- </h2>
- <router-link
- class="button is-dark"
- to="/settings"
- ><i class="material-icons icon-with-button"
- >undo</i
- >Return to Settings</router-link
- >
- </div>
- </div>
- </transition-group>
- </div>
- </div>
- </div>
- <main-footer />
- </div>
- </template>
- <style lang="less" scoped>
- .night-mode {
- .label {
- color: var(--light-grey-2);
- }
- .skip-step {
- border: 0;
- }
- }
- h1,
- h2,
- p {
- margin: 0;
- }
- .content-wrapper {
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .container {
- padding: 25px;
- #title {
- color: var(--black);
- font-size: 42px;
- }
- .reset-status-box {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- height: 356px;
- h2 {
- margin-top: 10px;
- font-size: 21px;
- font-weight: 800;
- color: var(--black);
- text-align: center;
- }
- .success-icon {
- color: var(--green);
- }
- .error-icon {
- color: var(--dark-red);
- }
- .success-icon,
- .error-icon {
- font-size: 125px;
- }
- .button {
- margin-top: 36px;
- }
- }
- }
- .control {
- margin-bottom: 2px !important;
- }
- </style>
|