aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/organisms/forms/search-form.tsx
blob: f80d2951a63e974d2e6e3c812fd673bfb8e1f446 (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
import { useRouter } from 'next/router';
import { forwardRef, ForwardRefRenderFunction, useId, useState } from 'react';
import { useIntl } from 'react-intl';
import { Button, Form, MagnifyingGlass } from '../../atoms';
import { LabelledField, type LabelledFieldProps } from '../../molecules';
import styles from './search-form.module.scss';

export type SearchFormProps = Pick<LabelledFieldProps, 'hideLabel'> & {
  /**
   * The search page url.
   */
  searchPage: string;
};

const SearchFormWithRef: ForwardRefRenderFunction<
  HTMLInputElement,
  SearchFormProps
> = ({ hideLabel, searchPage }, ref) => {
  const intl = useIntl();
  const fieldLabel = intl.formatMessage({
    defaultMessage: 'Search for:',
    description: 'SearchForm: field accessible label',
    id: 'X8oujO',
  });
  const buttonLabel = intl.formatMessage({
    defaultMessage: 'Search',
    description: 'SearchForm: button accessible name',
    id: 'WMqQrv',
  });

  const router = useRouter();
  const [value, setValue] = useState<string>('');

  const submitHandler = () => {
    router.push({ pathname: searchPage, query: { s: value } });
    setValue('');
  };

  const id = useId();

  return (
    <Form className={styles.wrapper} grouped={false} onSubmit={submitHandler}>
      <LabelledField
        className={styles.field}
        hideLabel={hideLabel}
        id={`search-form-${id}`}
        label={fieldLabel}
        name="search-form"
        ref={ref}
        setValue={setValue}
        type="search"
        value={value}
      />
      <Button
        aria-label={buttonLabel}
        className={styles.btn}
        kind="neutral"
        shape="initial"
        type="submit"
      >
        <MagnifyingGlass className={styles.btn__icon} />
      </Button>
    </Form>
  );
};

/**
 * SearchForm component
 *
 * Render a search form.
 */
export const SearchForm = forwardRef(SearchFormWithRef);