2016-09-07 21:47:22 +00:00
|
|
|
import React, { PropTypes } from 'react';
|
|
|
|
import InlineSVG from 'react-inlinesvg';
|
|
|
|
const exitUrl = require('../../../images/exit.svg');
|
|
|
|
|
2016-09-08 01:48:45 +00:00
|
|
|
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>
|
2016-11-08 17:39:46 +00:00
|
|
|
<ul title="keyboard shortcuts">
|
2016-09-08 01:48:45 +00:00
|
|
|
<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">
|
|
|
|
{this.isMac ? 'Command + S' : 'Control + S'}
|
|
|
|
</span>
|
|
|
|
<span>Save</span>
|
|
|
|
</li>
|
|
|
|
<li className="keyboard-shortcut-item">
|
2016-09-28 19:17:29 +00:00
|
|
|
<span className="keyboard-shortcut__command">
|
|
|
|
{this.isMac ? 'Command + [' : 'Control + ['}
|
|
|
|
</span>
|
|
|
|
<span>Indent Code Left</span>
|
2016-09-08 01:48:45 +00:00
|
|
|
</li>
|
|
|
|
<li className="keyboard-shortcut-item">
|
2016-09-28 19:17:29 +00:00
|
|
|
<span className="keyboard-shortcut__command">
|
|
|
|
{this.isMac ? 'Command + ]' : 'Control + ]'}
|
|
|
|
</span>
|
|
|
|
<span>Indent Code Right</span>
|
2016-09-08 01:48:45 +00:00
|
|
|
</li>
|
|
|
|
<li className="keyboard-shortcut-item">
|
2016-09-28 19:17:29 +00:00
|
|
|
<span className="keyboard-shortcut__command">
|
|
|
|
{this.isMac ? 'Command + /' : 'Control + /'}
|
|
|
|
</span>
|
2016-09-08 01:48:45 +00:00
|
|
|
<span>Comment Line</span>
|
|
|
|
</li>
|
2016-09-28 19:17:29 +00:00
|
|
|
<li className="keyboard-shortcut-item">
|
|
|
|
<span className="keyboard-shortcut__command">
|
|
|
|
{this.isMac ? 'Command + Enter' : 'Control + Enter'}</span>
|
|
|
|
<span>Start Sketch</span>
|
|
|
|
</li>
|
|
|
|
<li className="keyboard-shortcut-item">
|
|
|
|
<span className="keyboard-shortcut__command">
|
|
|
|
{this.isMac ? 'Command + Shift + Enter' : 'Control + Shift + Enter'}
|
|
|
|
</span>
|
|
|
|
<span>Stop Sketch</span>
|
|
|
|
</li>
|
2016-11-08 17:39:46 +00:00
|
|
|
<li className="keyboard-shortcut-item">
|
|
|
|
<span className="keyboard-shortcut__command">
|
|
|
|
{this.isMac ? 'Command + Shift + 1' : 'Control + Shift + 1'}
|
|
|
|
</span>
|
2016-11-12 16:53:02 +00:00
|
|
|
<span>Toggle Text-based Canvas</span>
|
2016-11-08 17:39:46 +00:00
|
|
|
</li>
|
|
|
|
<li className="keyboard-shortcut-item">
|
|
|
|
<span className="keyboard-shortcut__command">
|
|
|
|
{this.isMac ? 'Command + Shift + 2' : 'Control + Shift + 2'}
|
|
|
|
</span>
|
|
|
|
<span>Turn Off Text-based Canvas</span>
|
|
|
|
</li>
|
2016-09-08 01:48:45 +00:00
|
|
|
</ul>
|
|
|
|
</section>
|
|
|
|
);
|
|
|
|
}
|
2016-09-07 21:47:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
KeyboardShortcutModal.propTypes = {
|
|
|
|
closeModal: PropTypes.func.isRequired
|
|
|
|
};
|
|
|
|
|
|
|
|
export default KeyboardShortcutModal;
|