feat(selection): draggable

This commit is contained in:
moklick
2019-07-25 13:49:02 +02:00
parent 71c357ddfc
commit 562eddfa58
7 changed files with 83 additions and 27 deletions
+66 -11
View File
@@ -1,10 +1,59 @@
import React, { useContext } from 'react';
import React, { useContext, useState } from 'react';
import ReactDraggable from 'react-draggable';
import { GraphContext } from '../GraphContext';
import { isNode } from '../graph-utils';
import { updateNodePos } from '../state/actions';
function getStartPositions(elements) {
return elements
.filter(isNode)
.reduce((res, node) => {
const startPosition = {
x: node.__rg.position.x || node.position.x,
y: node.__rg.position.y || node.position.x
};
res[node.data.id] = startPosition;
return res;
}, {});
}
export default () => {
const graphContext = useContext(GraphContext);
const { state } = graphContext;
const [offset, setOffset] = useState({ x: 0, y: 0 });
const [startPositions, setStartPositions] = useState({});
const { state, dispatch } = graphContext;
const [x, y, k] = state.transform;
const position = state.selectedNodesBbox;
const onStart = (evt) => {
const scaledClientX = {
x: evt.clientX * (1 / k),
y: evt.clientY * (1 / k)
};
const offsetX = scaledClientX.x - position.x - x;
const offsetY = scaledClientX.y - position.y - y;
const startPositions = getStartPositions(state.selectedElements);
setOffset({ x: offsetX, y: offsetY });
setStartPositions(startPositions);
};
const onDrag = (evt) => {
const scaledClientX = {
x: evt.clientX * (1 / k),
y: evt.clientY * (1 / k)
};
state.selectedElements.filter(isNode).forEach(node => {
dispatch(updateNodePos(node.data.id, {
x: startPositions[node.data.id].x + scaledClientX.x - position.x - offset.x - x ,
y: startPositions[node.data.id].y + scaledClientX.y - position.y - offset.y - y
}));
});
}
return (
<div
@@ -13,15 +62,21 @@ export default () => {
transform: `translate(${state.transform[0]}px,${state.transform[1]}px) scale(${state.transform[2]})`
}}
>
<div
className="react-graph__nodesselection-rect"
style={{
width: state.selectedNodesBbox.width,
height: state.selectedNodesBbox.height,
top: state.selectedNodesBbox.y,
left: state.selectedNodesBbox.x
}}
/>
<ReactDraggable
scale={k}
onStart={onStart}
onDrag={onDrag}
>
<div
className="react-graph__nodesselection-rect"
style={{
width: state.selectedNodesBbox.width,
height: state.selectedNodesBbox.height,
top: state.selectedNodesBbox.y,
left: state.selectedNodesBbox.x
}}
/>
</ReactDraggable>
</div>
);
};