mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-08 08:12:17 +01:00
118 lines
3.2 KiB
Vue
118 lines
3.2 KiB
Vue
<script setup lang="ts">
|
|
import { ref, reactive, nextTick } from 'vue';
|
|
import DialogModal from '@/packages/ui/src/DialogModal.vue';
|
|
import { Field, FieldError } from '@/packages/ui/src/field';
|
|
import PrimaryButton from '@/packages/ui/src/Buttons/PrimaryButton.vue';
|
|
import SecondaryButton from '@/packages/ui/src/Buttons/SecondaryButton.vue';
|
|
import TextInput from '@/packages/ui/src/Input/TextInput.vue';
|
|
import axios from 'axios';
|
|
|
|
const emit = defineEmits(['confirmed']);
|
|
|
|
defineProps({
|
|
title: {
|
|
type: String,
|
|
default: 'Confirm Password',
|
|
},
|
|
content: {
|
|
type: String,
|
|
default: 'For your security, please confirm your password to continue.',
|
|
},
|
|
button: {
|
|
type: String,
|
|
default: 'Confirm',
|
|
},
|
|
});
|
|
|
|
const confirmingPassword = ref(false);
|
|
|
|
const form = reactive({
|
|
password: '',
|
|
error: '',
|
|
processing: false,
|
|
});
|
|
|
|
const passwordInput = ref<HTMLInputElement | null>(null);
|
|
|
|
const startConfirmingPassword = () => {
|
|
axios.get(route('password.confirmation')).then((response) => {
|
|
if (response.data.confirmed) {
|
|
emit('confirmed');
|
|
} else {
|
|
confirmingPassword.value = true;
|
|
|
|
setTimeout(() => passwordInput.value?.focus(), 250);
|
|
}
|
|
});
|
|
};
|
|
|
|
const confirmPassword = () => {
|
|
form.processing = true;
|
|
|
|
axios
|
|
.post(route('password.confirm'), {
|
|
password: form.password,
|
|
})
|
|
.then(() => {
|
|
form.processing = false;
|
|
|
|
closeModal();
|
|
nextTick().then(() => emit('confirmed'));
|
|
})
|
|
.catch((error) => {
|
|
form.processing = false;
|
|
form.error = error.response.data.errors.password[0];
|
|
passwordInput.value?.focus();
|
|
});
|
|
};
|
|
|
|
const closeModal = () => {
|
|
confirmingPassword.value = false;
|
|
form.password = '';
|
|
form.error = '';
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<span>
|
|
<span @click="startConfirmingPassword">
|
|
<slot />
|
|
</span>
|
|
|
|
<DialogModal :show="confirmingPassword" @close="closeModal">
|
|
<template #title>
|
|
{{ title }}
|
|
</template>
|
|
|
|
<template #content>
|
|
{{ content }}
|
|
|
|
<Field class="mt-4">
|
|
<TextInput
|
|
ref="passwordInput"
|
|
v-model="form.password"
|
|
type="password"
|
|
class="block w-3/4"
|
|
placeholder="Password"
|
|
autocomplete="current-password"
|
|
@keyup.enter="confirmPassword" />
|
|
|
|
<FieldError v-if="form.error">{{ form.error }}</FieldError>
|
|
</Field>
|
|
</template>
|
|
|
|
<template #footer>
|
|
<SecondaryButton @click="closeModal"> Cancel </SecondaryButton>
|
|
|
|
<PrimaryButton
|
|
class="ms-3"
|
|
:class="{ 'opacity-25': form.processing }"
|
|
:disabled="form.processing"
|
|
@click="confirmPassword">
|
|
{{ button }}
|
|
</PrimaryButton>
|
|
</template>
|
|
</DialogModal>
|
|
</span>
|
|
</template>
|