Skip to Content

NodeChange

GitHub 上的源代码

¥Source on GitHub

onNodesChange 回调采用 NodeChange 对象数组,你应使用这些对象来更新流的状态。NodeChange 类型是六种不同对象类型的联合,表示节点在流中可以改变的各种方式。

¥The onNodesChange callback takes an array of NodeChange objects that you should use to update your flow’s state. The NodeChange type is a union of six different object types that represent that various ways an node can change in a flow.

export type NodeChange = | NodeDimensionChange | NodePositionChange | NodeSelectionChange | NodeRemoveChange | NodeAddChange | NodeReplaceChange;

变体类型

¥Variant types

NodeDimensionChange

#id
string
#type
"dimensions"
#dimensions?
Dimensions
#updateStyle?
boolean
#resizing?
boolean

NodePositionChange

#id
string
#type
"position"
#position?
#positionAbsolute?
#dragging?
boolean

NodeSelectionChange

#id
string
#type
"select"
#selected
boolean

NodeRemoveChange

#id
string
#type
"remove"

NodeAddChange

#item
Node<T>
#type
"add"

NodeReplaceChange

#id
string
#item
Node<NodeType>
#type
"replace"