Node
弃用 parentNode
属性!我们在版本 11.11.0 中将 parentNode
选项重命名为 parentId
。旧属性仍然受支持,但将在版本 12 中删除。
¥Deprecation of parentNode
property! We have renamed the parentNode
option to parentId
in version 11.11.0. The old property is still supported
but will be removed in version 12.
Node
类型代表 React Flow 需要了解的有关给定节点的所有内容。这些属性中的许多都可以由 React Flow 或你自己操作,但有些属性(例如 width
和 height
)应被视为只读。
¥The Node
type represents everything React Flow needs to know about a given node.
Many of these properties can be manipulated both by React Flow or by you, but
some such as width
and height
should be considered read-only.
export type Node<
NodeData extends Record<string, unknown> = Record<string, unknown>,
NodeType extends string = string,
> = {
id: string;
position: XYPosition;
data: NodeData;
type?: NodeType;
sourcePosition?: Position;
targetPosition?: Position;
hidden?: boolean;
selected?: boolean;
dragging?: boolean;
draggable?: boolean;
selectable?: boolean;
connectable?: boolean;
resizing?: boolean;
deletable?: boolean;
dragHandle?: string;
width?: number | null;
height?: number | null;
parentId?: string;
zIndex?: number;
extent?: 'parent' | CoordinateExtent;
expandParent?: boolean;
ariaLabel?: string;
focusable?: boolean;
style?: React.CSSProperties;
className?: string;
origin?: NodeOrigin;
handles?: NodeHandle[];
measured?: {
width?: number;
height?: number;
};
};
字段
¥Fields
Name | Type |
---|---|
# id | string |
# position | |
# data | T |
# type? | U |
# sourcePosition? | |
# targetPosition? | |
# hidden? | boolean Whether or not the node should be visible on the canvas. |
# selected? | boolean |
# dragging? | boolean Whether or not the node is currently being dragged. |
# draggable? | boolean Whether or not the node is able to be dragged. |
# selectable? | boolean |
# connectable? | boolean |
# resizing? | boolean |
# deletable? | boolean |
# dragHandle? | string |
# width? | number | null |
# height? | number | null |
# parentNode? | string |
# parentId? | string |
# zIndex? | number |
# extent? | "parent" | CoordinateExtent |
# expandParent? | boolean When true, the parent node will automatically expand if this
node is dragged to the edge of the parent node's bounds. |
# ariaLabel? | string |
# focusable? | boolean |
# style? | React.CSSProperties |
# className? | string |
# handles? | |
# origin? | |
# measured? | { width?: number, height?: number } |
默认节点类型
¥Default node types
你可以通过将 type
属性设置为以下值之一来创建 React Flow 的任何默认节点:
¥You can create any of React Flow’s default nodes by setting the type
property
to one of the following values:
-
"default"
-
"input"
-
"output"
-
"group"
如果你根本没有设置 type
属性,React Flow 将回退到具有输入和输出端口的 "default"
节点。
¥If you don’t set the type
property at all, React Flow will fallback to the
"default"
node with both an input and output port.
即使你将 nodeTypes
属性设置为其他内容,这些默认节点也可用,除非你直接覆盖这些键中的任何一个。
¥These default nodes are available even if you set the nodeTypes
prop to something else, unless you override any of these keys directly.
注释
¥Notes
-
你不应该尝试直接设置节点的
width
或height
。它由 React Flow 内部计算,并在视口中渲染节点时使用。要控制节点的大小,你应该使用style
或className
属性来应用 CSS 样式。¥You shouldn’t try to set the
width
orheight
of a node directly. It is calculated internally by React Flow and used when rendering the node in the viewport. To control a node’s size you should use thestyle
orclassName
props to apply CSS styles instead.