52 lines
1.3 KiB
JavaScript
52 lines
1.3 KiB
JavaScript
import React, { Component } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
|
|
import './tooltip.css';
|
|
import { InfoIcon } from './icons';
|
|
|
|
class Tooltip extends Component {
|
|
constructor(props) {
|
|
super(props);
|
|
this.state = {
|
|
active: false
|
|
};
|
|
this.handleClick = this.handleClick.bind(this);
|
|
}
|
|
|
|
handleClick(event) {
|
|
event.preventDefault();
|
|
this.setState({
|
|
active: !this.state.active
|
|
});
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<div className="tooltip-wrap">
|
|
<button className={(this.state.active? 'active ': '') + 'tooltip-hint icon-button'}
|
|
title={this.props.text}
|
|
onClick={this.handleClick}>
|
|
Hint
|
|
<InfoIcon />
|
|
</button>
|
|
{
|
|
this.state.active?
|
|
(
|
|
<div className="tooltip bs-tooltip-bottom">
|
|
<div className="arrow"></div>
|
|
<div className="tooltip-inner">{this.props.text}</div>
|
|
</div>
|
|
)
|
|
: null
|
|
}
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
Tooltip.propTypes = {
|
|
text: PropTypes.string
|
|
}
|
|
|
|
export default Tooltip;
|