{#if nodeListLocation} (searchTerm = detail)} bind:this={nodeSearchInput} />
{#each nodeCategories as nodeCategory}
{nodeCategory[0]} {#each nodeCategory[1].nodes as nodeType} createNode(nodeType.name)} /> {/each}
{:else}
No search results
{/each}
{/if}
{#each linkPaths as { pathString, dataType, thick }} {/each}
{#each $nodeGraph.nodes.flatMap((node, nodeIndex) => (node.displayName === "Layer" ? [{ node, nodeIndex }] : [])) as { node, nodeIndex } (nodeIndex)} {@const clipPathId = `${Math.random()}`.substring(2)} {@const stackDatainput = node.exposedInputs[0]}
{node.primaryInput} data
{#if $nodeGraph.thumbnails.has(node.id)} {@html $nodeGraph.thumbnails.get(node.id)} {/if} {#if node.primaryOutput} {node.primaryOutput.dataType} data {/if} {stackDatainput.dataType} data
{node.displayName}
{/each} {#each $nodeGraph.nodes.flatMap((node, nodeIndex) => (node.displayName !== "Layer" ? [{ node, nodeIndex }] : [])) as { node, nodeIndex } (nodeIndex)} {@const exposedInputsOutputs = [...node.exposedInputs, ...node.exposedOutputs]} {@const clipPathId = `${Math.random()}`.substring(2)}
{node.displayName}
{#if exposedInputsOutputs.length > 0}
{#each exposedInputsOutputs as parameter, index}
{parameter.name}
{/each}
{/if}
{#if node.primaryInput?.dataType} {node.primaryInput} data {/if} {#each node.exposedInputs as parameter, index} {#if index < node.exposedInputs.length} {parameter.dataType} data {/if} {/each}
{#if node.primaryOutput} {node.primaryOutput.dataType} data {/if} {#each node.exposedOutputs as parameter, outputIndex} {parameter.dataType} data {/each}
{/each}