mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-15 01:04:03 +00:00
customers, items, invoices, estimates, shared document form 77 files, 14451 lines. Typed layouts (CompanyLayout, AuthLayout, header, sidebar, company switcher), auth views (login, register, forgot/reset password), admin feature (dashboard, companies, users, settings with typed store), company features (dashboard with chart/ stats, customers CRUD, items CRUD, invoices CRUD with full store, estimates CRUD with full store), and shared document form components (items table, item row, totals, notes, tax popup, template select, exchange rate converter, calculation composable). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
102 lines
2.3 KiB
Vue
102 lines
2.3 KiB
Vue
<template>
|
|
<form id="loginForm" @submit.prevent="onSubmit">
|
|
<BaseInputGroup
|
|
:error="v$.email.$error && v$.email.$errors[0].$message"
|
|
:label="$t('login.enter_email')"
|
|
class="mb-4"
|
|
required
|
|
>
|
|
<BaseInput
|
|
v-model="formData.email"
|
|
:invalid="v$.email.$error"
|
|
focus
|
|
type="email"
|
|
name="email"
|
|
@input="v$.email.$touch()"
|
|
/>
|
|
</BaseInputGroup>
|
|
|
|
<BaseButton
|
|
:loading="isLoading"
|
|
:disabled="isLoading"
|
|
type="submit"
|
|
variant="primary"
|
|
>
|
|
<div v-if="!isSent">
|
|
{{ $t('validation.send_reset_link') }}
|
|
</div>
|
|
<div v-else>
|
|
{{ $t('validation.not_yet') }}
|
|
</div>
|
|
</BaseButton>
|
|
|
|
<div class="mt-4 mb-4 text-sm">
|
|
<router-link
|
|
to="/login"
|
|
class="text-sm text-primary-400 hover:text-body"
|
|
>
|
|
{{ $t('general.back_to_login') }}
|
|
</router-link>
|
|
</div>
|
|
</form>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { reactive, ref } from 'vue'
|
|
import { required, email, helpers } from '@vuelidate/validators'
|
|
import { useVuelidate } from '@vuelidate/core'
|
|
import { useI18n } from 'vue-i18n'
|
|
import { useAuthStore } from '../../../stores/auth.store'
|
|
import { useNotificationStore } from '../../../stores/notification.store'
|
|
import { handleApiError } from '../../../utils/error-handling'
|
|
|
|
interface ForgotPasswordForm {
|
|
email: string
|
|
}
|
|
|
|
const notificationStore = useNotificationStore()
|
|
const authStore = useAuthStore()
|
|
const { t } = useI18n()
|
|
|
|
const formData = reactive<ForgotPasswordForm>({
|
|
email: '',
|
|
})
|
|
|
|
const isSent = ref<boolean>(false)
|
|
const isLoading = ref<boolean>(false)
|
|
|
|
const rules = {
|
|
email: {
|
|
required: helpers.withMessage(t('validation.required'), required),
|
|
email: helpers.withMessage(t('validation.email_incorrect'), email),
|
|
},
|
|
}
|
|
|
|
const v$ = useVuelidate(rules, formData)
|
|
|
|
async function onSubmit(): Promise<void> {
|
|
v$.value.$touch()
|
|
|
|
if (v$.value.$invalid) {
|
|
return
|
|
}
|
|
|
|
try {
|
|
isLoading.value = true
|
|
|
|
await authStore.forgotPassword({ email: formData.email })
|
|
|
|
notificationStore.showNotification({
|
|
type: 'success',
|
|
message: 'Mail sent successfully',
|
|
})
|
|
|
|
isSent.value = true
|
|
} catch (err: unknown) {
|
|
handleApiError(err)
|
|
} finally {
|
|
isLoading.value = false
|
|
}
|
|
}
|
|
</script>
|