insomnia/packages/insomnia-app/app/ui/components/dropdowns/request-actions-dropdown.js
Ricky Chandra bb8b48adc3 New data models for hotkeys and store the key bindings in settings (#1314)
* New data models for hotkeys and store the key bindings in settings

* Merge win and linux key bindings, remove generic key combinations, and add documents
2019-03-12 12:38:30 -04:00

94 lines
2.6 KiB
JavaScript

import React, { PureComponent } from 'react';
import PropTypes from 'prop-types';
import autobind from 'autobind-decorator';
import PromptButton from '../base/prompt-button';
import {
Dropdown,
DropdownButton,
DropdownDivider,
DropdownHint,
DropdownItem,
} from '../base/dropdown/index';
import * as models from '../../../models';
import { hotKeyRefs } from '../../../common/hotkeys';
@autobind
class RequestActionsDropdown extends PureComponent {
_setDropdownRef(n) {
this._dropdown = n;
}
_handleDuplicate() {
const { request, handleDuplicateRequest } = this.props;
handleDuplicateRequest(request);
}
_handleGenerateCode() {
this.props.handleGenerateCode(this.props.request);
}
_handleCopyAsCurl() {
this.props.handleCopyAsCurl(this.props.request);
}
_handleRemove() {
const { request } = this.props;
models.request.remove(request);
}
show() {
this._dropdown.show();
}
render() {
const {
request, // eslint-disable-line no-unused-vars
handleShowSettings,
hotKeyRegistry,
...other
} = this.props;
return (
<Dropdown ref={this._setDropdownRef} {...other}>
<DropdownButton>
<i className="fa fa-caret-down" />
</DropdownButton>
<DropdownItem onClick={this._handleDuplicate}>
<i className="fa fa-copy" /> Duplicate
<DropdownHint keyBindings={hotKeyRegistry[hotKeyRefs.REQUEST_SHOW_DUPLICATE.id]} />
</DropdownItem>
<DropdownItem onClick={this._handleGenerateCode}>
<i className="fa fa-code" /> Generate Code
<DropdownHint
keyBindings={hotKeyRegistry[hotKeyRefs.REQUEST_SHOW_GENERATE_CODE_EDITOR.id]}
/>
</DropdownItem>
<DropdownItem onClick={this._handleCopyAsCurl}>
<i className="fa fa-copy" /> Copy as Curl
</DropdownItem>
<DropdownItem buttonClass={PromptButton} onClick={this._handleRemove} addIcon>
<i className="fa fa-trash-o" /> Delete
</DropdownItem>
<DropdownDivider />
<DropdownItem onClick={handleShowSettings}>
<i className="fa fa-wrench" /> Settings
<DropdownHint keyBindings={hotKeyRegistry[hotKeyRefs.REQUEST_SHOW_SETTINGS.id]} />
</DropdownItem>
</Dropdown>
);
}
}
RequestActionsDropdown.propTypes = {
handleDuplicateRequest: PropTypes.func.isRequired,
handleGenerateCode: PropTypes.func.isRequired,
handleCopyAsCurl: PropTypes.func.isRequired,
handleShowSettings: PropTypes.func.isRequired,
request: PropTypes.object.isRequired,
hotKeyRegistry: PropTypes.object.isRequired,
};
export default RequestActionsDropdown;