insomnia/packages/insomnia-app/app/ui/components/tooltip.js
Gregory Schier 549ce23ce8
Merge All Repositories into Monorepo for easier maintenance (#629)
* All projects into monorepo

* Update CI

* More CI updates

* Extracted a bunch of things into packages

* Publish

 - insomnia-plugin-base64@1.0.1
 - insomnia-plugin-default-headers@1.0.2
 - insomnia-plugin-file@1.0.1
 - insomnia-plugin-hash@1.0.1
 - insomnia-plugin-now@1.0.1
 - insomnia-plugin-request@1.0.1
 - insomnia-plugin-response@1.0.1
 - insomnia-plugin-uuid@1.0.1
 - insomnia-cookies@0.0.2
 - insomnia-importers@1.5.2
 - insomnia-prettify@0.0.3
 - insomnia-url@0.0.2
 - insomnia-xpath@0.0.2

* A bunch of small fixes

* Improved build script

* Fixed

* Merge dangling files

* Usability refactor

* Handle duplicate plugin names
2017-11-26 20:45:40 +00:00

164 lines
3.9 KiB
JavaScript

// @flow
import * as React from 'react';
import autobind from 'autobind-decorator';
import classnames from 'classnames';
import ReactDOM from 'react-dom';
type Props = {
children: React.Node,
message: React.Node,
position: 'bottom' | 'top' | 'right' | 'left',
// Optional
className?: string,
delay?: number
};
type State = {
visible: boolean
};
@autobind
class Tooltip extends React.PureComponent<Props, State> {
_showTimeout: number;
// TODO: Figure out what type these should be
_tooltip: ?HTMLDivElement;
_bubble: ?HTMLDivElement;
constructor (props: any) {
super(props);
this.state = {
left: null,
top: null,
bottom: null,
right: null,
maxWidth: null,
maxHeight: null,
visible: false
};
}
_setTooltipRef (n: ?HTMLDivElement) {
this._tooltip = n;
}
_setBubbleRef (n: ?HTMLDivElement) {
this._bubble = n;
}
_handleStopClick (e: MouseEvent): void {
e.stopPropagation();
}
_handleMouseEnter (e: MouseEvent): void {
this._showTimeout = setTimeout((): void => {
const tooltip = this._tooltip;
const bubble = this._bubble;
if (!tooltip) {
return;
}
if (!bubble) {
return;
}
const tooltipRect = tooltip.getBoundingClientRect();
const bubbleRect = bubble.getBoundingClientRect();
const margin = 3;
switch (this.props.position) {
case 'right':
bubble.style.top = `${tooltipRect.top - (bubbleRect.height / 2) + (tooltipRect.height / 2)}px`;
bubble.style.left = `${tooltipRect.left + tooltipRect.width + margin}px`;
break;
case 'bottom':
bubble.style.top = `${tooltipRect.top + tooltipRect.height + margin}px`;
bubble.style.left = `${tooltipRect.left - (bubbleRect.width / 2) + (tooltipRect.width / 2)}px`;
break;
case 'top':
default:
bubble.style.top = `${tooltipRect.top - bubbleRect.height - margin}px`;
bubble.style.left = `${tooltipRect.left - (bubbleRect.width / 2) + (tooltipRect.width / 2)}px`;
break;
}
this.setState({visible: true});
}, this.props.delay || 100);
}
_handleMouseLeave (): void {
clearTimeout(this._showTimeout);
this.setState({visible: false});
const bubble = this._bubble;
if (!bubble) {
return;
}
// Reset positioning stuff
bubble.style.left = '';
bubble.style.top = '';
bubble.style.bottom = '';
bubble.style.right = '';
}
_getContainer (): HTMLElement {
let container = document.querySelector('#tooltips-container');
if (!container) {
container = document.createElement('div');
container.id = 'tooltips-container';
document.body && document.body.appendChild(container);
}
return container;
}
componentDidMount () {
// Move the element to the body so we can position absolutely
if (this._bubble) {
const el = ReactDOM.findDOMNode(this._bubble);
el && this._getContainer().appendChild(el);
}
}
componentWillUnmount () {
// Remove the element from the body
if (this._bubble) {
const el = ReactDOM.findDOMNode(this._bubble);
el && this._getContainer().removeChild(el);
}
}
render () {
const {children, message, className} = this.props;
const {visible} = this.state;
const tooltipClasses = classnames(className, 'tooltip');
const bubbleClasses = classnames('tooltip__bubble', {
'tooltip__bubble--visible': visible
});
return (
<div className={tooltipClasses}
ref={this._setTooltipRef}
onMouseEnter={this._handleMouseEnter}
onMouseLeave={this._handleMouseLeave}>
<div className={bubbleClasses}
onClick={this._handleStopClick}
ref={this._setBubbleRef}>
{message}
</div>
{children}
</div>
);
}
}
export default Tooltip;