mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
* Don't show "Unavailable on this network" if Swaps button is enabled * Hide a tooltip title if tooltip is disabled * Update a snapshot
94 lines
2.1 KiB
JavaScript
94 lines
2.1 KiB
JavaScript
import PropTypes from 'prop-types';
|
|
import React, { PureComponent } from 'react';
|
|
import { Tooltip as ReactTippy } from 'react-tippy';
|
|
|
|
export default class Tooltip extends PureComponent {
|
|
static defaultProps = {
|
|
arrow: true,
|
|
children: null,
|
|
containerClassName: '',
|
|
html: null,
|
|
interactive: undefined,
|
|
onHidden: null,
|
|
position: 'left',
|
|
offset: 0,
|
|
size: 'small',
|
|
title: null,
|
|
trigger: 'mouseenter focus',
|
|
wrapperClassName: undefined,
|
|
theme: '',
|
|
tag: 'div',
|
|
};
|
|
|
|
static propTypes = {
|
|
arrow: PropTypes.bool,
|
|
children: PropTypes.node,
|
|
containerClassName: PropTypes.string,
|
|
disabled: PropTypes.bool,
|
|
html: PropTypes.node,
|
|
interactive: PropTypes.bool,
|
|
offset: PropTypes.number,
|
|
onHidden: PropTypes.func,
|
|
position: PropTypes.oneOf(['top', 'right', 'bottom', 'left']),
|
|
size: PropTypes.oneOf(['small', 'regular', 'big']),
|
|
title: PropTypes.string,
|
|
trigger: PropTypes.any,
|
|
wrapperClassName: PropTypes.string,
|
|
style: PropTypes.object,
|
|
theme: PropTypes.string,
|
|
tabIndex: PropTypes.number,
|
|
tag: PropTypes.string,
|
|
};
|
|
|
|
render() {
|
|
const {
|
|
arrow,
|
|
children,
|
|
containerClassName,
|
|
disabled,
|
|
position,
|
|
html,
|
|
interactive,
|
|
size,
|
|
title,
|
|
trigger,
|
|
onHidden,
|
|
offset,
|
|
wrapperClassName,
|
|
style,
|
|
theme,
|
|
tabIndex,
|
|
tag,
|
|
} = this.props;
|
|
|
|
if (!title && !html) {
|
|
return <div className={wrapperClassName}>{children}</div>;
|
|
}
|
|
|
|
return React.createElement(
|
|
tag,
|
|
{ className: wrapperClassName },
|
|
<ReactTippy
|
|
arrow={arrow}
|
|
className={containerClassName}
|
|
disabled={disabled}
|
|
hideOnClick={false}
|
|
html={html}
|
|
interactive={interactive}
|
|
onHidden={onHidden}
|
|
position={position}
|
|
size={size}
|
|
offset={offset}
|
|
style={style}
|
|
title={disabled ? '' : title}
|
|
trigger={trigger}
|
|
theme={theme}
|
|
tabIndex={tabIndex || 0}
|
|
tag={tag}
|
|
>
|
|
{children}
|
|
</ReactTippy>,
|
|
);
|
|
}
|
|
}
|