blob: 866bc259becc9b5c9016b02f7fc7ee2660fde37f (
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
|
import Modal, { type ModalProps } from '@components/molecules/modals/modal';
import { FC } from 'react';
import { useIntl } from 'react-intl';
import SearchForm, { SearchFormProps } from '../forms/search-form';
import styles from './search-modal.module.scss';
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}`}>
<SearchForm hideLabel={true} searchPage={searchPage} />
</Modal>
);
};
export default SearchModal;
|