Files
ikea/resources/js/Pages/Profile/Partials/UpdatePasswordForm.vue
2022-08-30 10:56:42 +07:00

119 lines
4.1 KiB
Vue

<script setup>
import { ref } from 'vue';
import { useForm } from '@inertiajs/inertia-vue3';
import JetActionMessage from '@/Jetstream/ActionMessage.vue';
import JetButton from '@/Jetstream/Button.vue';
import JetFormSection from '@/Jetstream/FormSection.vue';
import JetInput from '@/Jetstream/Input.vue';
import JetInputError from '@/Jetstream/InputError.vue';
import JetLabel from '@/Jetstream/Label.vue';
import Button from '@/Jetstream/Button.vue';
import Icon from '@/Components/Icon.vue';
const passwordInput = ref(null);
const currentPasswordInput = ref(null);
const form = useForm({
current_password: '',
password: '',
password_confirmation: '',
});
const peek = ref(false);
const toggle = () => {
peek.value = !peek.value;
}
const updatePassword = () => {
form.put(route('user-password.update'), {
errorBag: 'updatePassword',
preserveScroll: true,
onSuccess: () => form.reset(),
onError: () => {
if (form.errors.password) {
form.reset('password', 'password_confirmation');
passwordInput.value.focus();
}
if (form.errors.current_password) {
form.reset('current_password');
currentPasswordInput.value.focus();
}
},
});
};
</script>
<template>
<JetFormSection @submitted="updatePassword">
<template #title>
Update Password
</template>
<template #description>
Ensure your account is using a long, random password to stay secure.
</template>
<template #form>
<div class="col-span-6 sm:col-span-4">
<JetLabel for="current_password" value="Current Password" />
<div class="flex">
<JetInput
id="current_password"
ref="currentPasswordInput"
v-model="form.current_password"
:type="peek ? 'text' : 'password'"
class="mt-1 block w-full rounded-r-none"
autocomplete="current-password"
/>
<Button
type="button"
class="mt-1 block w-full rounded-l-none basis-12 bg-slate-200 outline outline-1 outline-gray-300 text-black hover:bg-slate-600 hover:text-slate-50"
@click="toggle"
>
<Icon v-if="peek" name="eye-slash" />
<Icon v-else name="eye" />
</Button>
</div>
<JetInputError :message="form.errors.current_password" class="mt-2" />
</div>
<div class="col-span-6 sm:col-span-4">
<JetLabel for="password" value="New Password" />
<JetInput
id="password"
ref="passwordInput"
v-model="form.password"
:type="peek ? 'text' : 'password'"
class="mt-1 block w-full"
autocomplete="new-password"
/>
<JetInputError :message="form.errors.password" class="mt-2" />
</div>
<div class="col-span-6 sm:col-span-4">
<JetLabel for="password_confirmation" value="Confirm Password" />
<JetInput
id="password_confirmation"
v-model="form.password_confirmation"
:type="peek ? 'text' : 'password'"
class="mt-1 block w-full"
autocomplete="new-password"
/>
<JetInputError :message="form.errors.password_confirmation" class="mt-2" />
</div>
</template>
<template #actions>
<JetActionMessage :on="form.recentlySuccessful" class="mr-3">
Saved.
</JetActionMessage>
<JetButton :class="{ 'opacity-25': form.processing }" :disabled="form.processing">
Save
</JetButton>
</template>
</JetFormSection>
</template>