Fixes: 1) Refactor `useProducts` and `useCategorybySlug` composables for improved error handling and lazy loading; 2) Correct import path in `product-page.vue` for `useProductBySlug`; 3) Update `useLanguages` composable to set current locale from local storage; 4) Remove unused `auth.js`, `base-header.vue`, and deprecated GraphQL fragments; Extra: Minor styling adjustments and removal of redundant console logs; Updated `package-lock.json` dependencies for version consistency.
56 lines
No EOL
1.2 KiB
Vue
56 lines
No EOL
1.2 KiB
Vue
<template>
|
|
<form @submit.prevent="handleReset()" class="form">
|
|
<h2 class="form__title">{{ t('forms.reset.title') }}</h2>
|
|
<ui-input
|
|
:type="'email'"
|
|
:placeholder="t('fields.email')"
|
|
:rules="[isEmail]"
|
|
v-model="email"
|
|
/>
|
|
<ui-button
|
|
class="form__button"
|
|
:isDisabled="!isFormValid"
|
|
:isLoading="loading"
|
|
>
|
|
{{ t('buttons.sendLink') }}
|
|
</ui-button>
|
|
</form>
|
|
</template>
|
|
|
|
<script setup>
|
|
import {useI18n} from "vue-i18n";
|
|
import {isEmail} from "@/core/rules/textFieldRules.js";
|
|
import {computed, ref} from "vue";
|
|
import UiInput from "@/components/ui/ui-input.vue";
|
|
import UiButton from "@/components/ui/ui-button.vue";
|
|
import {usePasswordReset} from "@/composables/auth";
|
|
|
|
const {t} = useI18n()
|
|
|
|
const email = ref('')
|
|
|
|
const isFormValid = computed(() => {
|
|
return (
|
|
isEmail(email.value) === true
|
|
)
|
|
})
|
|
|
|
const { resetPassword, loading } = usePasswordReset();
|
|
|
|
async function handleReset() {
|
|
await resetPassword(email.value);
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 20px;
|
|
|
|
&__title {
|
|
font-size: 36px;
|
|
color: $accent;
|
|
}
|
|
}
|
|
</style> |