Fix peaks left behind hidden edges (or not appearing when edges appear)

This commit is contained in:
futpib 2020-06-18 16:39:29 +03:00
parent b8fb579bbb
commit d48e3f4313
3 changed files with 45 additions and 35 deletions

View File

@ -96,8 +96,6 @@ const {
Edge, Edge,
} = require('./base'); } = require('./base');
const Peaks = require('./peaks');
const LayoutEngine = require('./layout-engine'); const LayoutEngine = require('./layout-engine');
const maximum = reduce(max, -Infinity); const maximum = reduce(max, -Infinity);
@ -1453,29 +1451,14 @@ class Graph extends React.PureComponent {
render() { render() {
const { nodes, edges } = this.state; const { nodes, edges } = this.state;
const satellitesGraphViewState = path(
[ 'current', 'state' ],
this.satellitesGraphViewRef,
);
return r(HotKeys, { return r(HotKeys, {
handlers: map(f => bind(f, this), pick(keys(keyMap), this)), handlers: map(f => bind(f, this), pick(keys(keyMap), this)),
}, r.div({ }, r.div({
id: 'graph', id: 'graph',
}, [ }, [
!this.props.preferences.hideLiveVolumePeaks && r(Peaks, {
key: 'peaks',
nodes: defaultTo([], prop('satelliteNodes', satellitesGraphViewState)),
edges: defaultTo([], prop('satelliteEdges', satellitesGraphViewState)),
accommodateGraphAnimation: this.state.isDraggingNode || this.state.isZooming,
peaks: this.props.peaks,
}),
r(SatellitesGraphView, { r(SatellitesGraphView, {
key: 'graph', key: 'graph',
ref: this.satellitesGraphViewRef,
nodeKey: 'id', nodeKey: 'id',
edgeKey: 'id', edgeKey: 'id',
@ -1522,6 +1505,10 @@ class Graph extends React.PureComponent {
renderEdge, renderEdge,
renderEdgeText: renderEdgeText(this.props.store), renderEdgeText: renderEdgeText(this.props.store),
hideLiveVolumePeaks: this.props.preferences.hideLiveVolumePeaks,
accommodateGraphAnimation: this.state.isDraggingNode || this.state.isZooming,
peaks: this.props.peaks,
}), }),
this.state.contexted && ( this.state.contexted && (

View File

@ -97,6 +97,7 @@ class Peaks extends React.Component {
} }
handleTick() { handleTick() {
console.log(this.props.edges.length);
const matrix = this.view.getScreenCTM(); const matrix = this.view.getScreenCTM();
const point = this.graph.createSVGPoint(); const point = this.graph.createSVGPoint();

View File

@ -18,6 +18,8 @@ const {
GraphView: GraphViewBase, GraphView: GraphViewBase,
} = require('./base'); } = require('./base');
const Peaks = require('./peaks');
const originalEdgeToSatelliteNode = edge => ({ const originalEdgeToSatelliteNode = edge => ({
id: `${edge.target}__satellite__${edge.id}`, id: `${edge.target}__satellite__${edge.id}`,
type: 'satellite', type: 'satellite',
@ -218,34 +220,54 @@ class SatellitesGraphView extends React.Component {
moved, moved,
} = this.state; } = this.state;
return r(GraphViewBase, { const {
...this.props, hideLiveVolumePeaks,
accommodateGraphAnimation,
peaks,
selected, ...props
moved, } = this.props;
ref: this.graphViewRef, return r(React.Fragment, [
!hideLiveVolumePeaks && r(Peaks, {
key: 'peaks',
nodes,
edges,
accommodateGraphAnimation,
peaks,
}),
nodes, r(GraphViewBase, {
edges, key: 'graph',
onSwapEdge: this.props.onSwapEdge, ...props,
onNodeMove: this.onNodeMove,
onSelectEdge: this.onSelectEdge, selected,
moved,
onCreateEdge: this.onCreateEdge, ref: this.graphViewRef,
onEdgeMouseDown: this.onEdgeMouseDown, nodes,
edges,
renderNode: this.renderNode, onSwapEdge: this.props.onSwapEdge,
renderNodeText: this.renderNodeText, onNodeMove: this.onNodeMove,
renderEdge: this.renderEdge, onSelectEdge: this.onSelectEdge,
renderEdgeText: this.renderEdgeText,
afterRenderEdge: this.props.afterRenderEdge && this.afterRenderEdge, onCreateEdge: this.onCreateEdge,
});
onEdgeMouseDown: this.onEdgeMouseDown,
renderNode: this.renderNode,
renderNodeText: this.renderNodeText,
renderEdge: this.renderEdge,
renderEdgeText: this.renderEdgeText,
afterRenderEdge: this.props.afterRenderEdge && this.afterRenderEdge,
}),
]);
} }
} }