blob: 7ba770f09712ec7a9c1ad9d9a8601caaa8ed8abd (
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
|
import { forwardRef, ForwardRefRenderFunction } from 'react';
import { useIntl } from 'react-intl';
import { Modal, type ModalProps } from '../../molecules';
import { SearchForm, type SearchFormProps } from '../forms';
import styles from './search-modal.module.scss';
export type SearchModalProps = SearchFormProps & {
/**
* Set additional classnames to modal wrapper.
*/
className?: ModalProps['className'];
};
const SearchModalWithRef: ForwardRefRenderFunction<
HTMLInputElement,
SearchModalProps
> = ({ className, searchPage }, ref) => {
const intl = useIntl();
const modalTitle = intl.formatMessage({
defaultMessage: 'Search',
description: 'SearchModal: modal title',
id: 'G+Twgm',
});
return (
<Modal className={`${styles.wrapper} ${className}`} title={modalTitle}>
<SearchForm hideLabel={true} ref={ref} searchPage={searchPage} />
</Modal>
);
};
/**
* SearchModal
*
* Render a search form modal.
*/
export const SearchModal = forwardRef(SearchModalWithRef);
|