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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
import { FC } from 'react';
import { useIntl } from 'react-intl';
import { Form } from '../../atoms';
import {
AckeeToggle,
type AckeeToggleProps,
Modal,
type ModalProps,
MotionToggle,
type MotionToggleProps,
PrismThemeToggle,
ThemeToggle,
} from '../../molecules';
import styles from './settings-modal.module.scss';
export type SettingsModalProps = Pick<ModalProps, 'className'> &
Pick<AckeeToggleProps, 'tooltipClassName'> & {
/**
* The local storage key for Ackee settings.
*/
ackeeStorageKey: AckeeToggleProps['storageKey'];
/**
* 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 = '',
ackeeStorageKey,
motionStorageKey,
tooltipClassName,
}) => {
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',
});
return (
<Modal
className={`${styles.wrapper} ${className}`}
icon="cogs"
title={title}
>
<Form
aria-label={ariaLabel}
className={styles.form}
itemsClassName={styles.items}
onSubmit={() => null}
>
<ThemeToggle
bodyClassName={styles.fieldset__body}
groupClassName={styles.group}
legendClassName={styles.label}
/>
<PrismThemeToggle
bodyClassName={styles.fieldset__body}
groupClassName={styles.group}
legendClassName={styles.label}
/>
<MotionToggle
bodyClassName={styles.fieldset__body}
defaultValue="on"
groupClassName={styles.group}
legendClassName={styles.label}
storageKey={motionStorageKey}
/>
<AckeeToggle
bodyClassName={styles.fieldset__body}
buttonClassName={styles.btn}
defaultValue="full"
groupClassName={`${styles.group} ${styles['group--ackee']}`}
legendClassName={`${styles.label} ${styles['label--ackee']}`}
storageKey={ackeeStorageKey}
tooltipClassName={`${styles.tooltip} ${tooltipClassName}`}
/>
</Form>
</Modal>
);
};
|