mirror of
https://github.com/weaveworks/scope.git
synced 2026-03-04 10:41:14 +00:00
69 lines
1.7 KiB
JavaScript
69 lines
1.7 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,
|
|
source,
|
|
target
|
|
} = this.props;
|
|
const className = classNames('edge', { highlighted, blurred, focused });
|
|
const thickness = (scale * 0.01) * NODE_BASE_SIZE;
|
|
const strokeWidth = focused ? thickness * 3 : thickness;
|
|
const shouldRenderMarker = (focused || highlighted) && (source !== target);
|
|
// 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 * strokeWidth }} />
|
|
<path
|
|
className="link"
|
|
d={path}
|
|
markerEnd={shouldRenderMarker ? 'url(#end-arrow)' : null}
|
|
style={{ strokeWidth }}
|
|
/>
|
|
</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);
|