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
73
74
75
76
77
|
import { forwardRef, type ForwardRefRenderFunction } from 'react';
import { useIntl } from 'react-intl';
import { useAutofocus } from '../../../utils/hooks';
import { BooleanField, type BooleanFieldProps, Icon } from '../../atoms';
import { SearchModal, type SearchModalProps } from '../modals';
import searchStyles from './search.module.scss';
import sharedStyles from './toolbar-items.module.scss';
export type SearchProps = {
/**
* Set additional classnames to the modal wrapper.
*/
className?: SearchModalProps['className'];
/**
* The button state.
*/
isActive: BooleanFieldProps['isChecked'];
/**
* A callback function to execute search.
*/
searchPage: SearchModalProps['searchPage'];
/**
* A callback function to handle button state.
*/
setIsActive: BooleanFieldProps['onChange'];
};
const SearchWithRef: ForwardRefRenderFunction<HTMLDivElement, SearchProps> = (
{ className = '', isActive = false, searchPage, setIsActive },
ref
) => {
const intl = useIntl();
const label = isActive
? intl.formatMessage({
defaultMessage: 'Close search',
id: 'LDDUNO',
description: 'Search: Close label',
})
: intl.formatMessage({
defaultMessage: 'Open search',
id: 'Xj+WXB',
description: 'Search: Open label',
});
const searchInputRef = useAutofocus<HTMLInputElement>({
condition: () => isActive,
delay: 360,
});
return (
<div className={`${sharedStyles.item} ${searchStyles.item}`} ref={ref}>
<BooleanField
className={`${sharedStyles.checkbox} ${searchStyles.checkbox}`}
id="search-button"
isChecked={isActive}
name="search-button"
onChange={setIsActive}
type="checkbox"
value="open"
/>
<FlippingLabel
className={sharedStyles.label}
htmlFor="search-button"
icon={<Icon aria-hidden={true} shape="magnifying-glass" size="lg" />}
isActive={isActive}
label={label}
/>
<SearchModal
className={`${sharedStyles.modal} ${searchStyles.modal} ${className}`}
ref={searchInputRef}
searchPage={searchPage}
/>
</div>
);
};
export const Search = forwardRef(SearchWithRef);
|