148 lines
3.2 KiB
Svelte
148 lines
3.2 KiB
Svelte
<script lang="ts">
|
|
import SvelteFlow, {
|
|
SvelteFlowProvider,
|
|
Controls,
|
|
Background,
|
|
BackgroundVariant,
|
|
Minimap,
|
|
Panel,
|
|
createNodes,
|
|
createEdges,
|
|
type NodeTypes,
|
|
SelectionMode
|
|
} from '../../lib/index';
|
|
import { CustomNode } from '../../example-components/CustomNode';
|
|
|
|
const nodeTypes: NodeTypes = {
|
|
custom: CustomNode
|
|
};
|
|
|
|
const nodes = createNodes([
|
|
{
|
|
id: '1',
|
|
type: 'input',
|
|
data: { label: 'Input Node' },
|
|
position: { x: 150, y: 5 }
|
|
},
|
|
{
|
|
id: '2',
|
|
type: 'default',
|
|
data: { label: 'Node' },
|
|
position: { x: 0, y: 150 }
|
|
},
|
|
{
|
|
id: 'A',
|
|
type: 'default',
|
|
data: { label: 'Styled with class' },
|
|
class: 'custom-style',
|
|
position: { x: 150, y: 150 },
|
|
},
|
|
{
|
|
id: 'D',
|
|
type: 'default',
|
|
data: { label: 'Not draggable' },
|
|
position: { x: 150, y: 200 },
|
|
draggable: false
|
|
},
|
|
{
|
|
id: '3',
|
|
type: 'output',
|
|
data: { label: 'Output Node' },
|
|
position: { x: 300, y: 150 }
|
|
},
|
|
{
|
|
id: 'B',
|
|
type: 'default',
|
|
data: { label: 'Styled with style' },
|
|
style: 'border: 2px solid #ff5050;',
|
|
position: { x: 450, y: 150 }
|
|
},
|
|
{
|
|
id: '4',
|
|
type: 'custom',
|
|
data: { label: 'Custom Node' },
|
|
position: { x: 150, y: 300 }
|
|
}
|
|
]);
|
|
|
|
const edges = createEdges([
|
|
{
|
|
id: '1-2',
|
|
type: 'default',
|
|
source: '1',
|
|
target: '2',
|
|
label: 'Edge Text'
|
|
},
|
|
{
|
|
id: '1-3',
|
|
type: 'smoothstep',
|
|
source: '1',
|
|
target: '3'
|
|
},
|
|
{
|
|
id: '2-4',
|
|
type: 'default',
|
|
source: '2',
|
|
target: '4',
|
|
}
|
|
], { animated: true });
|
|
|
|
function updateNode() {
|
|
nodes.update(nds => nds.map(n => {
|
|
if (n.id === '1') {
|
|
return {
|
|
...n,
|
|
position: { x: n.position.x + 20, y: n.position.y }
|
|
}
|
|
}
|
|
|
|
return n;
|
|
}));
|
|
}
|
|
|
|
$: {
|
|
console.log('nodes changed', $nodes)
|
|
}
|
|
</script>
|
|
|
|
<SvelteFlowProvider
|
|
{nodes}
|
|
{edges}
|
|
>
|
|
<SvelteFlow
|
|
{nodeTypes}
|
|
fitView
|
|
minZoom={0.1}
|
|
maxZoom={2.5}
|
|
selectionMode={SelectionMode.Full}
|
|
initialViewport={{ x: 100, y: 100, zoom: 2 }}
|
|
on:node:click={(event) => console.log('on node click', event)}
|
|
on:node:mouseenter={(event) => console.log('on node enter', event)}
|
|
on:node:mouseleave={(event) => console.log('on node leave', event)}
|
|
on:edge:click={(event) => console.log('edge click', event)}
|
|
on:connect:start={(event) => console.log('on connect start', event)}
|
|
on:connect={(event) => console.log('on connect', event)}
|
|
on:connect:end={(event) => console.log('on connect end', event)}
|
|
on:pane:click={(event) => console.log('on pane click', event)}
|
|
on:pane:contextmenu={(event) => { event.preventDefault(); console.log('on pane contextmenu', event); }}
|
|
>
|
|
<Controls />
|
|
<Background variant={BackgroundVariant.Dots} />
|
|
<Minimap />
|
|
<Panel position="top-right">
|
|
<button on:click={updateNode}>update node pos</button>
|
|
</Panel>
|
|
</SvelteFlow>
|
|
</SvelteFlowProvider>
|
|
|
|
<style>
|
|
:root {
|
|
--node-width: 50;
|
|
}
|
|
|
|
:global(.svelte-flow .custom-style) {
|
|
background: #ff5050;
|
|
color: white;
|
|
}
|
|
</style>
|