Files
Website/resources/js/components/dialogs/SMDialogChangePassword.vue
2023-04-19 22:31:47 +10:00

109 lines
2.9 KiB
Vue

<template>
<SMFormCard :loading="dialogLoading">
<h1>Change Password</h1>
<p class="text-center">Enter your new password below</p>
<SMForm :model-value="form" @submit="handleSubmit">
<SMInput control="password" type="password" label="New Password" />
<SMFormFooter>
<template #left>
<SMButton
type="secondary"
label="Cancel"
@click="handleClickCancel" />
</template>
<template #right>
<SMButton type="submit" label="Update" />
</template>
</SMFormFooter>
</SMForm>
</SMFormCard>
</template>
<script setup lang="ts">
import { onMounted, onUnmounted, reactive, ref } from "vue";
import { closeDialog } from "../SMDialog";
import { api } from "../../helpers/api";
import { Form, FormControl, FormObject } from "../../helpers/form";
import { And, Password, Required } from "../../helpers/validate";
import { useApplicationStore } from "../../store/ApplicationStore";
import { useToastStore } from "../../store/ToastStore";
import { useUserStore } from "../../store/UserStore";
import SMButton from "../SMButton.vue";
import SMFormCard from "../SMFormCard.vue";
import SMForm from "../SMForm.vue";
import SMFormFooter from "../SMFormFooter.vue";
import SMInput from "../SMInput.vue";
const form: FormObject = reactive(
Form({
password: FormControl("", And([Required(), Password()])),
})
);
const applicationStore = useApplicationStore();
const userStore = useUserStore();
const dialogLoading = ref(false);
/**
* User clicks cancel button to close dialog
*/
const handleClickCancel = () => {
closeDialog(false);
};
/**
* User clicks form submit button
*/
const handleSubmit = async () => {
try {
dialogLoading.value = true;
await api.put({
url: "/users/{id}",
params: {
id: userStore.id,
},
body: {
password: form.controls.password.value,
},
});
const toastStore = useToastStore();
toastStore.addToast({
title: "Password Reset",
content: "Your password has been reset",
type: "success",
});
closeDialog(false);
} catch (error) {
form.apiErrors(error);
} finally {
dialogLoading.value = false;
}
};
/**
* Handle a keyboard event in this component.
*
* @param {KeyboardEvent} event The keyboard event.
* @returns {boolean} If the event was handled.
*/
const eventKeyUp = (event: KeyboardEvent): boolean => {
if (event.key === "Escape") {
handleClickCancel();
return true;
}
return false;
};
onMounted(() => {
applicationStore.addKeyUpListener(eventKeyUp);
});
onUnmounted(() => {
applicationStore.removeKeyUpListener(eventKeyUp);
});
</script>