chore(docs): update node and edge doc page
This commit is contained in:
+128
-80
@@ -1,3 +1,74 @@
|
||||
<script setup>
|
||||
import { VueFlow } from '@vue-flow/core';
|
||||
import { Background } from '@vue-flow/background';
|
||||
import Check from '~icons/mdi/check';
|
||||
import Close from '~icons/mdi/close';
|
||||
import { ref } from 'vue';
|
||||
|
||||
const nodes = [
|
||||
{
|
||||
id: '1',
|
||||
type: 'input',
|
||||
label: 'Node 1',
|
||||
position: { x: 50, y: 25 },
|
||||
},
|
||||
{
|
||||
id: '2',
|
||||
label: 'Node 2',
|
||||
position: { x: 100, y: 125 },
|
||||
},
|
||||
];
|
||||
|
||||
const bezierEdge = ref([
|
||||
...nodes,
|
||||
{
|
||||
id: 'e1-2',
|
||||
source: '1',
|
||||
target: '2',
|
||||
}
|
||||
]);
|
||||
|
||||
const stepEdge = ref([
|
||||
...nodes,
|
||||
{
|
||||
id: 'e1-2',
|
||||
type: 'step',
|
||||
source: '1',
|
||||
target: '2',
|
||||
},
|
||||
]);
|
||||
|
||||
const smoothStepEdge = ref([
|
||||
...nodes,
|
||||
{
|
||||
id: 'e1-2',
|
||||
type: 'smoothstep',
|
||||
source: '1',
|
||||
target: '2',
|
||||
},
|
||||
]);
|
||||
|
||||
const straightEdge = ref([
|
||||
{
|
||||
id: '1',
|
||||
type: 'input',
|
||||
label: 'Node 1',
|
||||
position: { x: 50, y: 25 },
|
||||
},
|
||||
{
|
||||
id: '2',
|
||||
label: 'Node 2',
|
||||
position: { x: 50, y: 125 },
|
||||
},
|
||||
{
|
||||
id: 'e1-2',
|
||||
type: 'straight',
|
||||
source: '1',
|
||||
target: '2',
|
||||
},
|
||||
]);
|
||||
</script>
|
||||
|
||||
# Edges
|
||||
|
||||
Edges are what connects your nodes into a map.
|
||||
@@ -5,9 +76,8 @@ Edges are what connects your nodes into a map.
|
||||
They cannot exist on their own and need nodes to which they are connected.
|
||||
|
||||
Each edge <span class="font-bold text-blue-500">requires a unique id, a source node and a target node id.</span>
|
||||
Anything else is optional.
|
||||
|
||||
You can check the full options for an edge element in the TypeDocs [here](/typedocs/types/Edge).
|
||||
You can view the full options-list for an edge [here](/typedocs/types/Edge).
|
||||
|
||||
## Usage
|
||||
|
||||
@@ -55,9 +125,8 @@ export default defineComponent({
|
||||
```
|
||||
|
||||
For more advanced graphs that require more state access you will want to use the useVueFlow composable.
|
||||
[useVueFlow](/typedocs/functions/useVueFlow) will provide
|
||||
you with an [`addEdges`](/typedocs/interfaces/Actions#addedges/) utility function, which you can use to add edges
|
||||
directly to the state.
|
||||
[useVueFlow](/typedocs/functions/useVueFlow) will provide the [`addEdges`](/typedocs/interfaces/Actions#addedges/) action,
|
||||
which you can use to add edges directly to the state.
|
||||
|
||||
```vue
|
||||
<script setup>
|
||||
@@ -98,10 +167,6 @@ onMounted(() => {
|
||||
</template>
|
||||
```
|
||||
|
||||
You can also apply changes (like removing elements safely) using
|
||||
the [`applyEdgeChanges`](/typedocs/interfaces/Actions#applyedgechanges/) utility function, which expects an array
|
||||
of [changes](/typedocs/types/EdgeChange) to be applied to the currently stored edges.
|
||||
|
||||
## [Default Edge-Types](/typedocs/interfaces/DefaultEdgeTypes)
|
||||
|
||||
Vue Flow comes with built-in edges that you can use right out of the box.
|
||||
@@ -109,73 +174,54 @@ These edge types include `default` (bezier), `step`, `smoothstep` and `straight`
|
||||
|
||||
### Default Edge (Bezier)
|
||||
|
||||
A bezier edge has a curved path.
|
||||
The default edge is a bezier curve that connects two nodes.
|
||||
|
||||
```js
|
||||
const edges = [
|
||||
{
|
||||
id: 'e1-2',
|
||||
source: '1',
|
||||
target: '2',
|
||||
}
|
||||
]
|
||||
```
|
||||
<div class="mt-4 bg-[var(--vp-code-block-bg)] rounded h-50">
|
||||
<VueFlow v-model="bezierEdge">
|
||||
<Background />
|
||||
</VueFlow>
|
||||
</div>
|
||||
|
||||
### Step Edge
|
||||
|
||||
A step edge has a straight path with a step towards the target.
|
||||
|
||||
```js{4}
|
||||
const edges = [
|
||||
{
|
||||
id: 'e1-2',
|
||||
type: 'step',
|
||||
source: '1',
|
||||
target: '2',
|
||||
}
|
||||
]
|
||||
```
|
||||
<div class="mt-4 bg-[var(--vp-code-block-bg)] rounded h-50">
|
||||
<VueFlow v-model="stepEdge">
|
||||
<Background />
|
||||
</VueFlow>
|
||||
</div>
|
||||
|
||||
### Smoothstep Edge
|
||||
|
||||
The same as the step edge though with a border radius on the step (rounded step).
|
||||
|
||||
```js{4}
|
||||
const edges = [
|
||||
{
|
||||
id: 'e1-2',
|
||||
type: 'smoothstep',
|
||||
source: '1',
|
||||
target: '2',
|
||||
}
|
||||
]
|
||||
```
|
||||
<div class="mt-4 bg-[var(--vp-code-block-bg)] rounded h-50">
|
||||
<VueFlow v-model="smoothStepEdge">
|
||||
<Background />
|
||||
</VueFlow>
|
||||
</div>
|
||||
|
||||
### Straight Edge
|
||||
|
||||
A simple straight path.
|
||||
|
||||
```js{4}
|
||||
const edges = [
|
||||
{
|
||||
id: 'e1-2',
|
||||
type: 'straight',
|
||||
source: '1',
|
||||
target: '2',
|
||||
}
|
||||
]
|
||||
```
|
||||
<div class="mt-4 bg-[var(--vp-code-block-bg)] rounded h-50">
|
||||
<VueFlow v-model="straightEdge">
|
||||
<Background />
|
||||
</VueFlow>
|
||||
</div>
|
||||
|
||||
## Custom Edges
|
||||
|
||||
In addition to the default edge types from the previous chapter, you can define any amount of custom edge-types.
|
||||
Edge-types are inferred from your edge's definition.
|
||||
|
||||
```js{5,11}
|
||||
```js{4}
|
||||
const edges = [
|
||||
{
|
||||
id: 'e1-2',
|
||||
type: 'special',
|
||||
type: 'custom',
|
||||
source: '1',
|
||||
target: '2',
|
||||
},
|
||||
@@ -195,6 +241,8 @@ The easiest way to define custom edges is, by passing them as template slots.
|
||||
Your custom edge-types are dynamically resolved to slot-names, meaning an edge with the type `custom`
|
||||
will expect a slot to have the name `edge-custom`.
|
||||
|
||||
You can choose any name you want for your edge-type, and it will be resolved to the corresponding slot (i.e. `my-edge-type` -> `#edge-my-edge-type`)
|
||||
|
||||
```vue{18,26}
|
||||
<script setup>
|
||||
import { VueFlow } from '@vue-flow/core'
|
||||
@@ -277,7 +325,7 @@ const elements = ref([
|
||||
You can also set a template per edge, which will overwrite the edge-type component but will retain
|
||||
the type otherwise.
|
||||
|
||||
```vue
|
||||
```vue{30}
|
||||
<script setup>
|
||||
import { markRaw } from 'vue'
|
||||
import CustomEdge from './CustomEdge.vue'
|
||||
@@ -293,7 +341,7 @@ const elements = ref([
|
||||
label: 'Node 2',
|
||||
position: { x: 0, y: 150 },
|
||||
},
|
||||
{
|
||||
{
|
||||
id: '3',
|
||||
label: 'Node 3',
|
||||
position: { x: 0, y: 300 },
|
||||
@@ -324,33 +372,33 @@ Your custom edges are wrapped so that the basic functions like selecting work.
|
||||
But you might want to extend on that functionality or implement your own business logic inside of edges, therefore
|
||||
your edges receive the following props:
|
||||
|
||||
| Name | Definition | Type | Optional |
|
||||
|---------------------|-------------------------------|-----------------------------------------------|----------|
|
||||
| id | Edge id | string | false |
|
||||
| source | The source node id | string | false |
|
||||
| target | The target node id | string | false |
|
||||
| sourceNode | The source node | GraphNode | false |
|
||||
| targetNode | The target node | GraphNode | false |
|
||||
| sourceX | X position of source handle | number | false |
|
||||
| sourceY | Y position of source handle | number | false |
|
||||
| targetX | X position of target handle | number | false |
|
||||
| targetY | Y position of target handle | number | false |
|
||||
| type | Edge type | string | true |
|
||||
| sourceHandleId | Source handle id | string | true |
|
||||
| targetHandleId | Target handle id | string | true |
|
||||
| data | Custom data object | Any object | true |
|
||||
| events | Edge events and custom events | [EdgeEventsOn](/typedocs/types/EdgeEventsOn) | true |
|
||||
| label | Edge label | string, Component | true |
|
||||
| labelStyle | Additional label styles | CSSProperties | true |
|
||||
| labelShowBg | Enable/Disable label bg | boolean | true |
|
||||
| labelBgPadding | Edge label bg padding | number | true |
|
||||
| labelBgBorderRadius | Edge label bg border radius | number | true |
|
||||
| selected | Is edge selected | boolean | true |
|
||||
| animated | Is edge animated | boolean | true |
|
||||
| updatable | Is edge updatable | [EdgeUpdatable](/typedocs/types/EdgeUpdatable)| true |
|
||||
| markerEnd | Edge marker id | string | true |
|
||||
| markerStart | Edge marker id | string | true |
|
||||
| curvature | Edge path curvature | number | true |
|
||||
| Name | Definition | Type | Optional |
|
||||
|---------------------|-------------------------------|------------------------------------------------|--------------------------------------------|
|
||||
| id | Edge id | string | <Close class="text-red-500" /> |
|
||||
| source | The source node id | string | <Close class="text-red-500" /> |
|
||||
| target | The target node id | string | <Close class="text-red-500" /> |
|
||||
| sourceNode | The source node | GraphNode | <Close class="text-red-500" /> |
|
||||
| targetNode | The target node | GraphNode | <Close class="text-red-500" /> |
|
||||
| sourceX | X position of source handle | number | <Close class="text-red-500" /> |
|
||||
| sourceY | Y position of source handle | number | <Close class="text-red-500" /> |
|
||||
| targetX | X position of target handle | number | <Close class="text-red-500" /> |
|
||||
| targetY | Y position of target handle | number | <Close class="text-red-500" /> |
|
||||
| type | Edge type | string | <Check class="text-[var(--vp-c-brand)]" /> |
|
||||
| sourceHandleId | Source handle id | string | <Check class="text-[var(--vp-c-brand)]" /> |
|
||||
| targetHandleId | Target handle id | string | <Check class="text-[var(--vp-c-brand)]" /> |
|
||||
| data | Custom data object | Any object | <Check class="text-[var(--vp-c-brand)]" /> |
|
||||
| events | Edge events and custom events | [EdgeEventsOn](/typedocs/types/EdgeEventsOn) | <Check class="text-[var(--vp-c-brand)]" /> |
|
||||
| label | Edge label | string, Component | <Check class="text-[var(--vp-c-brand)]" /> |
|
||||
| labelStyle | Additional label styles | CSSProperties | <Check class="text-[var(--vp-c-brand)]" /> |
|
||||
| labelShowBg | Enable/Disable label bg | boolean | <Check class="text-[var(--vp-c-brand)]" /> |
|
||||
| labelBgPadding | Edge label bg padding | number | <Check class="text-[var(--vp-c-brand)]" /> |
|
||||
| labelBgBorderRadius | Edge label bg border radius | number | <Check class="text-[var(--vp-c-brand)]" /> |
|
||||
| selected | Is edge selected | boolean | <Check class="text-[var(--vp-c-brand)]" /> |
|
||||
| animated | Is edge animated | boolean | <Check class="text-[var(--vp-c-brand)]" /> |
|
||||
| updatable | Is edge updatable | [EdgeUpdatable](/typedocs/types/EdgeUpdatable) | <Check class="text-[var(--vp-c-brand)]" /> |
|
||||
| markerEnd | Edge marker id | string | <Check class="text-[var(--vp-c-brand)]" /> |
|
||||
| markerStart | Edge marker id | string | <Check class="text-[var(--vp-c-brand)]" /> |
|
||||
| curvature | Edge path curvature | number | <Check class="text-[var(--vp-c-brand)]" /> |
|
||||
|
||||
### (Custom) Edge Events
|
||||
|
||||
|
||||
+88
-69
@@ -1,3 +1,37 @@
|
||||
<script setup>
|
||||
import { VueFlow } from '@vue-flow/core';
|
||||
import { Background } from '@vue-flow/background';
|
||||
import Check from '~icons/mdi/check';
|
||||
import Close from '~icons/mdi/close';
|
||||
import { ref } from 'vue';
|
||||
|
||||
const defaultNode = ref([
|
||||
{
|
||||
id: '1',
|
||||
label: 'Default Node',
|
||||
position: { x: 50, y: 75 },
|
||||
}
|
||||
]);
|
||||
|
||||
const inputNode = ref([
|
||||
{
|
||||
id: '1',
|
||||
type: 'input',
|
||||
label: 'Input Node',
|
||||
position: { x: 50, y: 75 },
|
||||
}
|
||||
]);
|
||||
|
||||
const outputNode = ref([
|
||||
{
|
||||
id: '1',
|
||||
type: 'output',
|
||||
label: 'Output Node',
|
||||
position: { x: 50, y: 75 },
|
||||
}
|
||||
]);
|
||||
</script>
|
||||
|
||||
# Nodes
|
||||
|
||||
Nodes are the building blocks of your graph. They represent any sort of data you want to present in your graph.
|
||||
@@ -5,10 +39,9 @@ Nodes are the building blocks of your graph. They represent any sort of data you
|
||||
They can exist on their own but can be connected to each other with edges to create a map.
|
||||
|
||||
Each node <span class="font-bold text-blue-500">requires a unique id and
|
||||
a [xy-position](/typedocs/interfaces/XYPosition).</span>
|
||||
Anything else is optional.
|
||||
an [xy-position](/typedocs/interfaces/XYPosition).</span>
|
||||
|
||||
You can check the full options for a node element [here](/typedocs/interfaces/Node).
|
||||
You can view the full options-list for a node [here](/typedocs/interfaces/Node).
|
||||
|
||||
## Usage
|
||||
|
||||
@@ -43,6 +76,7 @@ export default defineComponent({
|
||||
}
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div style="height: 300px">
|
||||
<VueFlow v-model="elements" />
|
||||
@@ -51,9 +85,10 @@ export default defineComponent({
|
||||
```
|
||||
|
||||
For more advanced graphs that require more state access you will want to use the useVueFlow composable.
|
||||
[useVueFlow](/typedocs/functions/useVueFlow) will provide
|
||||
you with an [`addNodes`](/typedocs/interfaces/Actions#addnodes) utility function, which you can use to add nodes
|
||||
directly to the state.
|
||||
[useVueFlow](/typedocs/functions/useVueFlow) will provide the [`addNodes`](/typedocs/interfaces/Actions#addnodes) action,
|
||||
which you can use to add nodes directly to the state.
|
||||
|
||||
This action can be even be used outside the component that is rendering the graph, like a Sidebar or a Toolbar.
|
||||
|
||||
```vue
|
||||
<script setup>
|
||||
@@ -81,42 +116,7 @@ onMounted(() => {
|
||||
])
|
||||
})
|
||||
</script>
|
||||
<template>
|
||||
<div style="height: 300px">
|
||||
<VueFlow />
|
||||
</div>
|
||||
</template>
|
||||
```
|
||||
|
||||
You can also apply changes using the [`applyNodeChanges`](/typedocs/interfaces/Actions#applynodechanges/) utility
|
||||
function,
|
||||
which expects an array of [changes](/typedocs/types/NodeChange) to be applied to the currently stored nodes.
|
||||
|
||||
```vue{11,17-22}
|
||||
<script setup>
|
||||
import { VueFlow, useVueFlow } from '@vue-flow/core'
|
||||
|
||||
const initialNodes = ref([
|
||||
{
|
||||
id: '1',
|
||||
position: { x: 50, y: 50 },
|
||||
label: 'Node 1',
|
||||
}
|
||||
])
|
||||
const { applyNodeChanges } = useVueFlow({
|
||||
nodes: initialNodes,
|
||||
})
|
||||
|
||||
onMounted(() => {
|
||||
// Remove an element after mount
|
||||
applyNodeChanges([
|
||||
{
|
||||
id: '1',
|
||||
type: 'remove',
|
||||
}
|
||||
])
|
||||
})
|
||||
</script>
|
||||
<template>
|
||||
<div style="height: 300px">
|
||||
<VueFlow />
|
||||
@@ -131,7 +131,11 @@ These node types include `default`, `input` and `output`.
|
||||
|
||||
### Default Node
|
||||
|
||||

|
||||
<div class="mt-4 bg-[var(--vp-code-block-bg)] rounded h-50">
|
||||
<VueFlow v-model="defaultNode">
|
||||
<Background />
|
||||
</VueFlow>
|
||||
</div>
|
||||
|
||||
A default node comes with two handles.
|
||||
It represents a branching point in your map.
|
||||
@@ -151,14 +155,23 @@ const nodes = [
|
||||
|
||||
### Input Node
|
||||
|
||||

|
||||
<div class="mt-4 bg-[var(--vp-code-block-bg)] rounded h-50">
|
||||
<VueFlow v-model="inputNode">
|
||||
<Background />
|
||||
</VueFlow>
|
||||
</div>
|
||||
|
||||
|
||||
An input node has a single handle, located at the bottom by default.
|
||||
It represents a starting point of your map.
|
||||
|
||||
### Output Node
|
||||
|
||||

|
||||
<div class="mt-4 bg-[var(--vp-code-block-bg)] rounded h-50">
|
||||
<VueFlow v-model="outputNode">
|
||||
<Background />
|
||||
</VueFlow>
|
||||
</div>
|
||||
|
||||
An output node has a single handle, located at the top by default.
|
||||
It represents an ending point of your map.
|
||||
@@ -311,25 +324,25 @@ Your custom nodes are wrapped so that the basic functions like dragging or selec
|
||||
But you might want to extend on that functionality or implement your own business logic inside of nodes, therefore
|
||||
your nodes receive the following props:
|
||||
|
||||
| Name | Definition | Type | Optional |
|
||||
|------------------|--------------------------------------------------|------------------------------------------------------------|----------|
|
||||
| id | Node id | string | false |
|
||||
| type | Node type | string | false |
|
||||
| selected | Is node selected | boolean | false |
|
||||
| dragging | Is node dragging | boolean | false |
|
||||
| connectable | Is node connectable | boolean | false |
|
||||
| position | Relative position of a node | [XYPosition](/typedocs/interfaces/XYPosition) | false |
|
||||
| zIndex | Node z-index | number | false |
|
||||
| dimensions | Node size | [Dimensions](/typedocs/interfaces/Dimensions) | false |
|
||||
| data | Custom data object | Any object | true |
|
||||
| events | Node events and custom events | [NodeEventsOn](/typedocs/types/NodeEventsOn) | true |
|
||||
| label | Node label | string, Component | true |
|
||||
| isValidTargetPos | Called when target handle is used for connection | [ValidConnectionFunc](/typedocs/types/ValidConnectionFunc) | true |
|
||||
| isValidSourcePos | Called when source handle is used for connection | [ValidConnectionFunc](/typedocs/types/ValidConnectionFunc) | true |
|
||||
| parentNode | Parent node id | string | true |
|
||||
| targetPosition | Target handle position | [Position](/typedocs/enums/Position) | true |
|
||||
| sourcePosition | Source handle position | [Position](/typedocs/enums/Position) | true |
|
||||
| dragHandle | Node drag handle class | string | true |
|
||||
| Name | Definition | Type | Optional |
|
||||
|------------------|--------------------------------------------------|------------------------------------------------------------|--------------------------------------------|
|
||||
| id | Node id | string | <Close class="text-red-500" /> |
|
||||
| type | Node type | string | <Close class="text-red-500" /> |
|
||||
| selected | Is node selected | boolean | <Close class="text-red-500" /> |
|
||||
| dragging | Is node dragging | boolean | <Close class="text-red-500" /> |
|
||||
| connectable | Is node connectable | boolean | <Close class="text-red-500" /> |
|
||||
| position | Relative position of a node | [XYPosition](/typedocs/interfaces/XYPosition) | <Close class="text-red-500" /> |
|
||||
| zIndex | Node z-index | number | <Close class="text-red-500" /> |
|
||||
| dimensions | Node size | [Dimensions](/typedocs/interfaces/Dimensions) | <Close class="text-red-500" /> |
|
||||
| data | Custom data object | Any object | <Check class="text-[var(--vp-c-brand)]" /> |
|
||||
| events | Node events and custom events | [NodeEventsOn](/typedocs/types/NodeEventsOn) | <Check class="text-[var(--vp-c-brand)]" /> |
|
||||
| label | Node label | string, Component | <Check class="text-[var(--vp-c-brand)]" /> |
|
||||
| isValidTargetPos | Called when target handle is used for connection | [ValidConnectionFunc](/typedocs/types/ValidConnectionFunc) | <Check class="text-[var(--vp-c-brand)]" /> |
|
||||
| isValidSourcePos | Called when source handle is used for connection | [ValidConnectionFunc](/typedocs/types/ValidConnectionFunc) | <Check class="text-[var(--vp-c-brand)]" /> |
|
||||
| parentNode | Parent node id | string | <Check class="text-[var(--vp-c-brand)]" /> |
|
||||
| targetPosition | Target handle position | [Position](/typedocs/enums/Position) | <Check class="text-[var(--vp-c-brand)]" /> |
|
||||
| sourcePosition | Source handle position | [Position](/typedocs/enums/Position) | <Check class="text-[var(--vp-c-brand)]" /> |
|
||||
| dragHandle | Node drag handle class | string | <Check class="text-[var(--vp-c-brand)]" /> |
|
||||
|
||||
### (Custom) Node Events
|
||||
|
||||
@@ -339,7 +352,7 @@ you can also pass in event handlers in your initial node definition, or you can
|
||||
the `events` prop passed
|
||||
to your node components.
|
||||
|
||||
```vue{9-13}
|
||||
```vue{10-17}
|
||||
<script setup>
|
||||
import { VueFlow } from '@vue-flow/core'
|
||||
|
||||
@@ -416,12 +429,18 @@ When you create a new node type you also need to implement some styling. Your cu
|
||||
}
|
||||
```
|
||||
|
||||
## Allow scrolling inside a node
|
||||
## Scrolling inside a node
|
||||
|
||||
You can use the `noWheelClassName` prop to define a class which will prevent zoom-on-scroll or pan-on-scroll behavior on
|
||||
that element.
|
||||
By default, the `noWheelClassName` is `.nowheel`.
|
||||
By adding this class you can also enable scrolling inside a node.
|
||||
You can use the `noWheelClassName` prop to define a class name which will prevent zoom-on-scroll or pan-on-scroll behavior on
|
||||
that node.
|
||||
By default, the `noWheelClassName` is `nowheel`.
|
||||
By adding this class you can enable scrolling inside a node without triggering zoom-pan behavior.
|
||||
|
||||
## Dragging inside a node
|
||||
|
||||
You can use the `noDragClassName` prop to define a class name which will not trigger dragging behavior on
|
||||
that node.
|
||||
By default, the `noDragClassName` is `nodrag`.
|
||||
|
||||
## Dynamic handle positions / Adding handles dynamically
|
||||
|
||||
|
||||
Reference in New Issue
Block a user