Fixes: 1) Correct mutation name from `setlanguage` to `setLanguage` for consistency; 2) Improve product listing reactivity by addressing missing initialization in `useStore`; 3) Replace generic product queries with parametrized `useProducts` for modularity; 4) Resolve minor typos, missing semicolons, and code formatting inconsistencies. Extra: 1) Refactor feedback-related types, composables, and GraphQL utilities for modularity; 2) Update styles, Vue templates, and related scripts with enhanced formatting; 3) Remove unused methods like `getProducts`, standardizing query reactivity; 4) Cleanup and organize imports across multiple files.
88 lines
No EOL
1.9 KiB
Vue
88 lines
No EOL
1.9 KiB
Vue
<template>
|
|
<form @submit.prevent="handleContactUs()" class="form">
|
|
<ui-input
|
|
:type="'text'"
|
|
:placeholder="t('fields.name')"
|
|
:rules="[required]"
|
|
v-model="name"
|
|
/>
|
|
<ui-input
|
|
:type="'email'"
|
|
:placeholder="t('fields.email')"
|
|
:rules="[required]"
|
|
v-model="email"
|
|
:inputMode="'email'"
|
|
/>
|
|
<ui-input
|
|
:type="'text'"
|
|
:placeholder="t('fields.phoneNumber')"
|
|
:rules="[required]"
|
|
v-model="phoneNumber"
|
|
:inputMode="'tel'"
|
|
/>
|
|
<ui-input
|
|
:type="'text'"
|
|
:placeholder="t('fields.subject')"
|
|
:rules="[required]"
|
|
v-model="subject"
|
|
/>
|
|
<ui-textarea
|
|
:placeholder="t('fields.message')"
|
|
:rules="[required]"
|
|
v-model="message"
|
|
/>
|
|
<ui-button
|
|
:type="'submit'"
|
|
class="form__button"
|
|
:isDisabled="!isFormValid"
|
|
:isLoading="loading"
|
|
>
|
|
{{ t('buttons.send') }}
|
|
</ui-button>
|
|
</form>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import {useValidators} from "~/composables/rules";
|
|
import {useContactUs} from "~/composables/contact/index.js";
|
|
|
|
const { t } = useI18n();
|
|
|
|
const { required } = useValidators();
|
|
|
|
const name = ref<string>('');
|
|
const email = ref<string>('');
|
|
const phoneNumber = ref<string>('');
|
|
const subject = ref<string>('');
|
|
const message = ref<string>('');
|
|
|
|
const isFormValid = computed(() => {
|
|
return (
|
|
required(name.value) === true &&
|
|
required(email.value) === true &&
|
|
required(phoneNumber.value) === true &&
|
|
required(subject.value) === true &&
|
|
required(message.value) === true
|
|
);
|
|
});
|
|
|
|
const { contactUs, loading } = useContactUs();
|
|
|
|
async function handleContactUs() {
|
|
await contactUs(
|
|
name.value,
|
|
email.value,
|
|
phoneNumber.value,
|
|
subject.value,
|
|
message.value,
|
|
);
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 20px;
|
|
}
|
|
</style> |