blob: e92bf1b052fdc260ca5799ecbfccc1d28a56affb (
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
|
import Spinner from '@components/atoms/loaders/spinner';
import Modal, { type ModalProps } from '@components/molecules/modals/modal';
import dynamic from 'next/dynamic';
import { FC } from 'react';
import { useIntl } from 'react-intl';
import { type SearchFormProps } from '../forms/search-form';
import styles from './search-modal.module.scss';
const DynamicSearchForm = dynamic(
() => import('@components/organisms/forms/search-form'),
{
loading: () => <Spinner />,
}
);
export type SearchModalProps = Pick<SearchFormProps, 'searchPage'> & {
/**
* Set additional classnames to modal wrapper.
*/
className?: ModalProps['className'];
};
/**
* SearchModal
*
* Render a search form modal.
*/
const SearchModal: FC<SearchModalProps> = ({ className, searchPage }) => {
const intl = useIntl();
const modalTitle = intl.formatMessage({
defaultMessage: 'Search',
description: 'SearchModal: modal title',
id: 'G+Twgm',
});
return (
<Modal title={modalTitle} className={`${styles.wrapper} ${className}`}>
<DynamicSearchForm hideLabel={true} searchPage={searchPage} />
</Modal>
);
};
export default SearchModal;
|