insomnia/app/components/Sidebar.js

129 lines
3.4 KiB
JavaScript
Raw Normal View History

import React, {Component, PropTypes} from 'react';
import WorkspaceDropdown from './../containers/WorkspaceDropdown';
import Input from './base/Input';
import SidebarRequestGroupRow from './SidebarRequestGroupRow';
import SidebarRequestRow from './SidebarRequestRow';
2016-03-18 00:36:00 +00:00
2016-03-23 05:26:27 +00:00
class Sidebar extends Component {
2016-06-19 00:08:14 +00:00
_onFilterChange (value) {
2016-03-23 05:26:27 +00:00
this.props.changeFilter(value);
}
_filterChildren (filter, children, extra = null) {
return children.filter(child => {
if (child.doc.type !== 'Request') {
2016-04-05 05:35:21 +00:00
return true;
}
const request = child.doc;
2016-04-05 05:35:21 +00:00
const otherMatches = extra || '';
const toMatch = `${request.method}${request.name}${otherMatches}`.toLowerCase();
const matchTokens = filter.toLowerCase().split(' ');
2016-04-05 05:35:21 +00:00
for (let i = 0; i < matchTokens.length; i++) {
let token = `${matchTokens[i]}`;
if (toMatch.indexOf(token) === -1) {
// Filter failed. Don't render children
return false;
}
}
2016-04-07 01:11:16 +00:00
return true;
})
2016-03-24 10:20:11 +00:00
}
_renderChildren (children, requestGroup) {
2016-04-29 04:57:03 +00:00
const {
filter,
toggleRequestGroup,
addRequestToRequestGroup
} = this.props;
const filteredChildren = this._filterChildren(
filter,
children,
requestGroup && requestGroup.name
).sort((a, b) => a.doc._id > b.doc._id ? -1 : 1);
return filteredChildren.map(child => {
if (child.doc.type === 'Request') {
return (
<SidebarRequestRow
key={child.doc._id}
activateRequest={this.props.activateRequest}
isActive={child.doc._id === this.props.activeRequestId}
request={child.doc}
/>
)
2016-04-29 04:57:03 +00:00
}
2016-05-01 19:56:30 +00:00
2016-04-29 04:57:03 +00:00
// We have a RequestGroup!
2016-04-29 04:57:03 +00:00
const requestGroup = child.doc;
const isActive = !!child.children.find(c => c.doc._id === this.props.activeRequestId);
const children = this._renderChildren(child.children, requestGroup);
// Don't render the row if there are no children while filtering
if (filter && !children.length) {
return null;
}
2016-04-29 04:57:03 +00:00
return (
<SidebarRequestGroupRow
key={requestGroup._id}
isActive={isActive}
toggleRequestGroup={toggleRequestGroup}
addRequestToRequestGroup={addRequestToRequestGroup}
numChildren={child.children.length}
requestGroup={requestGroup}>
2016-04-29 04:57:03 +00:00
{children}
</SidebarRequestGroupRow>
)
})
2016-03-24 10:20:11 +00:00
}
2016-03-23 05:26:27 +00:00
render () {
const {filter, children} = this.props;
2016-03-23 05:26:27 +00:00
return (
2016-06-19 00:40:14 +00:00
<aside className="sidebar">
2016-05-01 19:56:30 +00:00
<header className="sidebar__header">
2016-04-15 02:13:49 +00:00
<WorkspaceDropdown />
2016-04-07 01:11:16 +00:00
</header>
2016-05-01 19:56:30 +00:00
<ul className="sidebar__list">
{this._renderChildren(children)}
</ul>
2016-07-19 16:15:03 +00:00
<footer className="sidebar__footer form-control form-control--underlined">
<Input
type="text"
placeholder="Filter Requests"
value={filter}
onChange={this._onFilterChange.bind(this)}/>
</footer>
2016-05-01 19:56:30 +00:00
</aside>
2016-03-23 05:26:27 +00:00
)
}
}
2016-03-18 00:36:00 +00:00
2016-03-20 04:00:40 +00:00
Sidebar.propTypes = {
// Functions
2016-03-20 04:47:43 +00:00
activateRequest: PropTypes.func.isRequired,
toggleRequestGroup: PropTypes.func.isRequired,
2016-04-16 23:24:57 +00:00
addRequestToRequestGroup: PropTypes.func.isRequired,
2016-03-23 05:26:27 +00:00
changeFilter: PropTypes.func.isRequired,
// Other
children: PropTypes.array.isRequired,
// Optional
filter: PropTypes.string,
activeRequestId: PropTypes.string
2016-03-20 04:00:40 +00:00
};
2016-03-18 00:36:00 +00:00
export default Sidebar;