bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/tooltip/component.jsx
2019-01-31 13:20:13 -02:00

144 lines
3.5 KiB
JavaScript
Executable File

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';
const DEFAULT_ANIMATION = 'shift-away';
const ANIMATION_NONE = 'none';
const propTypes = {
title: PropTypes.string.isRequired,
position: PropTypes.oneOf(['bottom']),
children: PropTypes.element.isRequired,
className: PropTypes.string,
};
const defaultProps = {
position: 'bottom',
className: null,
};
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;
tip.set({ content: tooltipTarget.lastChild.innerText });
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);
this.delay = [150, 50];
this.state = {
enableAnimation: Settings.application.animations,
};
}
componentDidMount() {
const {
position,
title,
} = this.props;
const { enableAnimation } = this.state;
const options = {
placement: position,
performance: true,
content: title,
delay: this.delay,
onShow: this.onShow,
onHide: this.onHide,
wait: Tooltip.wait,
touchHold: true,
size: 'regular',
distance: (enableAnimation) ? 10 : 20,
arrow: true,
arrowType: 'sharp',
animation: (enableAnimation) ? DEFAULT_ANIMATION : ANIMATION_NONE,
};
this.tooltip = Tippy(`#${this.tippySelectorId}`, options);
}
componentDidUpdate() {
const { enableAnimation } = this.state;
const { animations } = Settings.application;
if (animations !== enableAnimation) {
const elements = document.querySelectorAll('[id^="tippy-"]');
Array.from(elements).filter((e) => {
const instance = e._tippy;
let anim;
if (instance && instance.props.animation === DEFAULT_ANIMATION) {
anim = true;
} else {
anim = false;
}
const validate = (instance
&& anim !== animations
);
return validate;
}).forEach((e) => {
const instance = e._tippy;
instance.set({
animation: animations
? DEFAULT_ANIMATION : ANIMATION_NONE,
distance: animations ? 10 : 20,
});
});
this.setEnableAnimation(animations);
}
}
onShow() {
document.addEventListener('keyup', this.handleEscapeHide);
}
onHide() {
document.removeEventListener('keyup', this.handleEscapeHide);
}
setEnableAnimation(enableAnimation) {
this.setState({ enableAnimation });
}
handleEscapeHide(e) {
if (e.keyCode !== ESCAPE) return;
this.tooltip.tooltips[0].hide();
}
render() {
const {
children,
className,
title,
...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;