12345678910111213141516171819202122232425262728293031323334 |
- import { connect } from 'react-redux';
-
- import { createToolbarEvent } from '../../../analytics/AnalyticsEvents';
- import { sendAnalytics } from '../../../analytics/functions';
- import { translate } from '../../../base/i18n/functions';
- import { IconShortcuts } from '../../../base/icons/svg';
- import AbstractButton, { IProps as AbstractButtonProps } from '../../../base/toolbox/components/AbstractButton';
- import { openSettingsDialog } from '../../../settings/actions';
- import { SETTINGS_TABS } from '../../../settings/constants';
-
- /**
- * Implementation of a button for opening keyboard shortcuts dialog.
- */
- class KeyboardShortcutsButton extends AbstractButton<AbstractButtonProps> {
- accessibilityLabel = 'toolbar.accessibilityLabel.shortcuts';
- icon = IconShortcuts;
- label = 'toolbar.shortcuts';
- tooltip = 'toolbar.shortcuts';
-
- /**
- * Handles clicking / pressing the button, and opens the appropriate dialog.
- *
- * @protected
- * @returns {void}
- */
- _handleClick() {
- const { dispatch } = this.props;
-
- sendAnalytics(createToolbarEvent('shortcuts'));
- dispatch(openSettingsDialog(SETTINGS_TABS.SHORTCUTS));
- }
- }
-
- export default translate(connect()(KeyboardShortcutsButton));
|