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
|
import { FC, SetStateAction } from 'react';
import { useIntl } from 'react-intl';
import Heading, { type HeadingProps } from '../../atoms/headings/heading';
import PlusMinus from '../../atoms/icons/plus-minus';
import styles from './heading-button.module.scss';
export type HeadingButtonProps = Pick<HeadingProps, 'level'> & {
/**
* Set additional classnames to the button.
*/
className?: string;
/**
* Accordion state.
*/
expanded: boolean;
/**
* Callback function to set accordion state on click.
*/
setExpanded: (value: SetStateAction<boolean>) => void;
/**
* Accordion title.
*/
title: string;
};
/**
* HeadingButton component
*
* Render a button as accordion title to toggle body.
*/
const HeadingButton: FC<HeadingButtonProps> = ({
className = '',
expanded,
level,
setExpanded,
title,
}) => {
const intl = useIntl();
const iconState = expanded ? 'minus' : 'plus';
const titlePrefix = expanded
? intl.formatMessage({
defaultMessage: 'Collapse',
description: 'HeadingButton: title prefix (expanded state)',
id: 'UX9Bu8',
})
: intl.formatMessage({
defaultMessage: 'Expand',
description: 'HeadingButton: title prefix (collapsed state)',
id: 'bcyOgC',
});
return (
<button
type="button"
className={`${styles.wrapper} ${className}`}
onClick={() => setExpanded(!expanded)}
>
<Heading level={level} withMargin={false} className={styles.heading}>
<span className="screen-reader-text">{titlePrefix} </span>
{title}
</Heading>
<PlusMinus state={iconState} className={styles.icon} />
</button>
);
};
export default HeadingButton;
|