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
|
import Checkbox, { type CheckboxProps } from '@components/atoms/forms/checkbox';
import Label from '@components/atoms/forms/label';
import Cog from '@components/atoms/icons/cog';
import { forwardRef, ForwardRefRenderFunction } from 'react';
import { useIntl } from 'react-intl';
import SettingsModal, {
type SettingsModalProps,
} from '../modals/settings-modal';
import settingsStyles from './settings.module.scss';
import sharedStyles from './toolbar-items.module.scss';
export type SettingsProps = SettingsModalProps & {
/**
* The button state.
*/
isActive: CheckboxProps['value'];
/**
* A callback function to handle button state.
*/
setIsActive: CheckboxProps['setValue'];
};
const Settings: ForwardRefRenderFunction<HTMLDivElement, SettingsProps> = (
{
ackeeStorageKey,
className = '',
isActive,
motionStorageKey,
setIsActive,
tooltipClassName = '',
},
ref
) => {
const intl = useIntl();
const label = isActive
? intl.formatMessage({
defaultMessage: 'Close settings',
id: '+viX9b',
description: 'Settings: Close label',
})
: intl.formatMessage({
defaultMessage: 'Open settings',
id: 'QCW3cy',
description: 'Settings: Open label',
});
return (
<div className={`${sharedStyles.item} ${settingsStyles.item}`} ref={ref}>
<Checkbox
id="settings-button"
name="settings-button"
value={isActive}
setValue={setIsActive}
className={`${sharedStyles.checkbox} ${settingsStyles.checkbox}`}
/>
<Label
htmlFor="settings-button"
aria-label={label}
className={`${sharedStyles.label} ${settingsStyles.label}`}
>
<Cog />
</Label>
<SettingsModal
ackeeStorageKey={ackeeStorageKey}
className={`${sharedStyles.modal} ${settingsStyles.modal} ${className}`}
motionStorageKey={motionStorageKey}
tooltipClassName={tooltipClassName}
/>
</div>
);
};
export default forwardRef(Settings);
|