2019-05-06 22:35:29 +02:00
|
|
|
const React = require('react');
|
|
|
|
const { connect } = require('react-redux');
|
2020-06-10 23:08:59 +02:00
|
|
|
const { themeStyle } = require('lib/theme');
|
2019-05-06 22:35:29 +02:00
|
|
|
|
|
|
|
class HelpButtonComponent extends React.Component {
|
|
|
|
constructor() {
|
|
|
|
super();
|
|
|
|
|
|
|
|
this.onClick = this.onClick.bind(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
onClick() {
|
|
|
|
if (this.props.onClick) this.props.onClick();
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
const theme = themeStyle(this.props.theme);
|
2020-03-14 01:46:14 +02:00
|
|
|
const style = Object.assign({}, this.props.style, { color: theme.color, textDecoration: 'none' });
|
2019-07-29 14:13:23 +02:00
|
|
|
const helpIconStyle = { flex: 0, width: 16, height: 16, marginLeft: 10 };
|
2019-05-06 22:35:29 +02:00
|
|
|
const extraProps = {};
|
|
|
|
if (this.props.tip) extraProps['data-tip'] = this.props.tip;
|
2019-07-29 14:13:23 +02:00
|
|
|
return (
|
|
|
|
<a href="#" style={style} onClick={this.onClick} {...extraProps}>
|
|
|
|
<i style={helpIconStyle} className={'fa fa-question-circle'}></i>
|
|
|
|
</a>
|
|
|
|
);
|
2019-05-06 22:35:29 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-21 10:14:33 +02:00
|
|
|
const mapStateToProps = state => {
|
2019-05-06 22:35:29 +02:00
|
|
|
return {
|
|
|
|
theme: state.settings.theme,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
const HelpButton = connect(mapStateToProps)(HelpButtonComponent);
|
|
|
|
|
|
|
|
module.exports = HelpButton;
|