feat(svelte) added isNodeIntersecting and getIntersectingNodes to svelte-flow

This commit is contained in:
Peter
2023-10-02 12:49:38 +02:00
parent ae33cba887
commit 3091262065
6 changed files with 192 additions and 2 deletions
@@ -15,7 +15,8 @@
'two-way-viewport',
'usesvelteflow',
'useupdatenodeinternals',
'validation'
'validation',
'intersections'
];
const onChange = (event: Event) => {
@@ -0,0 +1,8 @@
<script lang="ts">
import { SvelteFlowProvider } from '@xyflow/svelte';
import Flow from './Flow.svelte';
</script>
<SvelteFlowProvider>
<Flow />
</SvelteFlowProvider>
@@ -0,0 +1,29 @@
// Template for ALL endpoints serving the code snippets
// No need to edit these inside /src/routes/**
// Will be overwritten by "pnpm run create:endpoints"
import { json } from '@sveltejs/kit';
export function POST() {
const files = import.meta.glob(['./*.js', './*.ts', './*.svelte', './*css', '!**/+server.ts'], {
as: 'raw',
eager: true
});
// Loose ./ for each filename
// +page.svelte becomes App.svelte for correct display in Sandpack
const filesClean: { [key: string]: string } = Object.entries(files).reduce(
(filesCleanAcc: { [key: string]: string }, [filename, file]) => {
if (filename === './+page.svelte') {
filesCleanAcc['App.svelte'] = file;
} else {
filesCleanAcc[filename.replace('./', '')] = file;
}
return filesCleanAcc;
},
{}
);
return json(filesClean);
}
@@ -0,0 +1,60 @@
<script lang="ts">
import { SvelteFlow, Background, Controls, useSvelteFlow } from '@xyflow/svelte';
import type { Edge, Node } from '@xyflow/svelte';
import { writable } from 'svelte/store';
import '@xyflow/svelte/dist/style.css';
import { initialNodes, initialEdges } from './nodes-and-edges';
const nodes = writable<Node[]>(initialNodes);
const edges = writable<Edge[]>(initialEdges);
const { getIntersectingNodes } = useSvelteFlow();
function onNodeDrag({ detail: { node } }) {
const intersections = getIntersectingNodes(node).map((n) => n.id);
$nodes.forEach((n) => {
n.class = intersections.includes(n.id) ? 'highlight' : '';
});
$nodes = $nodes;
}
</script>
<div style="height:100vh;">
<SvelteFlow {nodes} {edges} fitView class="intersection-flow" on:nodedrag={onNodeDrag}>
<Background />
<Controls />
</SvelteFlow>
</div>
<style>
:global(.svelte-flow__node.highlight) {
background-color: #ff0072 !important;
color: white;
}
:global(.intersection-flow .svelte-flow__node) {
display: flex;
justify-content: center;
align-items: center;
font-weight: 700;
border-radius: 1px;
border-width: 2px;
box-shadow: 6px 6px 0 1px rgba(0, 0, 0, 0.7);
}
:global(
.intersection-flow .svelte-flow__node.selected,
.intersection-flow .svelte-flow__node:hover,
.intersection-flow .svelte-flow__node:focus
) {
box-shadow: 6px 6px 0 1px rgba(0, 0, 0, 0.7);
background-color: #eee;
}
:global(.intersection-flow .svelte-flow__handle) {
display: none;
}
</style>
@@ -0,0 +1,28 @@
import type { Node, Edge } from '@xyflow/svelte';
export const initialNodes: Node[] = [
{
id: '1',
data: { label: 'Node 1' },
position: { x: 0, y: 0 },
style: 'width: 200px; height: 100px;'
},
{
id: '2',
data: { label: 'Node 2' },
position: { x: 0, y: 150 }
},
{
id: '3',
data: { label: 'Node 3' },
position: { x: 250, y: 0 }
},
{
id: '4',
data: { label: 'Node' },
position: { x: 350, y: 150 },
style: 'width: 50px; height: 50px;'
}
];
export const initialEdges: Edge[] = [];