-
Notifications
You must be signed in to change notification settings - Fork 268
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
expose "onMoveNode" method (optional), added "canDragNode" method (optional), center svg icons in control buttons #280
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -61,6 +61,7 @@ export type IGraphViewProps = { | |
hoveredNode: INode | null, | ||
swapEdge: IEdge | ||
) => boolean, | ||
canDragNode?: (nodeId: string) => boolean, | ||
onBackgroundClick?: (x: number, y: number, event: any) => void, | ||
onCopySelected?: () => void, | ||
onCreateEdge?: (sourceNode: INode, targetNode: INode) => void, | ||
|
@@ -77,6 +78,7 @@ export type IGraphViewProps = { | |
onSwapEdge?: (sourceNode: INode, targetNode: INode, edge: IEdge) => void, | ||
onUndo?: () => void, | ||
onUpdateNode?: (node: INode) => void, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. onUpdateNode should already tell you that the node moved. It passes the new X,Y coordinates within the INode type. Is it possible to call onUpdateNode instead of creating a new There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think the problem with this is that onUpdateNode is only called when the move is finished, not while the move is in progress. That is also why one can not just return false from onUpdateNode and thereby prevent movement. |
||
onMoveNode?: (node: INode) => void, | ||
onArrowClicked?: (selectedEdge: IEdge) => void, | ||
renderBackground?: (gridSize?: number) => any, | ||
renderDefs?: () => any, | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -72,6 +72,7 @@ class GraphView extends React.Component<IGraphViewProps, IGraphViewState> { | |
canSwapEdge: () => true, | ||
canDeleteEdge: () => true, | ||
canDeleteNode: () => true, | ||
canDragNode: () => true, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Change to |
||
edgeArrowSize: 8, | ||
gridSpacing: 36, | ||
layoutEngineType: 'None', | ||
|
@@ -788,8 +789,7 @@ class GraphView extends React.Component<IGraphViewProps, IGraphViewState> { | |
} | ||
|
||
handleNodeMove = (position: IPoint, nodeId: string, shiftKey: boolean) => { | ||
const { canCreateEdge, readOnly } = this.props; | ||
const { draggingEdge } = this.state; | ||
const { canCreateEdge, readOnly, onMoveNode, canDragNode } = this.props; | ||
const nodeMapNode: INodeMapNode | null = this.getNodeById(nodeId); | ||
|
||
if (!nodeMapNode) { | ||
|
@@ -798,11 +798,15 @@ class GraphView extends React.Component<IGraphViewProps, IGraphViewState> { | |
|
||
const node = nodeMapNode.node; | ||
|
||
if (readOnly) { | ||
if (readOnly || !canDragNode(nodeId)) { | ||
return; | ||
} | ||
|
||
if (!shiftKey && !draggingEdge) { | ||
if (onMoveNode) { | ||
onMoveNode(node); | ||
} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This if statement needs to move within the if statement on line 809. |
||
|
||
if (!shiftKey && !this.state.draggingEdge) { | ||
// node moved | ||
node.x = position.x; | ||
node.y = position.y; | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -162,6 +162,10 @@ $background-color: #f9f9f9; | |
border-radius: 2px; | ||
cursor: pointer; | ||
margin: 0; | ||
|
||
> svg { | ||
vertical-align: sub; | ||
} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please rebase on master. This may be fixed. |
||
} | ||
} | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Change to
canMoveNode
orcanUpdateNode
?