123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- import React from 'react';
- import { useTranslation } from 'react-i18next';
- import { makeStyles } from 'tss-react/mui';
-
- import { withPixelLineHeight } from '../../../base/styles/functions.web';
- import Dialog from '../../../base/ui/components/web/Dialog';
-
- /**
- * The type of the React {@code Component} props of
- * {@link KeyboardShortcutsDialog}.
- */
- interface IProps {
-
- /**
- * A Map with keyboard keys as keys and translation keys as values.
- */
- shortcutDescriptions: Map<string, string>;
- }
-
- /**
- * Creates the styles for the component.
- *
- * @param {Object} theme - The current UI theme.
- *
- * @returns {Object}
- */
- const useStyles = makeStyles()(theme => {
- return {
- list: {
- listStyleType: 'none',
- padding: 0,
-
- '& .shortcuts-list__item': {
- display: 'flex',
- justifyContent: 'space-between',
- alignItems: 'center',
- padding: `${theme.spacing(1)} 0`,
- ...withPixelLineHeight(theme.typography.bodyShortRegular),
- color: theme.palette.text01
- },
-
- '& .item-action': {
- backgroundColor: theme.palette.ui04,
- ...withPixelLineHeight(theme.typography.labelBold),
- padding: `${theme.spacing(1)} ${theme.spacing(2)}`,
- borderRadius: `${Number(theme.shape.borderRadius) / 2}px`
- }
- }
- };
- });
-
- const KeyboardShortcutsDialog = ({ shortcutDescriptions }: IProps) => {
- const { classes, cx } = useStyles();
- const { t } = useTranslation();
-
- // eslint-disable-next-line react/no-multi-comp
- const _renderShortcutsListItem = (keyboardKey: string, translationKey: string) => {
- let modifierKey = 'Alt';
-
- if (window.navigator?.platform) {
- if (window.navigator.platform.indexOf('Mac') !== -1) {
- modifierKey = '⌥';
- }
- }
-
- return (
- <li
- className = 'shortcuts-list__item'
- key = { keyboardKey }>
- <span
- aria-label = { t(translationKey) }
- className = 'shortcuts-list__description'>
- {t(translationKey)}
- </span>
- <span className = 'item-action'>
- {keyboardKey.startsWith(':')
- ? `${modifierKey} + ${keyboardKey.slice(1)}`
- : keyboardKey}
- </span>
- </li>
- );
- };
-
- return (
- <Dialog
- cancel = {{ hidden: true }}
- ok = {{ hidden: true }}
- titleKey = 'keyboardShortcuts.keyboardShortcuts'>
- <div
- id = 'keyboard-shortcuts'>
- <ul
- className = { cx('shortcuts-list', classes.list) }
- id = 'keyboard-shortcuts-list'>
- {Array.from(shortcutDescriptions)
- .map(description => _renderShortcutsListItem(...description))}
- </ul>
- </div>
- </Dialog>
- );
- };
-
- export default KeyboardShortcutsDialog;
|