import React, {PureComponent} from 'react'; import Hotkey from '../hotkey'; class Shortcuts extends PureComponent { renderHotkey (name, char, shift, alt, ctrl) { return ( {name} ); } render () { return (
{this.renderHotkey('Switch Requests', 'P')} {this.renderHotkey('Send Request', 'Enter')} {this.renderHotkey('New Request', 'N')} {this.renderHotkey('Duplicate Request', 'D')} {this.renderHotkey('Show Cookie Manager', 'K')} {this.renderHotkey('Show Environment Editor', 'E')} {this.renderHotkey('Focus URL Bar', 'L')} {this.renderHotkey('Toggle Sidebar', '\\')} {this.renderHotkey('Show Autocomplete Dropdown', 'Space', false, false, true)} {this.renderHotkey('Show App Preferences', ',')} {this.renderHotkey('Show Workspace Settings', ',', true)} {this.renderHotkey('Show Request Settings', ',', true, true)} {this.renderHotkey('Show Keyboard Shortcuts', '?')}
); } } Shortcuts.propTypes = {}; export default Shortcuts;