aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/organisms/modals/settings-modal.tsx
blob: 36c5977d2e51a5f6cb868a88340c0ceb38e53ce7 (plain)
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
import { useCallback, type FC, type FormEvent } from 'react';
import { useIntl } from 'react-intl';
import { Heading, Icon } from '../../atoms';
import { Modal, type ModalProps } from '../../molecules';
import { SettingsForm } from '../forms';
import styles from './settings-modal.module.scss';

export type SettingsModalProps = Pick<ModalProps, 'className'>;

/**
 * SettingsModal component
 *
 * Render a modal with settings options.
 */
export const SettingsModal: FC<SettingsModalProps> = ({ className = '' }) => {
  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}`}
      icon={<Icon className={styles.icon} shape="cog" />}
      heading={
        <Heading isFake level={3}>
          {title}
        </Heading>
      }
    >
      <SettingsForm aria-label={ariaLabel} onSubmit={submitHandler} />
    </Modal>
  );
};