2e62c6b288
* Styles CodeMirror Search box * Switch to fork of search add-on * Styles search box using custom markup * Prev/Next search behaviour, highlighting current result * Hide search modifiers until implemented * Regexp search * Style RegExp modifier button active state * Styles search modifiers * Wires up Case Sensitive search button * Allows case insenstive regexp search * Do not show underlying regexp query string when re-opening dialog * Adds "Whole word" search * Adds title and aria-label for tooltip and screenreaders * Whole Word button shows correct active/inactive state * Disables replace implementation which doesn't work * Tidies up query parsing so it's less of a hack - uses state to convert query text into a regexp - avoids having to fake regexp using "/.../" syntax - parsing is now in one place * Uses shared metaKey function for Cmd/Ctrl key * Adds find function to keyboard shortcuts modals * Sets aria-checked to true/false to indicate button state * Sets role=checkbox on checkbox-like buttons
105 lines
3.5 KiB
JavaScript
105 lines
3.5 KiB
JavaScript
import React, { PropTypes } from 'react';
|
|
import InlineSVG from 'react-inlinesvg';
|
|
|
|
import {
|
|
metaKeyName,
|
|
} from '../../../utils/metaKey';
|
|
|
|
const exitUrl = require('../../../images/exit.svg');
|
|
|
|
class KeyboardShortcutModal extends React.Component {
|
|
componentDidMount() {
|
|
this.isMac = navigator.userAgent.toLowerCase().indexOf('mac') !== -1;
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<section className="keyboard-shortcuts">
|
|
<header className="keyboard-shortcuts__header">
|
|
<h2>Keyboard Shortcuts</h2>
|
|
<button className="keyboard-shortcuts__close" onClick={this.props.closeModal}>
|
|
<InlineSVG src={exitUrl} alt="Close Keyboard Shortcuts Overlay" />
|
|
</button>
|
|
</header>
|
|
<ul title="keyboard shortcuts">
|
|
<li className="keyboard-shortcut-item">
|
|
<span className="keyboard-shortcut__command">Shift + Tab</span>
|
|
<span>Tidy</span>
|
|
</li>
|
|
<li className="keyboard-shortcut-item">
|
|
<span className="keyboard-shortcut__command">
|
|
{metaKeyName} + S
|
|
</span>
|
|
<span>Save</span>
|
|
</li>
|
|
<li className="keyboard-shortcut-item">
|
|
<span className="keyboard-shortcut__command">
|
|
{metaKeyName} + F
|
|
</span>
|
|
<span>Find Text</span>
|
|
</li>
|
|
<li className="keyboard-shortcut-item">
|
|
<span className="keyboard-shortcut__command">
|
|
{metaKeyName} + G
|
|
</span>
|
|
<span>Find Next Text Match</span>
|
|
</li>
|
|
<li className="keyboard-shortcut-item">
|
|
<span className="keyboard-shortcut__command">
|
|
{metaKeyName} + Shift + G
|
|
</span>
|
|
<span>Find Previous Text Match</span>
|
|
</li>
|
|
<li className="keyboard-shortcut-item">
|
|
<span className="keyboard-shortcut__command">
|
|
{metaKeyName} + [
|
|
</span>
|
|
<span>Indent Code Left</span>
|
|
</li>
|
|
<li className="keyboard-shortcut-item">
|
|
<span className="keyboard-shortcut__command">
|
|
{metaKeyName} + ]
|
|
</span>
|
|
<span>Indent Code Right</span>
|
|
</li>
|
|
<li className="keyboard-shortcut-item">
|
|
<span className="keyboard-shortcut__command">
|
|
{metaKeyName} + /
|
|
</span>
|
|
<span>Comment Line</span>
|
|
</li>
|
|
<li className="keyboard-shortcut-item">
|
|
<span className="keyboard-shortcut__command">
|
|
{metaKeyName} + Enter
|
|
</span>
|
|
<span>Start Sketch</span>
|
|
</li>
|
|
<li className="keyboard-shortcut-item">
|
|
<span className="keyboard-shortcut__command">
|
|
{metaKeyName} + Shift + Enter
|
|
</span>
|
|
<span>Stop Sketch</span>
|
|
</li>
|
|
<li className="keyboard-shortcut-item">
|
|
<span className="keyboard-shortcut__command">
|
|
{metaKeyName} + Shift + 1
|
|
</span>
|
|
<span>Toggle Text-based Canvas</span>
|
|
</li>
|
|
<li className="keyboard-shortcut-item">
|
|
<span className="keyboard-shortcut__command">
|
|
{metaKeyName} + Shift + 2
|
|
</span>
|
|
<span>Turn Off Text-based Canvas</span>
|
|
</li>
|
|
</ul>
|
|
</section>
|
|
);
|
|
}
|
|
}
|
|
|
|
KeyboardShortcutModal.propTypes = {
|
|
closeModal: PropTypes.func.isRequired
|
|
};
|
|
|
|
export default KeyboardShortcutModal;
|