mirror of
https://github.com/weaveworks/scope.git
synced 2026-03-05 11:11:13 +00:00
53 lines
1.5 KiB
JavaScript
53 lines
1.5 KiB
JavaScript
import React from 'react';
|
|
import { connect } from 'react-redux';
|
|
import classNames from 'classnames';
|
|
|
|
import { enterEdge, leaveEdge } from '../actions/app-actions';
|
|
import { NODE_BASE_SIZE } from '../constants/styles';
|
|
|
|
class Edge extends React.Component {
|
|
|
|
constructor(props, context) {
|
|
super(props, context);
|
|
this.handleMouseEnter = this.handleMouseEnter.bind(this);
|
|
this.handleMouseLeave = this.handleMouseLeave.bind(this);
|
|
}
|
|
|
|
render() {
|
|
const { id, path, highlighted, blurred, focused, scale, contrastMode } = this.props;
|
|
const className = classNames('edge', { highlighted, blurred, focused });
|
|
const thickness = scale * (contrastMode ? 0.02 : 0.01) * NODE_BASE_SIZE;
|
|
|
|
// Draws the edge so that its thickness reflects the zoom scale.
|
|
// Edge shadow is always made 10x thicker than the edge itself.
|
|
return (
|
|
<g
|
|
id={id} className={className}
|
|
onMouseEnter={this.handleMouseEnter}
|
|
onMouseLeave={this.handleMouseLeave}>
|
|
<path className="shadow" d={path} style={{ strokeWidth: 10 * thickness }} />
|
|
<path className="link" d={path} style={{ strokeWidth: thickness }} />
|
|
</g>
|
|
);
|
|
}
|
|
|
|
handleMouseEnter(ev) {
|
|
this.props.enterEdge(ev.currentTarget.id);
|
|
}
|
|
|
|
handleMouseLeave(ev) {
|
|
this.props.leaveEdge(ev.currentTarget.id);
|
|
}
|
|
}
|
|
|
|
function mapStateToProps(state) {
|
|
return {
|
|
contrastMode: state.get('contrastMode')
|
|
};
|
|
}
|
|
|
|
export default connect(
|
|
mapStateToProps,
|
|
{ enterEdge, leaveEdge }
|
|
)(Edge);
|