insomnia/app/components/modals/GenerateCodeModal.js

146 lines
4.3 KiB
JavaScript
Raw Normal View History

import React, {Component} from 'react';
import HTTPSnippet, {availableTargets} from 'httpsnippet';
import CopyButton from '../base/CopyButton';
import Dropdown from '../base/Dropdown';
import Editor from '../base/Editor';
import Modal from '../base/Modal';
import ModalBody from '../base/ModalBody';
import ModalHeader from '../base/ModalHeader';
import ModalFooter from '../base/ModalFooter';
import {exportHar} from '../../lib/export/har';
const DEFAULT_TARGET = availableTargets().find(t => t.key === 'shell');
const DEFAULT_CLIENT = DEFAULT_TARGET.clients.find(t => t.key === 'curl');
const MODE_MAP = {
c: 'clike',
java: 'clike',
csharp: 'clike',
node: 'javascript',
objc: 'clike',
ocaml: 'mllike'
};
2016-08-15 22:31:30 +00:00
const TO_ADD_CONTENT_LENGTH = {
node: ['native']
};
class GenerateCodeModal extends Component {
constructor (props) {
super(props);
this.state = {
cmd: '',
request: null,
target: DEFAULT_TARGET,
client: DEFAULT_CLIENT
};
}
_handleClientChange (client) {
const {target, request} = this.state;
this._generateCode(request, target, client);
}
_handleTargetChange (target) {
const {target: currentTarget} = this.state;
if (currentTarget.key === target.key) {
// No change
return;
}
const client = target.clients.find(c => c.key === target.default);
this._generateCode(this.state.request, target, client);
}
_generateCode (request, target, client) {
2016-08-15 22:31:30 +00:00
// Some clients need a content-length for the request to succeed
const addContentLength = (TO_ADD_CONTENT_LENGTH[target.key] || []).find(c => c === client.key);
exportHar(request._id, addContentLength).then(har => {
const snippet = new HTTPSnippet(har);
const cmd = snippet.convert(target.key, client.key);
this.setState({request, cmd, client, target});
});
}
show (request) {
this.modal.show();
this._generateCode(request, DEFAULT_TARGET, DEFAULT_CLIENT);
}
render () {
const {cmd, target, client} = this.state;
const targets = availableTargets();
return (
<Modal ref={m => this.modal = m} tall={true} {...this.props}>
<ModalHeader>Generate Client Code</ModalHeader>
<ModalBody noScroll={true} style={{
display: 'grid',
gridTemplateColumns: '1fr',
gridTemplateRows: 'auto 1fr'
}}>
<div className="pad">
<Dropdown outline={true}>
<button className="btn btn--super-compact btn--outlined">
{target.title}
<i className="fa fa-caret-down"></i>
</button>
<ul>
{targets.map(target => (
<li key={target.key}>
<button onClick={() => this._handleTargetChange(target)}>
{target.title}
</button>
</li>
))}
</ul>
</Dropdown>
&nbsp;&nbsp;
<Dropdown outline={true}>
<button className="btn btn--super-compact btn--outlined">
{client.title}
<i className="fa fa-caret-down"></i>
</button>
<ul>
{target.clients.map(client => (
<li key={client.key}>
<button onClick={() => this._handleClientChange(client)}>
{client.title}
</button>
</li>
))}
</ul>
</Dropdown>
&nbsp;&nbsp;
<CopyButton content={cmd} className="pull-right btn btn--super-compact btn--outlined"/>
</div>
<Editor
className="border-top"
key={Date.now()}
mode={MODE_MAP[target.key] || target.key}
ref={n => this._editor = n}
lightTheme={true}
lineWrapping={true}
value={cmd}
/>
</ModalBody>
<ModalFooter>
<div className="pull-right">
<button className="btn" onClick={e => this.modal.hide()}>Done</button>
</div>
<div className="pad faint italic txt-sm tall">
* copy/paste this command into a Unix terminal
</div>
</ModalFooter>
</Modal>
);
}
}
GenerateCodeModal.propTypes = {};
export default GenerateCodeModal;