insomnia/app/components/Sidebar.js

152 lines
3.9 KiB
JavaScript
Raw Normal View History

2016-03-23 05:26:27 +00:00
import React, {Component, PropTypes} from 'react'
2016-06-19 00:08:14 +00:00
import ReactDOM from 'react-dom'
2016-04-23 06:16:23 +00:00
import WorkspaceDropdown from './../containers/WorkspaceDropdown'
2016-05-01 19:56:30 +00:00
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
constructor (props) {
super(props);
this.state = {
width: 19
}
}
_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}
>
{children}
</SidebarRequestGroupRow>
)
})
2016-03-24 10:20:11 +00:00
}
2016-06-19 00:08:14 +00:00
/**
* Resize the sidebar
*
* @param pixelWidth how wide to make the sidebar
*/
resize (pixelWidth) {
const currentPixelWidth = ReactDOM.findDOMNode(this).offsetWidth;
const ratio = pixelWidth / currentPixelWidth;
const width = Math.max(Math.min(this.state.width * ratio, 25), 13);
this.setState({width});
}
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:08:14 +00:00
<aside className="sidebar" style={{width: `${this.state.width}rem`}}>
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>
<footer className="sidebar__footer form-control form-control--underlined">
<Input
type="text"
placeholder="Filter Items"
value={filter}
2016-06-19 00:08:14 +00:00
onChange={this._onFilterChange.bind(this)}/>
2016-05-01 19:56:30 +00:00
</footer>
</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,
workspaceId: PropTypes.string.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;