insomnia/app/ui/components/RequestPane.js
Gregory Schier 46d3719b99 Sync Proof of Concept (#33)
* Maybe working POC

* Change to use remote url

* Other URL too

* Some logic

* Got the push part working

* Made some updates

* Fix

* Update

* Add status code check

* Stuff

* Implemented new sync api

* A bit more robust

* Debounce changes

* Change timeout

* Some fixes

* Remove .less

* Better error handling

* Fix base url

* Support for created vs updated docs

* Try silent

* Silence removal too

* Small fix after merge

* Fix test

* Stuff

* Implement key generation algorithm

* Tidy

* stuff

* A bunch of stuff for the new API

* Integrated the session stuff

* Stuff

* Just started on encryption

* Lots of updates to encryption

* Finished createResourceGroup function

* Full encryption/decryption working (I think)

* Encrypt localstorage with sessionID

* Some more

* Some extra checks

* Now uses separate DB. Still needs to be simplified a LOT

* Fix deletion bug

* Fixed unicode bug with encryption

* Simplified and working

* A bunch of polish

* Some stuff

* Removed some workspace meta properties

* Migrated a few more meta properties

* Small changes

* Fix body scrolling and url cursor jumping

* Removed duplication of webpack port

* Remove workspaces reduces

* Some small fixes

* Added sync modal and opt-in setting

* Good start to sync flow

* Refactored modal footer css

* Update sync status

* Sync logger

* A bit better logging

* Fixed a bunch of sync-related bugs

* Fixed signup form button

* Gravatar component

* Split sync modal into tabs

* Tidying

* Some more error handling

* start sending 'user agent

* Login/signup error handling

* Use real UUIDs

* Fixed tests

* Remove unused function

* Some extra checks

* Moved cloud sync setting to about page

* Some small changes

* Some things
2016-10-21 10:20:36 -07:00

220 lines
7.5 KiB
JavaScript

import React, {Component, PropTypes} from 'react';
import {Tab, Tabs, TabList, TabPanel} from 'react-tabs';
import KeyValueEditor from './base/KeyValueEditor';
import RequestHeadersEditor from './editors/RequestHeadersEditor';
import ContentTypeDropdown from './dropdowns/ContentTypeDropdown';
import RenderedQueryString from './RenderedQueryString';
import BodyEditor from './editors/BodyEditor';
import AuthEditor from './editors/AuthEditor';
import {UrlBar} from './UrlBar.elm';
import ElmComponent from './ElmComponent';
import {getContentTypeName} from '../../backend/contentTypes';
import {getContentTypeFromHeaders} from '../../backend/contentTypes';
import {MOD_SYM} from '../../backend/constants';
import {trackEvent} from '../../backend/analytics';
import {debounce} from '../lib/debounce';
class RequestPane extends Component {
render () {
const {
request,
importFile,
showPasswords,
editorFontSize,
editorLineWrapping,
requestCreate,
sendRequest,
useBulkHeaderEditor,
updateRequestUrl,
updateRequestMethod,
updateRequestBody,
updateRequestParameters,
updateRequestAuthentication,
updateRequestHeaders,
updateRequestContentType,
updateSettingsUseBulkHeaderEditor
} = this.props;
if (!request) {
return (
<section className="request-pane pane">
<header className="pane__header"></header>
<div className="pane__body pane__body--placeholder">
<div>
<table>
<tbody>
<tr>
<td>New Request</td>
<td className="text-right">
<code>{MOD_SYM}N</code>
</td>
</tr>
<tr>
<td>Switch Requests</td>
<td className="text-right">
<code>{MOD_SYM}P</code>
</td>
</tr>
<tr>
<td>Manage Cookies</td>
<td className="text-right">
<code>{MOD_SYM}K</code>
</td>
</tr>
<tr>
<td>Edit Environments</td>
<td className="text-right">
<code>{MOD_SYM}E</code>
</td>
</tr>
</tbody>
</table>
<div className="text-center pane__body--placeholder__cta">
<button onClick={e => importFile()}
className="btn inline-block btn--super-compact btn--outlined">
Import from File
</button>
<button onClick={e => requestCreate()}
className="btn inline-block btn--super-compact btn--outlined">
New Request
</button>
</div>
</div>
</div>
</section>
)
}
return (
<section className="pane request-pane">
<ElmComponent
container={<header className="pane__header"/>}
ports={{
onUrlChange: debounce(updateRequestUrl),
onSendRequest: sendRequest.bind(null, request),
onMethodChange: updateRequestMethod
}}
component={UrlBar}
method={request.method}
url={request.url}
/>
<Tabs className="pane__body">
<TabList>
<Tab>
<button
onClick={e => trackEvent('Request Tab Clicked', {name: 'Body'})}>
{getContentTypeName(getContentTypeFromHeaders(request.headers))}
</button>
<ContentTypeDropdown
updateRequestContentType={updateRequestContentType}/>
</Tab>
<Tab>
<button
onClick={e => trackEvent('Request Tab Clicked', {name: 'Auth'})}>
Auth {request.authentication.username ?
<i className="fa fa-lock txt-sm"></i> : ''}
</button>
</Tab>
<Tab>
<button
onClick={e => trackEvent('Request Tab Clicked', {name: 'Params'})}>
Query {request.parameters.length ?
<span
className="txt-sm">({request.parameters.length})</span> : null}
</button>
</Tab>
<Tab>
<button
onClick={e => trackEvent('Request Tab Clicked', {name: 'Headers'})}>
Headers {request.headers.length ? (
<span
className="txt-sm">({request.headers.length})</span> ) : null}
</button>
</Tab>
</TabList>
<TabPanel className="editor-wrapper">
<BodyEditor
request={request}
onChange={updateRequestBody}
fontSize={editorFontSize}
lineWrapping={editorLineWrapping}
/>
</TabPanel>
<TabPanel className="scrollable-container">
<div className="scrollable">
<AuthEditor
showPasswords={showPasswords}
request={request}
onChange={updateRequestAuthentication}
/>
</div>
</TabPanel>
<TabPanel className="scrollable-container">
<div className="scrollable">
<div className="pad no-pad-bottom">
<label className="label--small">Url Preview</label>
<code className="txt-sm block">
<RenderedQueryString
request={request}
placeholder="http://myproduct.com?name=Gregory"
/>
</code>
</div>
<KeyValueEditor
namePlaceholder="name"
valuePlaceholder="value"
pairs={request.parameters}
onChange={updateRequestParameters}
/>
</div>
</TabPanel>
<TabPanel className="header-editor">
<RequestHeadersEditor
headers={request.headers}
onChange={updateRequestHeaders}
bulk={useBulkHeaderEditor}
/>
<div className="pad-right text-right">
<button className="margin-top-sm btn btn--outlined btn--super-compact"
onClick={() => updateSettingsUseBulkHeaderEditor(!useBulkHeaderEditor)}>
{useBulkHeaderEditor ? 'Regular Edit' : 'Bulk Edit'}
</button>
</div>
</TabPanel>
</Tabs>
</section>
)
}
}
RequestPane.propTypes = {
// Functions
sendRequest: PropTypes.func.isRequired,
requestCreate: PropTypes.func.isRequired,
updateRequestUrl: PropTypes.func.isRequired,
updateRequestMethod: PropTypes.func.isRequired,
updateRequestBody: PropTypes.func.isRequired,
updateRequestParameters: PropTypes.func.isRequired,
updateRequestAuthentication: PropTypes.func.isRequired,
updateRequestHeaders: PropTypes.func.isRequired,
updateRequestContentType: PropTypes.func.isRequired,
updateSettingsShowPasswords: PropTypes.func.isRequired,
updateSettingsUseBulkHeaderEditor: PropTypes.func.isRequired,
importFile: PropTypes.func.isRequired,
// Other
useBulkHeaderEditor: PropTypes.bool.isRequired,
showPasswords: PropTypes.bool.isRequired,
editorFontSize: PropTypes.number.isRequired,
editorLineWrapping: PropTypes.bool.isRequired,
// Optional
request: PropTypes.object,
};
export default RequestPane;