2016-03-20 04:47:43 +00:00
|
|
|
import React, {Component, PropTypes} from 'react'
|
|
|
|
import {connect} from 'react-redux'
|
|
|
|
import {bindActionCreators} from 'redux'
|
2016-04-09 21:41:27 +00:00
|
|
|
import {Tab, Tabs, TabList, TabPanel} from 'react-tabs'
|
2016-03-20 04:47:43 +00:00
|
|
|
|
2016-03-23 05:58:16 +00:00
|
|
|
import Editor from '../components/base/Editor'
|
2016-04-10 02:58:48 +00:00
|
|
|
import Modals from '../components/modals/ModalContainer'
|
2016-04-09 01:14:25 +00:00
|
|
|
import KeyValueEditor from '../components/base/KeyValueEditor'
|
2016-03-22 05:01:58 +00:00
|
|
|
import RequestBodyEditor from '../components/RequestBodyEditor'
|
2016-04-09 21:08:55 +00:00
|
|
|
import RequestAuthEditor from '../components/RequestAuthEditor'
|
2016-03-22 18:20:05 +00:00
|
|
|
import RequestUrlBar from '../components/RequestUrlBar'
|
2016-03-20 04:47:43 +00:00
|
|
|
import Sidebar from '../components/Sidebar'
|
|
|
|
|
|
|
|
import * as GlobalActions from '../actions/global'
|
2016-04-09 21:08:55 +00:00
|
|
|
import * as RequestGroupActions from '../actions/requestGroups'
|
|
|
|
import * as RequestActions from '../actions/requests'
|
|
|
|
import * as ResponseActions from '../actions/responses'
|
2016-03-20 04:47:43 +00:00
|
|
|
|
2016-03-22 03:22:45 +00:00
|
|
|
// Don't inject component styles (use our own)
|
|
|
|
Tabs.setUseDefaultStyles(false);
|
|
|
|
|
2016-03-20 04:47:43 +00:00
|
|
|
class App extends Component {
|
2016-04-09 21:08:55 +00:00
|
|
|
_renderPageBody (actions, activeRequest, activeResponse, tabs) {
|
2016-03-22 03:22:45 +00:00
|
|
|
if (!activeRequest) {
|
|
|
|
return <div></div>;
|
|
|
|
}
|
|
|
|
|
2016-03-20 20:42:27 +00:00
|
|
|
return (
|
2016-04-09 19:10:34 +00:00
|
|
|
<div className="grid__cell grid grid--collapse">
|
|
|
|
<section className="grid__cell section">
|
|
|
|
<div className="grid--v wide">
|
|
|
|
<div className="grid__cell grid__cell--no-flex section__header">
|
|
|
|
<RequestUrlBar
|
2016-04-09 21:08:55 +00:00
|
|
|
sendRequest={actions.sendRequest}
|
2016-04-09 19:10:34 +00:00
|
|
|
onUrlChange={url => {actions.updateRequest({id: activeRequest.id, url})}}
|
|
|
|
onMethodChange={method => {actions.updateRequest({id: activeRequest.id, method})}}
|
2016-04-06 04:21:42 +00:00
|
|
|
request={activeRequest}/>
|
2016-04-09 19:10:34 +00:00
|
|
|
</div>
|
|
|
|
<Tabs className="grid__cell grid--v section__body"
|
|
|
|
onSelect={i => actions.selectTab('request', i)}
|
|
|
|
selectedIndex={tabs.request || 0}>
|
|
|
|
<TabList className="grid grid--start">
|
|
|
|
<Tab><button className="btn btn--compact">Body</button></Tab>
|
|
|
|
<Tab>
|
|
|
|
<button className="btn btn--compact no-wrap">
|
|
|
|
Params {activeRequest.params.length ? `(${activeRequest.params.length})` : ''}
|
|
|
|
</button>
|
|
|
|
</Tab>
|
|
|
|
<Tab><button className="btn btn--compact">Auth</button></Tab>
|
|
|
|
<Tab>
|
|
|
|
<button className="btn btn--compact no-wrap">
|
|
|
|
Headers {activeRequest.headers.length ? `(${activeRequest.headers.length})` : ''}
|
|
|
|
</button>
|
|
|
|
</Tab>
|
|
|
|
</TabList>
|
2016-04-12 06:03:52 +00:00
|
|
|
<TabPanel className="grid__cell">
|
2016-04-09 19:10:34 +00:00
|
|
|
<RequestBodyEditor
|
|
|
|
onChange={body => {actions.updateRequest({id: activeRequest.id, body})}}
|
|
|
|
request={activeRequest}/>
|
|
|
|
</TabPanel>
|
2016-04-12 06:03:52 +00:00
|
|
|
<TabPanel className="grid__cell grid__cell--scroll--v">
|
2016-04-15 02:13:49 +00:00
|
|
|
<div className="wide pad">
|
2016-04-12 06:03:52 +00:00
|
|
|
<KeyValueEditor
|
|
|
|
pairs={activeRequest.params}
|
|
|
|
onChange={params => actions.updateRequest({id: activeRequest.id, params})}
|
|
|
|
/>
|
|
|
|
</div>
|
2016-04-09 19:10:34 +00:00
|
|
|
</TabPanel>
|
2016-04-12 06:03:52 +00:00
|
|
|
<TabPanel className="grid__cell grid__cell--scroll--v">
|
2016-04-15 02:13:49 +00:00
|
|
|
<div className="wide pad">
|
2016-04-12 06:03:52 +00:00
|
|
|
<RequestAuthEditor
|
|
|
|
request={activeRequest}
|
|
|
|
onChange={authentication => actions.updateRequest({id: activeRequest.id, authentication})}
|
|
|
|
/>
|
|
|
|
</div>
|
2016-04-09 21:08:55 +00:00
|
|
|
</TabPanel>
|
2016-04-12 06:03:52 +00:00
|
|
|
<TabPanel className="grid__cell grid__cell--scroll--v">
|
2016-04-15 02:13:49 +00:00
|
|
|
<div className="wide pad">
|
2016-04-12 06:03:52 +00:00
|
|
|
<KeyValueEditor
|
|
|
|
pairs={activeRequest.headers}
|
|
|
|
onChange={headers => actions.updateRequest({id: activeRequest.id, headers})}
|
|
|
|
/>
|
|
|
|
</div>
|
2016-04-09 19:10:34 +00:00
|
|
|
</TabPanel>
|
|
|
|
</Tabs>
|
|
|
|
</div>
|
2016-03-22 03:22:45 +00:00
|
|
|
</section>
|
2016-04-09 19:10:34 +00:00
|
|
|
<section className="grid__cell section">
|
|
|
|
<div className="grid--v wide">
|
|
|
|
<header
|
2016-04-12 06:03:52 +00:00
|
|
|
className="grid grid--center header text-center bg-light txt-sm section__header">
|
|
|
|
<div className="tag success">
|
|
|
|
<strong>{activeResponse && activeResponse.statusCode}</strong> SUCCESS
|
|
|
|
</div>
|
2016-04-09 19:10:34 +00:00
|
|
|
<div className="tag">TIME <strong>143ms</strong></div>
|
|
|
|
</header>
|
2016-04-09 21:08:55 +00:00
|
|
|
<Tabs className="grid__cell grid--v section__body"
|
|
|
|
onSelect={i => actions.selectTab('response', i)}
|
|
|
|
selectedIndex={tabs.response || 0}>
|
2016-04-09 19:10:34 +00:00
|
|
|
<TabList className="grid grid--start">
|
|
|
|
<Tab><button className="btn btn--compact">Preview</button></Tab>
|
|
|
|
<Tab><button className="btn btn--compact">Raw</button></Tab>
|
|
|
|
<Tab><button className="btn btn--compact">Headers</button></Tab>
|
|
|
|
</TabList>
|
|
|
|
<TabPanel className="grid__cell">
|
|
|
|
<Editor
|
2016-04-10 02:58:48 +00:00
|
|
|
value={activeResponse && activeResponse.body || ''}
|
|
|
|
prettify={true}
|
2016-04-09 19:10:34 +00:00
|
|
|
options={{
|
2016-04-10 02:58:48 +00:00
|
|
|
mode: activeResponse && activeResponse.contentType || 'text/plain',
|
2016-04-09 21:08:55 +00:00
|
|
|
readOnly: true,
|
|
|
|
placeholder: 'nothing yet...'
|
|
|
|
}}
|
2016-04-09 19:10:34 +00:00
|
|
|
/>
|
|
|
|
</TabPanel>
|
|
|
|
<TabPanel className="grid__cell">
|
|
|
|
<Editor
|
2016-04-09 21:08:55 +00:00
|
|
|
value={activeResponse && activeResponse.body || ''}
|
2016-04-09 19:10:34 +00:00
|
|
|
options={{
|
2016-04-12 00:39:49 +00:00
|
|
|
lineWrapping: true,
|
2016-04-09 21:08:55 +00:00
|
|
|
mode: 'text/plain',
|
|
|
|
readOnly: true,
|
|
|
|
placeholder: 'nothing yet...'
|
|
|
|
}}
|
2016-04-09 19:10:34 +00:00
|
|
|
/>
|
|
|
|
</TabPanel>
|
2016-04-12 06:03:52 +00:00
|
|
|
<TabPanel className="grid__cell grid__cell--scroll--v">
|
|
|
|
<div className="wide">
|
|
|
|
<div className="grid--v grid--start pad">
|
|
|
|
{!activeResponse ? null : activeResponse.headers.map((h, i) => (
|
|
|
|
<div className="grid grid__cell grid__cell--no-flex selectable" key={i}>
|
|
|
|
<div className="grid__cell">{h.name}</div>
|
|
|
|
<div className="grid__cell">{h.value}</div>
|
|
|
|
</div>
|
|
|
|
))}
|
|
|
|
</div>
|
2016-04-10 06:37:22 +00:00
|
|
|
</div>
|
|
|
|
</TabPanel>
|
2016-04-09 19:10:34 +00:00
|
|
|
</Tabs>
|
|
|
|
</div>
|
2016-03-22 03:22:45 +00:00
|
|
|
</section>
|
|
|
|
</div>
|
2016-03-20 04:47:43 +00:00
|
|
|
)
|
|
|
|
}
|
2016-03-22 05:01:58 +00:00
|
|
|
|
2016-03-20 04:47:43 +00:00
|
|
|
render () {
|
2016-04-11 00:40:14 +00:00
|
|
|
const {actions, requests, responses, requestGroups, tabs} = this.props;
|
2016-03-22 05:01:58 +00:00
|
|
|
const activeRequest = requests.all.find(r => r.id === requests.active);
|
2016-04-09 21:08:55 +00:00
|
|
|
const activeResponse = responses[activeRequest && activeRequest.id];
|
2016-03-22 03:22:45 +00:00
|
|
|
|
2016-03-20 04:47:43 +00:00
|
|
|
return (
|
2016-04-11 00:40:14 +00:00
|
|
|
<div className="grid bg-super-dark tall">
|
2016-04-10 02:58:48 +00:00
|
|
|
<Modals />
|
2016-03-20 04:47:43 +00:00
|
|
|
<Sidebar
|
|
|
|
activateRequest={actions.activateRequest}
|
2016-03-23 05:26:27 +00:00
|
|
|
changeFilter={actions.changeFilter}
|
2016-03-20 04:47:43 +00:00
|
|
|
addRequest={actions.addRequest}
|
2016-04-04 07:15:30 +00:00
|
|
|
toggleRequestGroup={actions.toggleRequestGroup}
|
2016-04-07 03:09:14 +00:00
|
|
|
deleteRequestGroup={actions.deleteRequestGroup}
|
2016-04-09 21:41:27 +00:00
|
|
|
updateRequestGroup={actions.updateRequestGroup}
|
2016-03-20 23:20:00 +00:00
|
|
|
activeRequest={activeRequest}
|
2016-03-23 05:26:27 +00:00
|
|
|
activeFilter={requests.filter}
|
2016-03-24 10:20:11 +00:00
|
|
|
requestGroups={requestGroups.all}
|
2016-03-22 05:01:58 +00:00
|
|
|
requests={requests.all}/>
|
2016-04-05 20:49:28 +00:00
|
|
|
<div className="grid__cell grid--v">
|
2016-04-06 07:19:36 +00:00
|
|
|
{/*<header className="header bg-light">
|
2016-04-07 03:09:14 +00:00
|
|
|
<div className="header__content"><h1>Hi World</h1></div>
|
|
|
|
</header>*/}
|
2016-04-09 21:08:55 +00:00
|
|
|
{this._renderPageBody(actions, activeRequest, activeResponse, tabs)}
|
2016-03-21 05:47:49 +00:00
|
|
|
</div>
|
2016-03-20 04:47:43 +00:00
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
App.propTypes = {
|
2016-03-22 05:01:58 +00:00
|
|
|
actions: PropTypes.shape({
|
|
|
|
activateRequest: PropTypes.func.isRequired,
|
2016-04-07 03:09:14 +00:00
|
|
|
deleteRequestGroup: PropTypes.func.isRequired,
|
|
|
|
addRequest: PropTypes.func.isRequired,
|
2016-04-09 21:08:55 +00:00
|
|
|
sendRequest: PropTypes.func.isRequired,
|
2016-04-08 04:05:08 +00:00
|
|
|
updateRequest: PropTypes.func.isRequired,
|
2016-03-23 05:26:27 +00:00
|
|
|
changeFilter: PropTypes.func.isRequired,
|
2016-04-09 21:41:27 +00:00
|
|
|
toggleRequestGroup: PropTypes.func.isRequired,
|
|
|
|
updateRequestGroup: PropTypes.func.isRequired
|
2016-03-22 05:01:58 +00:00
|
|
|
}).isRequired,
|
2016-04-09 21:08:55 +00:00
|
|
|
requestGroups: PropTypes.shape({
|
|
|
|
all: PropTypes.array.isRequired
|
|
|
|
}).isRequired,
|
2016-03-22 05:01:58 +00:00
|
|
|
requests: PropTypes.shape({
|
|
|
|
all: PropTypes.array.isRequired,
|
|
|
|
active: PropTypes.string // "required" but can be null
|
|
|
|
}).isRequired,
|
2016-04-09 21:08:55 +00:00
|
|
|
responses: PropTypes.object.isRequired,
|
2016-04-10 02:58:48 +00:00
|
|
|
tabs: PropTypes.object.isRequired
|
2016-03-20 04:47:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
function mapStateToProps (state) {
|
|
|
|
return {
|
|
|
|
actions: state.actions,
|
2016-03-22 05:01:58 +00:00
|
|
|
requests: state.requests,
|
2016-03-24 10:20:11 +00:00
|
|
|
requestGroups: state.requestGroups,
|
2016-04-09 21:08:55 +00:00
|
|
|
responses: state.responses,
|
2016-04-09 18:47:51 +00:00
|
|
|
tabs: state.tabs
|
2016-03-20 04:47:43 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
function mapDispatchToProps (dispatch) {
|
|
|
|
return {
|
|
|
|
actions: Object.assign(
|
|
|
|
{},
|
|
|
|
bindActionCreators(GlobalActions, dispatch),
|
2016-04-09 21:08:55 +00:00
|
|
|
bindActionCreators(RequestGroupActions, dispatch),
|
2016-04-04 07:15:30 +00:00
|
|
|
bindActionCreators(RequestActions, dispatch),
|
2016-04-09 21:08:55 +00:00
|
|
|
bindActionCreators(ResponseActions, dispatch)
|
2016-03-20 04:47:43 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default connect(
|
|
|
|
mapStateToProps,
|
|
|
|
mapDispatchToProps
|
|
|
|
)(App);
|
|
|
|
|