element-web/src/components/views/elements/Tooltip.tsx

128 lines
4.5 KiB
TypeScript
Raw Normal View History

/*
Copyright 2015, 2016 OpenMarket Ltd
Copyright 2019 New Vector Ltd
Copyright 2019 Michael Telatynski <7t3chguy@gmail.com>
2020-05-25 19:53:09 +03:00
Copyright 2019, 2020 The Matrix.org Foundation C.I.C.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import React, {Component, CSSProperties} from 'react';
import ReactDOM from 'react-dom';
import classNames from 'classnames';
const MIN_TOOLTIP_HEIGHT = 25;
2020-05-25 15:40:05 +03:00
interface IProps {
// Class applied to the element used to position the tooltip
2020-06-18 16:32:43 +03:00
className: string;
// Class applied to the tooltip itself
2020-06-18 16:32:43 +03:00
tooltipClassName?: string;
// Whether the tooltip is visible or hidden.
// The hidden state allows animating the tooltip away via CSS.
// Defaults to visible if unset.
2020-06-18 16:32:43 +03:00
visible?: boolean;
// the react element to put into the tooltip
2020-06-18 16:32:43 +03:00
label: React.ReactNode;
2020-05-25 15:40:05 +03:00
}
2020-05-25 19:37:07 +03:00
export default class Tooltip extends React.Component<IProps> {
2020-05-25 15:40:05 +03:00
private tooltipContainer: HTMLElement;
private tooltip: void | Element | Component<Element, any, any>;
private parent: Element;
public static readonly defaultProps = {
2020-05-25 15:40:05 +03:00
visible: true,
};
// Create a wrapper for the tooltip outside the parent and attach it to the body element
public componentDidMount() {
this.tooltipContainer = document.createElement("div");
this.tooltipContainer.className = "mx_Tooltip_wrapper";
document.body.appendChild(this.tooltipContainer);
2020-05-25 15:40:05 +03:00
window.addEventListener('scroll', this.renderTooltip, true);
2020-05-25 15:40:05 +03:00
this.parent = ReactDOM.findDOMNode(this).parentNode as Element;
2020-05-25 15:40:05 +03:00
this.renderTooltip();
}
public componentDidUpdate() {
2020-05-25 15:40:05 +03:00
this.renderTooltip();
}
// Remove the wrapper element, as the tooltip has finished using it
public componentWillUnmount() {
ReactDOM.unmountComponentAtNode(this.tooltipContainer);
document.body.removeChild(this.tooltipContainer);
2020-05-25 15:40:05 +03:00
window.removeEventListener('scroll', this.renderTooltip, true);
}
private updatePosition(style: CSSProperties) {
const parentBox = this.parent.getBoundingClientRect();
let offset = 0;
if (parentBox.height > MIN_TOOLTIP_HEIGHT) {
offset = Math.floor((parentBox.height - MIN_TOOLTIP_HEIGHT) / 2);
} else {
// The tooltip is larger than the parent height: figure out what offset
// we need so that we're still centered.
offset = Math.floor(parentBox.height - MIN_TOOLTIP_HEIGHT);
}
style.top = (parentBox.top - 2) + window.pageYOffset + offset;
if (parentBox.right > window.innerWidth / 2) {
style.right = window.innerWidth - parentBox.right - window.pageXOffset - 8;
} else {
style.left = parentBox.right + window.pageXOffset + 6;
}
return style;
2020-05-25 15:40:05 +03:00
}
private renderTooltip = () => {
// Add the parent's position to the tooltips, so it's correctly
// positioned, also taking into account any window zoom
// NOTE: The additional 6 pixels for the left position, is to take account of the
// tooltips chevron
2020-05-25 15:40:05 +03:00
const style = this.updatePosition({});
// Hide the entire container when not visible. This prevents flashing of the tooltip
// if it is not meant to be visible on first mount.
style.display = this.props.visible ? "block" : "none";
const tooltipClasses = classNames("mx_Tooltip", this.props.tooltipClassName, {
"mx_Tooltip_visible": this.props.visible,
"mx_Tooltip_invisible": !this.props.visible,
});
const tooltip = (
<div className={tooltipClasses} style={style}>
<div className="mx_Tooltip_chevron" />
{ this.props.label }
</div>
);
// Render the tooltip manually, as we wish it not to be rendered within the parent
2020-05-25 15:40:05 +03:00
this.tooltip = ReactDOM.render<Element>(tooltip, this.tooltipContainer);
2020-06-18 16:32:43 +03:00
};
public render() {
// Render a placeholder
return (
<div className={this.props.className} >
</div>
);
2020-05-25 15:40:05 +03:00
}
}