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
|
import { useCallback, type FC, type FormEvent } from 'react';
import { useIntl } from 'react-intl';
import { Form, Heading, Icon, Modal, type ModalProps } from '../../atoms';
import {
AckeeToggle,
MotionToggle,
type MotionToggleProps,
PrismThemeToggle,
ThemeToggle,
} from '../forms';
import styles from './settings-modal.module.scss';
export type SettingsModalProps = Pick<ModalProps, 'className'> & {
/**
* The local storage key for Reduce motion settings.
*/
motionStorageKey: MotionToggleProps['storageKey'];
};
/**
* SettingsModal component
*
* Render a modal with settings options.
*/
export const SettingsModal: FC<SettingsModalProps> = ({
className = '',
motionStorageKey,
}) => {
const intl = useIntl();
const title = intl.formatMessage({
defaultMessage: 'Settings',
description: 'SettingsModal: title',
id: 'gPfT/K',
});
const ariaLabel = intl.formatMessage({
defaultMessage: 'Settings form',
id: 'xYNeKX',
description: 'SettingsModal: an accessible form name',
});
const submitHandler = useCallback((e: FormEvent) => {
e.preventDefault();
}, []);
return (
<Modal
className={`${styles.wrapper} ${className}`}
heading={
<Heading isFake level={3}>
<Icon className={styles.icon} shape="cog" />
{title}
</Heading>
}
>
<Form
aria-label={ariaLabel}
className={styles.form}
onSubmit={submitHandler}
>
<ThemeToggle className={styles.item} />
<PrismThemeToggle className={styles.item} />
<MotionToggle
className={styles.item}
defaultValue="on"
storageKey={motionStorageKey}
/>
<AckeeToggle className={styles.item} direction="upwards" />
</Form>
</Modal>
);
};
|