summaryrefslogtreecommitdiffstats
path: root/src/components/ContactForm/ContactForm.tsx
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-02-25 19:29:44 +0100
committerArmand Philippot <git@armandphilippot.com>2022-02-25 19:29:44 +0100
commit99ae0a9d3a923ca1e998dc9b504dad607fdfd768 (patch)
tree70ec0c29d003d462de6926f1faa09354e3ff6d90 /src/components/ContactForm/ContactForm.tsx
parent774d5b4c538d93889bf743b6cd7d01a85f8715e6 (diff)
parente26d821f738525477472e631d170d9ed218c1603 (diff)
refactor: split form styles and combine components
I think it is better to keep styles close to the corresponding components. So I splitted the unique stylesheet. I also combine select, textarea and input components into a single one since they share the same logic and the same styles.
Diffstat (limited to 'src/components/ContactForm/ContactForm.tsx')
-rw-r--r--src/components/ContactForm/ContactForm.tsx61
1 files changed, 39 insertions, 22 deletions
diff --git a/src/components/ContactForm/ContactForm.tsx b/src/components/ContactForm/ContactForm.tsx
index 6ab1e2b..48772a0 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 { Field, Form, FormItem, Label } from '@components/FormElements';
import { sendMail } from '@services/graphql/mutations';
import { settings } from '@utils/config';
import { FormEvent, useState } from 'react';
@@ -83,59 +83,76 @@ 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}>
<FormItem>
- <Input
+ <Field
id="contact-name"
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>
- <Input
+ <Field
id="contact-email"
- type="email"
+ kind="email"
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>
- <Input
+ <Field
id="contact-subject"
name="subject"
value={subject}
setValue={setSubject}
- label={intl.formatMessage({
- defaultMessage: 'Subject',
- description: 'ContactForm: subject field label',
- })}
+ label={getLabel(subjectLabelBody, 'contact-subject')}
/>
</FormItem>
<FormItem>
- <TextArea
+ <Field
id="contact-message"
+ kind="textarea"
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>