aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/CommentForm
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-03-01 16:21:22 +0100
committerArmand Philippot <git@armandphilippot.com>2022-03-01 16:21:22 +0100
commit21c228600a7a69cfea3b7d8af6838bcfda1d7399 (patch)
tree9f402125927a66f795ea46c4968d7db3f6f41759 /src/components/CommentForm
parent69574a1db207706aa5b39030039bd578f9b0b67a (diff)
refactor: import comment form dynamically when reply to a comment
The comment form is displayed only if an user click on the reply button so importing it dynamically should improve performances.
Diffstat (limited to 'src/components/CommentForm')
-rw-r--r--src/components/CommentForm/CommentForm.tsx23
1 files changed, 16 insertions, 7 deletions
diff --git a/src/components/CommentForm/CommentForm.tsx b/src/components/CommentForm/CommentForm.tsx
index c409d04..eb7c100 100644
--- a/src/components/CommentForm/CommentForm.tsx
+++ b/src/components/CommentForm/CommentForm.tsx
@@ -4,14 +4,17 @@ import Notice from '@components/Notice/Notice';
import Spinner from '@components/Spinner/Spinner';
import { createComment } from '@services/graphql/mutations';
import { NoticeType } from '@ts/types/app';
-import { ForwardedRef, forwardRef, useState } from 'react';
+import { useEffect, useRef, useState } from 'react';
import { useIntl } from 'react-intl';
import styles from './CommentForm.module.scss';
-const CommentForm = (
- { articleId, parentId = 0 }: { articleId: number; parentId?: number },
- ref: ForwardedRef<HTMLInputElement>
-) => {
+const CommentForm = ({
+ articleId,
+ parentId = 0,
+}: {
+ articleId: number;
+ parentId?: number;
+}) => {
const intl = useIntl();
const [name, setName] = useState<string>('');
const [email, setEmail] = useState<string>('');
@@ -20,6 +23,12 @@ const CommentForm = (
const [isSubmitting, setIsSubmitting] = useState<boolean>(false);
const [notice, setNotice] = useState<string>();
const [noticeType, setNoticeType] = useState<NoticeType>('success');
+ const nameFieldRef = useRef<HTMLInputElement>(null);
+
+ useEffect(() => {
+ if (parentId === 0) return;
+ nameFieldRef.current && nameFieldRef.current.focus();
+ });
const resetForm = () => {
setName('');
@@ -154,7 +163,7 @@ const CommentForm = (
value={name}
setValue={setName}
required={true}
- ref={ref}
+ ref={nameFieldRef}
/>
</FormItem>
<FormItem>
@@ -216,4 +225,4 @@ const CommentForm = (
);
};
-export default forwardRef(CommentForm);
+export default CommentForm;