diff options
Diffstat (limited to 'src/components/ContactForm/ContactForm.tsx')
| -rw-r--r-- | src/components/ContactForm/ContactForm.tsx | 53 |
1 files changed, 33 insertions, 20 deletions
diff --git a/src/components/ContactForm/ContactForm.tsx b/src/components/ContactForm/ContactForm.tsx index 6ab1e2b..d0e5ebe 100644 --- a/src/components/ContactForm/ContactForm.tsx +++ b/src/components/ContactForm/ContactForm.tsx @@ -1,5 +1,5 @@ import { ButtonSubmit } from '@components/Buttons'; -import { Form, FormItem, Input, TextArea } from '@components/Form'; +import { Form, FormItem, Input, Label, TextArea } from '@components/Form'; import { sendMail } from '@services/graphql/mutations'; import { settings } from '@utils/config'; import { FormEvent, useState } from 'react'; @@ -83,6 +83,34 @@ const ContactForm = () => { ); }; + const getLabel = ( + body: string, + htmlFor: string, + required: boolean = false + ) => { + return <Label body={body} htmlFor={htmlFor} required={required} />; + }; + + const nameLabelBody = intl.formatMessage({ + defaultMessage: 'Name', + description: 'ContactForm: name field label', + }); + + const emailLabelBody = intl.formatMessage({ + defaultMessage: 'Email', + description: 'ContactForm: email field label', + }); + + const subjectLabelBody = intl.formatMessage({ + defaultMessage: 'Subject', + description: 'ContactForm: subject field label', + }); + + const messageLabelBody = intl.formatMessage({ + defaultMessage: 'Message', + description: 'ContactForm: message field label', + }); + return ( <> <Form submitHandler={submitHandler}> @@ -92,11 +120,7 @@ const ContactForm = () => { name="name" value={name} setValue={setName} - label={intl.formatMessage({ - defaultMessage: 'Name', - description: 'ContactForm: name field label', - })} - required={true} + label={getLabel(nameLabelBody, 'contact-name', true)} /> </FormItem> <FormItem> @@ -106,11 +130,7 @@ const ContactForm = () => { name="email" value={email} setValue={setEmail} - label={intl.formatMessage({ - defaultMessage: 'Email', - description: 'ContactForm: email field label', - })} - required={true} + label={getLabel(emailLabelBody, 'contact-email', true)} /> </FormItem> <FormItem> @@ -119,10 +139,7 @@ const ContactForm = () => { name="subject" value={subject} setValue={setSubject} - label={intl.formatMessage({ - defaultMessage: 'Subject', - description: 'ContactForm: subject field label', - })} + label={getLabel(subjectLabelBody, 'contact-subject')} /> </FormItem> <FormItem> @@ -131,11 +148,7 @@ const ContactForm = () => { name="message" value={message} setValue={setMessage} - label={intl.formatMessage({ - defaultMessage: 'Message', - description: 'ContactForm: message field label', - })} - required={true} + label={getLabel(messageLabelBody, 'contact-message', true)} /> </FormItem> <FormItem> |
