refactor(hooks): create used3zoom hook

This commit is contained in:
moklick
2019-08-19 13:50:24 +02:00
parent 0bb555bf17
commit aac214ad5b
10 changed files with 41902 additions and 41893 deletions
+36307 -36304
View File
File diff suppressed because it is too large Load Diff
-8
View File
@@ -97,13 +97,6 @@ class App extends PureComponent {
}); });
} }
onChange(elements) {
if (!this.graphInstance) {
return false;
}
// console.log('graph changed', elements);
}
onFitView() { onFitView() {
this.graphInstance.fitView(); this.graphInstance.fitView();
} }
@@ -155,7 +148,6 @@ class App extends PureComponent {
onNodeDragStop={onNodeDragStop} onNodeDragStop={onNodeDragStop}
style={{ width: '100%', height: '100%' }} style={{ width: '100%', height: '100%' }}
onLoad={graphInstance => this.onLoad(graphInstance)} onLoad={graphInstance => this.onLoad(graphInstance)}
onChange={(elements) => this.onChange(elements)}
nodeTypes={{ nodeTypes={{
special: SpecialNode, special: SpecialNode,
text: InputNode text: InputNode
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -212,7 +212,7 @@ var parent = module.bundle.parent;
if ((!parent || !parent.isParcelRequire) && typeof WebSocket !== 'undefined') { if ((!parent || !parent.isParcelRequire) && typeof WebSocket !== 'undefined') {
var hostname = "" || location.hostname; var hostname = "" || location.hostname;
var protocol = location.protocol === 'https:' ? 'wss' : 'ws'; var protocol = location.protocol === 'https:' ? 'wss' : 'ws';
var ws = new WebSocket(protocol + '://' + hostname + ':' + "56024" + '/'); var ws = new WebSocket(protocol + '://' + hostname + ':' + "65263" + '/');
ws.onmessage = function (event) { ws.onmessage = function (event) {
checkedAssets = {}; checkedAssets = {};
+1 -1
View File
@@ -1,6 +1,6 @@
import { useEffect, useContext, memo } from 'react'; import { useEffect, useContext, memo } from 'react';
import { useKeyPress } from '../hooks'; import useKeyPress from '../hooks/useKeyPress';
import { setNodesSelection } from '../state/actions'; import { setNodesSelection } from '../state/actions';
import { GraphContext } from '../GraphContext'; import { GraphContext } from '../GraphContext';
import { isEdge, getConnectedEdges } from '../graph-utils'; import { isEdge, getConnectedEdges } from '../graph-utils';
+4 -46
View File
@@ -1,6 +1,4 @@
import React, { useEffect, useContext, useRef, memo } from 'react'; import React, { useEffect, useContext, useRef, memo } from 'react';
import * as d3Zoom from 'd3-zoom';
import { select, event } from 'd3-selection';
import ReactSizeMe from 'react-sizeme'; import ReactSizeMe from 'react-sizeme';
import { Provider } from '../ConnectionContext'; import { Provider } from '../ConnectionContext';
@@ -10,49 +8,16 @@ import EdgeRenderer from '../EdgeRenderer';
import UserSelection from '../UserSelection'; import UserSelection from '../UserSelection';
import NodesSelection from '../NodesSelection'; import NodesSelection from '../NodesSelection';
import { setNodesSelection } from '../state/actions'; import { setNodesSelection } from '../state/actions';
import { import { updateSize, fitView, zoomIn, zoomOut } from '../state/view-actions';
updateTransform, updateSize, initD3, fitView, import useKeyPress from '../hooks/useKeyPress';
zoomIn, zoomOut import useD3Zoom from '../hooks/useD3Zoom';
} from '../state/view-actions';
import { useKeyPress } from '../hooks';
const d3ZoomInstance = d3Zoom.zoom().scaleExtent([0.5, 2]);
const GraphView = memo((props) => { const GraphView = memo((props) => {
const zoomPane = useRef(null); const zoomPane = useRef(null);
const { state, dispatch } = useContext(GraphContext); const { state, dispatch } = useContext(GraphContext);
const shiftPressed = useKeyPress('Shift'); const shiftPressed = useKeyPress('Shift');
useEffect(() => { useD3Zoom(zoomPane, props.onMove, shiftPressed);
const selection = select(zoomPane.current).call(d3ZoomInstance);
dispatch(initD3({ zoom: d3ZoomInstance, selection }));
}, []);
useEffect(() => {
if (shiftPressed) {
d3ZoomInstance.on('zoom', null);
} else {
d3ZoomInstance.on('zoom', () => {
if (event.sourceEvent && event.sourceEvent.target !== zoomPane.current) {
return false;
}
dispatch(updateTransform(event.transform));
props.onMove();
});
if (state.d3Selection) {
// we need to restore the graph transform otherwise d3 zoom transform and graph transform are not synced
const graphTransform = d3Zoom.zoomIdentity
.translate(state.transform[0], state.transform[1])
.scale(state.transform[2]);
state.d3Selection.call(state.d3Zoom.transform, graphTransform);
}
}
}, [shiftPressed]);
useEffect( useEffect(
() => dispatch(updateSize(props.size)), () => dispatch(updateSize(props.size)),
@@ -71,13 +36,6 @@ const GraphView = memo((props) => {
} }
}, [state.d3Initialised]); }, [state.d3Initialised]);
useEffect(() => {
props.onChange({
nodes: state.nodes,
edges: state.edges,
});
});
return ( return (
<div className="react-graph__renderer"> <div className="react-graph__renderer">
<Provider onConnect={props.onConnect}> <Provider onConnect={props.onConnect}>
+3 -5
View File
@@ -1,4 +1,4 @@
import React, { useMemo } from 'react'; import React, { useMemo, memo } from 'react';
if (process.env.NODE_ENV !== 'production') { if (process.env.NODE_ENV !== 'production') {
const whyDidYouRender = require('@welldone-software/why-did-you-render'); const whyDidYouRender = require('@welldone-software/why-did-you-render');
@@ -26,8 +26,8 @@ const ReactGraph = (props) => {
const edgeTypes = useMemo(() => createEdgeTypes(props.edgeTypes), []); const edgeTypes = useMemo(() => createEdgeTypes(props.edgeTypes), []);
const { const {
style, onElementClick, elements, children, onLoad, style, onElementClick, elements, children,
onMove, onChange, onElementsRemove, onConnect, onLoad, onMove, onElementsRemove, onConnect,
onNodeDragStop, connectionLineType, connectionLineStyle onNodeDragStop, connectionLineType, connectionLineStyle
} = props; } = props;
@@ -37,7 +37,6 @@ const ReactGraph = (props) => {
<GraphView <GraphView
onLoad={onLoad} onLoad={onLoad}
onMove={onMove} onMove={onMove}
onChange={onChange}
onElementClick={onElementClick} onElementClick={onElementClick}
onNodeDragStop={onNodeDragStop} onNodeDragStop={onNodeDragStop}
nodeTypes={nodeTypes} nodeTypes={nodeTypes}
@@ -64,7 +63,6 @@ ReactGraph.defaultProps = {
onConnect: () => {}, onConnect: () => {},
onLoad: () => {}, onLoad: () => {},
onMove: () => {}, onMove: () => {},
onChange: () => {},
nodeTypes: { nodeTypes: {
input: InputNode, input: InputNode,
default: DefaultNode, default: DefaultNode,
+46
View File
@@ -0,0 +1,46 @@
import { useEffect, useContext } from 'react';
import * as d3Zoom from 'd3-zoom';
import { select, event } from 'd3-selection';
import { updateTransform, initD3 } from '../state/view-actions';
import { GraphContext } from '../GraphContext';
const d3ZoomInstance = d3Zoom.zoom().scaleExtent([0.5, 2]);
export default function useD3Zoom(zoomPane, onMove, shiftPressed) {
const { state, dispatch } = useContext(GraphContext);
useEffect(() => {
const selection = select(zoomPane.current).call(d3ZoomInstance);
dispatch(initD3({ zoom: d3ZoomInstance, selection }));
}, []);
useEffect(() => {
if (shiftPressed) {
d3ZoomInstance.on('zoom', null);
} else {
d3ZoomInstance.on('zoom', () => {
if (event.sourceEvent && event.sourceEvent.target !== zoomPane.current) {
return false;
}
dispatch(updateTransform(event.transform));
onMove();
});
if (state.d3Selection) {
// we need to restore the graph transform otherwise d3 zoom transform and graph transform are not synced
const graphTransform = d3Zoom.zoomIdentity
.translate(state.transform[0], state.transform[1])
.scale(state.transform[2]);
state.d3Selection.call(state.d3Zoom.transform, graphTransform);
}
}
return () => {
d3ZoomInstance.on('zoom', null);
};
}, [shiftPressed]);
}
+2 -2
View File
@@ -2,7 +2,7 @@ import { useState, useEffect } from 'react';
const isInput = target => ['INPUT', 'SELECT', 'TEXTAREA'].includes(target.nodeName); const isInput = target => ['INPUT', 'SELECT', 'TEXTAREA'].includes(target.nodeName);
export function useKeyPress(targetKey) { export default function useKeyPress(targetKey) {
const [keyPressed, setKeyPressed] = useState(false); const [keyPressed, setKeyPressed] = useState(false);
function downHandler({ key, target }) { function downHandler({ key, target }) {
@@ -27,4 +27,4 @@ export function useKeyPress(targetKey) {
}, []); }, []);
return keyPressed; return keyPressed;
} }