mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
44 lines
1.3 KiB
JavaScript
44 lines
1.3 KiB
JavaScript
import React, {PureComponent} from 'react';
|
|
import Hotkey from '../hotkey';
|
|
|
|
class Shortcuts extends PureComponent {
|
|
renderHotkey (name, char, shift, alt, ctrl) {
|
|
return (
|
|
<tr>
|
|
<td>{name}</td>
|
|
<td className="text-right">
|
|
<code><Hotkey char={char} shift={shift} alt={alt} ctrl={ctrl}/></code>
|
|
</td>
|
|
</tr>
|
|
);
|
|
}
|
|
|
|
render () {
|
|
return (
|
|
<div>
|
|
<table className="table--fancy">
|
|
<tbody>
|
|
{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', '?')}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
Shortcuts.propTypes = {};
|
|
|
|
export default Shortcuts;
|