2018-02-01 01:27:35 +01:00
|
|
|
const Component = require('react').Component
|
|
|
|
const h = require('react-hyperscript')
|
|
|
|
const inherits = require('util').inherits
|
|
|
|
const ReactTippy = require('react-tippy').Tooltip
|
|
|
|
|
|
|
|
module.exports = Tooltip
|
|
|
|
|
|
|
|
inherits(Tooltip, Component)
|
|
|
|
function Tooltip () {
|
|
|
|
Component.call(this)
|
|
|
|
}
|
|
|
|
|
|
|
|
Tooltip.prototype.render = function () {
|
|
|
|
const props = this.props
|
2018-06-23 08:52:45 +02:00
|
|
|
const { position, title, children, wrapperClassName, containerClassName, onHidden } = props
|
2018-02-01 01:27:35 +01:00
|
|
|
|
|
|
|
return h('div', {
|
|
|
|
className: wrapperClassName,
|
|
|
|
}, [
|
|
|
|
|
|
|
|
h(ReactTippy, {
|
|
|
|
title,
|
|
|
|
position: position || 'left',
|
|
|
|
trigger: 'mouseenter',
|
|
|
|
hideOnClick: false,
|
|
|
|
size: 'small',
|
|
|
|
arrow: true,
|
2018-06-23 08:52:45 +02:00
|
|
|
className: containerClassName,
|
|
|
|
onHidden,
|
2018-02-01 01:27:35 +01:00
|
|
|
}, children),
|
|
|
|
|
|
|
|
])
|
|
|
|
}
|