102 lines
3.3 KiB
Vue
102 lines
3.3 KiB
Vue
<script setup>
|
|
import InputError from "../../../Components/InputError.vue";
|
|
import InputLabel from "../../../Components/InputLabel.vue";
|
|
import Modal from "../../../Components/Modal.vue";
|
|
import TextInput from "../../../Components/TextInput.vue";
|
|
import { useForm } from "@inertiajs/vue3";
|
|
import { nextTick, ref } from "vue";
|
|
|
|
const confirmingUserDeletion = ref(false);
|
|
const passwordInput = ref(null);
|
|
|
|
const form = useForm({
|
|
password: "",
|
|
});
|
|
|
|
const confirmUserDeletion = () => {
|
|
confirmingUserDeletion.value = true;
|
|
|
|
nextTick(() => passwordInput.value.focus());
|
|
};
|
|
|
|
const deleteUser = () => {
|
|
form.post(route("profile.destroy"), {
|
|
preserveScroll: true,
|
|
onSuccess: () => closeModal(),
|
|
onError: () => passwordInput.value.focus(),
|
|
onFinish: () => form.reset(),
|
|
});
|
|
};
|
|
|
|
const closeModal = () => {
|
|
confirmingUserDeletion.value = false;
|
|
|
|
form.reset();
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<section class="space-y-6">
|
|
<header>
|
|
<h2 class="text-lg font-medium text-gray-100">Delete Account</h2>
|
|
|
|
<p class="mt-1 text-sm text-gray-400">
|
|
Once your account is deleted, all of its resources and data will
|
|
be permanently deleted. Before deleting your account, please
|
|
download any data or information that you wish to retain.
|
|
</p>
|
|
</header>
|
|
|
|
<button
|
|
class="px-6 py-3 border-red-600 border rounded-lg hover:bg-red-600 hover:border-red-600"
|
|
@click="confirmUserDeletion"
|
|
>
|
|
Delete Account
|
|
</button>
|
|
|
|
<Modal :show="confirmingUserDeletion" @close="closeModal">
|
|
<div class="p-6">
|
|
<h2 class="text-lg font-medium text-gray-100">
|
|
Are you sure you want to delete your account?
|
|
</h2>
|
|
|
|
<p class="mt-1 text-sm text-gray-400">
|
|
Once your account is deleted, all of its resources and data
|
|
will be permanently deleted. Please enter your password to
|
|
confirm you would like to permanently delete your account.
|
|
</p>
|
|
|
|
<div class="mt-6">
|
|
<InputLabel
|
|
for="password"
|
|
value="Password"
|
|
class="sr-only"
|
|
/>
|
|
|
|
<TextInput
|
|
id="password"
|
|
ref="passwordInput"
|
|
v-model="form.password"
|
|
type="password"
|
|
class="mt-1 block w-3/4"
|
|
placeholder="Password"
|
|
@keyup.enter="deleteUser"
|
|
/>
|
|
|
|
<InputError :message="form.errors.password" class="mt-2" />
|
|
</div>
|
|
|
|
<div class="mt-6 flex justify-end">
|
|
<button
|
|
class="px-6 py-3 border-red-600 border rounded-lg hover:bg-red-600 hover:border-red-600"
|
|
:class="{ 'opacity-25': form.processing }"
|
|
:disabled="form.processing"
|
|
@click="deleteUser"
|
|
>
|
|
Delete Account
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</Modal>
|
|
</section>
|
|
</template>
|