bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/tooltip/component.jsx

174 lines
4.6 KiB
React
Raw Normal View History

import React, { Component } from 'react';
import PropTypes from 'prop-types';
import Tippy from 'tippy.js';
import _ from 'lodash';
import cx from 'classnames';
import { ESCAPE } from '/imports/utils/keyCodes';
import Settings from '/imports/ui/services/settings';
2019-01-31 23:20:13 +08:00
const DEFAULT_ANIMATION = 'shift-away';
const ANIMATION_NONE = 'none';
2019-02-05 01:36:59 +08:00
const ANIMATION_DURATION = 350;
const ANIMATION_DELAY = [150, 50];
const propTypes = {
title: PropTypes.string.isRequired,
position: PropTypes.oneOf(['bottom']),
children: PropTypes.element.isRequired,
2017-12-12 02:47:34 +08:00
className: PropTypes.string,
2019-03-09 09:06:45 +08:00
tooltipDistance: PropTypes.number,
};
const defaultProps = {
position: 'bottom',
2017-12-12 02:47:34 +08:00
className: null,
2019-03-09 09:06:45 +08:00
tooltipDistance: -1,
};
class Tooltip extends Component {
static wait(tip, event) {
const tooltipTarget = event.target;
const expandedEl = tooltipTarget.parentElement.querySelector('[aria-expanded="true"]');
const isTarget = expandedEl === tooltipTarget;
if (expandedEl && !isTarget) return;
2019-01-26 04:57:19 +08:00
const findLabel = (node) => {
let rtn;
if (node) {
const { nodeName, lastChild, parentElement } = node;
if (nodeName.toLowerCase() === 'button') rtn = lastChild.innerText;
else rtn = findLabel(parentElement);
}
return rtn;
};
const label = findLabel(tooltipTarget);
if (label) tip.set({ content: label });
2019-01-26 04:57:19 +08:00
// if we are not able to get the text, the default content is used
tip.show();
}
constructor(props) {
super(props);
this.tippySelectorId = _.uniqueId('tippy-');
this.onShow = this.onShow.bind(this);
this.onHide = this.onHide.bind(this);
this.handleEscapeHide = this.handleEscapeHide.bind(this);
}
componentDidMount() {
const {
position,
2018-12-10 09:08:16 +08:00
title,
tooltipDistance,
} = this.props;
const { animations } = Settings.application;
let distance = 0;
2019-03-09 09:06:45 +08:00
if (tooltipDistance < 0) {
if (animations) distance = 10;
2019-03-09 09:06:45 +08:00
else distance = 20;
} else {
distance = tooltipDistance;
}
const options = {
placement: position,
performance: true,
2018-12-10 09:08:16 +08:00
content: title,
delay: animations ? ANIMATION_DELAY : [ANIMATION_DELAY[0], 0],
duration: animations ? ANIMATION_DURATION : 0,
onShow: this.onShow,
onHide: this.onHide,
wait: Tooltip.wait,
touchHold: true,
2018-12-19 22:27:48 +08:00
size: 'regular',
distance,
2018-12-19 22:27:48 +08:00
arrow: true,
arrowType: 'sharp',
aria: null,
animation: animations ? DEFAULT_ANIMATION : ANIMATION_NONE,
};
this.tooltip = Tippy(`#${this.tippySelectorId}`, options);
}
componentDidUpdate() {
const { animations } = Settings.application;
const { title } = this.props;
const elements = document.querySelectorAll('[id^="tippy-"]');
2019-01-31 01:43:11 +08:00
Array.from(elements).filter((e) => {
const instance = e._tippy;
2019-02-01 01:29:59 +08:00
if (!instance) return false;
2019-02-01 01:29:59 +08:00
const animation = animations ? DEFAULT_ANIMATION : ANIMATION_NONE;
2019-02-01 01:29:59 +08:00
if (animation === instance.props.animation) return false;
2019-02-01 01:29:59 +08:00
return true;
}).forEach((e) => {
const instance = e._tippy;
instance.set({
animation: animations
? DEFAULT_ANIMATION : ANIMATION_NONE,
distance: animations ? 10 : 20,
delay: animations ? ANIMATION_DELAY : [ANIMATION_DELAY[0], 0],
duration: animations ? ANIMATION_DURATION : 0,
});
2019-01-31 01:43:11 +08:00
// adjusts the distance for tooltips on the presentation toolbar
Object.entries(instance.reference.classList).reduce((acc, [key]) => {
if (!instance.reference.classList[key].match(/(presentationBtn)/)) return false;
instance.set({ distance: animations ? 35 : 45 });
return true;
});
});
const elem = document.getElementById(this.tippySelectorId);
if (elem._tippy) elem._tippy.set({ content: title });
}
onShow() {
document.addEventListener('keyup', this.handleEscapeHide);
}
onHide() {
document.removeEventListener('keyup', this.handleEscapeHide);
}
handleEscapeHide(e) {
if (this.tooltip
&& e.keyCode === ESCAPE
&& this.tooltip.tooltips
&& this.tooltip.tooltips[0]) {
this.tooltip.tooltips[0].hide();
}
}
render() {
const {
children,
className,
...restProps
} = this.props;
const WrappedComponent = React.Children.only(children);
const WrappedComponentBound = React.cloneElement(WrappedComponent, {
...restProps,
id: this.tippySelectorId,
className: cx(children.props.className, className),
});
return WrappedComponentBound;
}
}
export default Tooltip;
Tooltip.defaultProps = defaultProps;
Tooltip.propTypes = propTypes;