mirror of
https://github.com/Kong/insomnia.git
synced 2026-04-21 14:47:46 -04:00
* Start on workspace dropdown and upgrade fontawesome * WorkspaceDropdown start and Elm components! * Lots of CSS shit * Refactor some db stuff and move filter out of sidebar * Adjust dropdown css * Handle duplicate header names, and stuff * Shitty cookies tab * fixed cookie table a bit * Modal refactor * Starteed cookie modal design * Better cookie storage and filter cookie modal * Cookie editor round 1 * Fix kve cursor jumping and form encoding templating * New cookies now show up in filter * Checkpoint * Stuff and fix environments css * Added manage cookies button to cookie pane * Fix accidental sidebar item drag on sidebar resize * Environments modal is looking pretty good now * Pretty much done environments nad cookies * Some changes * Fixed codemirror in modals * Fixed some things * Add basic proxy support * Updated shortcuts * Code snippet generation * Some style * bug fix * Code export now gets cookies for correct domain
79 lines
1.6 KiB
JavaScript
79 lines
1.6 KiB
JavaScript
import React, {Component, PropTypes} from 'react';
|
|
import ReactDOM from 'react-dom';
|
|
import classnames from 'classnames';
|
|
|
|
class Dropdown extends Component {
|
|
constructor (props) {
|
|
super(props);
|
|
this.state = {
|
|
open: false,
|
|
dropUp: false
|
|
};
|
|
}
|
|
|
|
_handleClick () {
|
|
this.toggle();
|
|
}
|
|
|
|
hide () {
|
|
this.setState({open: false});
|
|
}
|
|
|
|
show () {
|
|
const bodyHeight = document.body.getBoundingClientRect().height;
|
|
const dropdownTop = ReactDOM.findDOMNode(this).getBoundingClientRect().top;
|
|
const dropUp = dropdownTop > bodyHeight * 0.65;
|
|
|
|
this.setState({open: true, dropUp});
|
|
}
|
|
|
|
toggle () {
|
|
if (this.state.open) {
|
|
this.hide();
|
|
} else {
|
|
this.show();
|
|
}
|
|
}
|
|
|
|
componentDidMount () {
|
|
ReactDOM.findDOMNode(this).addEventListener('keydown', e => {
|
|
if (this.state.open && e.keyCode === 27) {
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
// Pressed escape
|
|
this.hide();
|
|
}
|
|
});
|
|
}
|
|
|
|
render () {
|
|
const {right, className, outline} = this.props;
|
|
const {dropUp, open} = this.state;
|
|
|
|
const classes = classnames(
|
|
'dropdown',
|
|
className,
|
|
{'dropdown--open': open},
|
|
{'dropdown--outlined': outline},
|
|
{'dropdown--up': dropUp},
|
|
{'dropdown--right': right}
|
|
);
|
|
|
|
return (
|
|
<div className={classes}
|
|
onClick={this._handleClick.bind(this)}>
|
|
|
|
{this.props.children}
|
|
<div className="dropdown__backdrop"></div>
|
|
</div>
|
|
)
|
|
}
|
|
}
|
|
|
|
Dropdown.propTypes = {
|
|
right: PropTypes.bool,
|
|
outline: PropTypes.bool
|
|
};
|
|
|
|
export default Dropdown;
|