blob: c1a7ca7a0b3aba9d717e3069992ac2eb2c3aa9c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
import { ButtonSubmit } from '@components/Buttons';
import { Form, Input } from '@components/Form';
import { SearchIcon } from '@components/Icons';
import { t } from '@lingui/macro';
import { useRouter } from 'next/router';
import { FormEvent, useEffect, useRef, useState } from 'react';
import styles from './SearchForm.module.scss';
const SearchForm = ({ isOpened }: { isOpened: boolean }) => {
const [query, setQuery] = useState('');
const inputRef = useRef<HTMLInputElement>(null);
const router = useRouter();
useEffect(() => {
setTimeout(() => {
if (inputRef.current) {
inputRef.current.focus();
}
}, 800);
}, [isOpened]);
const launchSearch = (e: FormEvent) => {
e.preventDefault();
router.push({ pathname: '/recherche', query: { s: query } });
setQuery('');
};
return (
<>
<div className={styles.title}>{t`Search`}</div>
<Form submitHandler={launchSearch} modifier="search">
<Input
ref={inputRef}
id="search-query"
name="search-query"
type="search"
value={query}
setValue={setQuery}
/>
<ButtonSubmit modifier="search">
<SearchIcon />
<span className="screen-reader-text">{t`Search`}</span>
</ButtonSubmit>
</Form>
</>
);
};
export default SearchForm;
|