Spaces:
Running
Running
File size: 838 Bytes
c1a1d02 54e01be af53b62 c1a1d02 b7a4f8b c1a1d02 54e01be dfaae61 c1a1d02 3d534f4 c1a1d02 b7a4f8b c1a1d02 b5a8a95 c1a1d02 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
<script lang="ts">
import { getContext } from 'svelte';
import { type NodeProps, useSvelteFlow } from '@xyflow/svelte';
import LynxKiteNode from './LynxKiteNode.svelte';
import NodeParameter from './NodeParameter.svelte';
type $$Props = NodeProps;
export let id: $$Props['id'];
export let data: $$Props['data'];
const { updateNodeData } = useSvelteFlow();
$: meta = getContext('LynxKiteFlow').getMeta(data.title);
$: metaParams = meta && Object.fromEntries(meta.data.params.map((p) => [p.name, p]));
</script>
<LynxKiteNode {...$$props}>
{#each Object.entries(data.params) as [name, value]}
<NodeParameter
{name}
{value}
meta={metaParams?.[name]}
onChange={(newValue) => updateNodeData(id, { params: { ...data.params, [name]: newValue } })}
/>
{/each}
<slot />
</LynxKiteNode>
|