insomnia/app/ui/components/modals/request-settings-modal.js
Gregory Schier 2cdd4761c8 Remaining V5 Features (#122)
* Add digest auth and response timeline

* Some css fixes

* Fixed Button

* More auth methods, fixed URL regex, and fix gzip

* Get rid of negotiate auth

* Fix proxy

* Fixed GA tracking

* Some very small changes and fixes

* Fix content type names

* Even better auth switching and timeline syntax

* Some auth tweaks

* CSS tweaks

* Reworked toasts

* Fixed timer rounding quirk

* Request settings and render errors

* Fixed tests

* Vertical dragging and stuff

* Remove beta
2017-03-28 15:45:23 -07:00

116 lines
3.2 KiB
JavaScript

import React, {PureComponent} from 'react';
import autobind from 'autobind-decorator';
import Modal from '../base/modal';
import ModalBody from '../base/modal-body';
import ModalHeader from '../base/modal-header';
import HelpTooltip from '../help-tooltip';
import * as models from '../../../models';
import {trackEvent} from '../../../analytics/index';
import DebouncedInput from '../base/debounced-input';
@autobind
class RequestSettingsModal extends PureComponent {
constructor (props) {
super(props);
this.state = {
request: null
};
}
_setModalRef (n) {
this.modal = n;
}
async _updateRequestSettingBoolean (e) {
const value = e.target.checked;
const setting = e.target.name;
const request = await models.request.update(this.state.request, {[setting]: value});
this.setState({request});
trackEvent('Request Settings', setting, value ? 'Enable' : 'Disable');
}
async _handleNameChange (name) {
const request = await models.request.update(this.state.request, {name});
this.setState({request});
}
show (request) {
this.modal.show();
this.setState({request});
}
hide () {
this.modal.hide();
}
renderCheckboxInput (setting) {
return (
<input
type="checkbox"
name={setting}
checked={this.state.request[setting]}
onChange={this._updateRequestSettingBoolean}
/>
);
}
renderModalBody (request) {
return (
<div className="pad">
<div className="form-control form-control--outlined">
<label>Request Name
{' '}
<small className="italic">
(also rename by double-clicking in sidebar)
</small>
<DebouncedInput
delay={500}
type="text"
placeholder="My Request"
defaultValue={request.name}
onChange={this._handleNameChange}
/>
</label>
</div>
<div className="pad-top-sm">
<div className="form-control form-control--thin">
<label>Send cookies automatically
{this.renderCheckboxInput('settingSendCookies')}
</label>
</div>
<div className="form-control form-control--thin">
<label>Store cookies automatically
{this.renderCheckboxInput('settingStoreCookies')}
</label>
</div>
<div className="form-control form-control--thin">
<label>Skip rendering of request body
{this.renderCheckboxInput('settingDisableRenderRequestBody')}
<HelpTooltip position="top" className="space-left">
Disable automatic rendering of Nunjucks variables and tags in
the request body
</HelpTooltip>
</label>
</div>
</div>
</div>
);
}
render () {
const {request} = this.state;
return (
<Modal ref={this._setModalRef} freshState>
<ModalHeader>Request Settings</ModalHeader>
<ModalBody>
{request ? this.renderModalBody(request) : null}
</ModalBody>
</Modal>
);
}
}
RequestSettingsModal.propTypes = {};
export default RequestSettingsModal;