mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-10-11 06:16:43 +03:00
99 lines
2.1 KiB
JavaScript
99 lines
2.1 KiB
JavaScript
import React from 'react';
|
|
import brighten from './brighten';
|
|
import shouldPureComponentUpdate from 'react-pure-render/function';
|
|
|
|
const styles = {
|
|
base: {
|
|
cursor: 'pointer',
|
|
fontWeight: 'bold',
|
|
borderRadius: 3,
|
|
padding: 4,
|
|
marginLeft: 3,
|
|
marginRight: 3,
|
|
marginTop: 5,
|
|
marginBottom: 5,
|
|
flexGrow: 1,
|
|
display: 'inline-block',
|
|
fontSize: '0.8em',
|
|
color: 'white',
|
|
textDecoration: 'none'
|
|
}
|
|
};
|
|
|
|
export default class LogMonitorButton extends React.Component {
|
|
shouldComponentUpdate = shouldPureComponentUpdate;
|
|
|
|
constructor(props) {
|
|
super(props);
|
|
|
|
this.handleMouseEnter = this.handleMouseEnter.bind(this);
|
|
this.handleMouseLeave = this.handleMouseLeave.bind(this);
|
|
this.handleMouseDown = this.handleMouseDown.bind(this);
|
|
this.handleMouseUp = this.handleMouseUp.bind(this);
|
|
this.onClick = this.onClick.bind(this);
|
|
|
|
this.state = {
|
|
hovered: false,
|
|
active: false
|
|
};
|
|
}
|
|
|
|
handleMouseEnter() {
|
|
this.setState({ hovered: true });
|
|
}
|
|
|
|
handleMouseLeave() {
|
|
this.setState({ hovered: false });
|
|
}
|
|
|
|
handleMouseDown() {
|
|
this.setState({ active: true });
|
|
}
|
|
|
|
handleMouseUp() {
|
|
this.setState({ active: false });
|
|
}
|
|
|
|
onClick() {
|
|
if (!this.props.enabled) {
|
|
return;
|
|
}
|
|
if (this.props.onClick) {
|
|
this.props.onClick();
|
|
}
|
|
}
|
|
|
|
render() {
|
|
let style = {
|
|
...styles.base,
|
|
backgroundColor: this.props.theme.base02
|
|
};
|
|
if (this.props.enabled && this.state.hovered) {
|
|
style = {
|
|
...style,
|
|
backgroundColor: brighten(this.props.theme.base02, 0.2)
|
|
};
|
|
}
|
|
if (!this.props.enabled) {
|
|
style = {
|
|
...style,
|
|
opacity: 0.2,
|
|
cursor: 'text',
|
|
backgroundColor: 'transparent'
|
|
};
|
|
}
|
|
return (
|
|
<a
|
|
onMouseEnter={this.handleMouseEnter}
|
|
onMouseLeave={this.handleMouseLeave}
|
|
onMouseDown={this.handleMouseDown}
|
|
onMouseUp={this.handleMouseUp}
|
|
onClick={this.onClick}
|
|
style={style}
|
|
>
|
|
{this.props.children}
|
|
</a>
|
|
);
|
|
}
|
|
}
|