darabos commited on
Commit
321edbc
·
1 Parent(s): 6988728

Correct handle placement when there are inputs/outputs on different sides.

Browse files
web/src/LynxKiteNode.svelte CHANGED
@@ -34,8 +34,34 @@
34
  function asPx(n: number | undefined) {
35
  return n ? n + 'px' : undefined;
36
  }
37
- $: inputs = Object.values(data.meta?.inputs || {});
38
- $: outputs = Object.values(data.meta?.outputs || {});
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
39
  const handleOffsetDirection = { top: 'left', bottom: 'left', left: 'top', right: 'top' };
40
  </script>
41
 
@@ -53,18 +79,11 @@
53
  {/if}
54
  <slot />
55
  {/if}
56
- {#each inputs as input, i}
57
- <Handle
58
- id={input.name} type="target" position={input.position}
59
- style="{handleOffsetDirection[input.position]}: {100 * (i + 1) / (inputs.length + 1)}%">
60
- {#if inputs.length>1}<span class="handle-name">{input.name.replace(/_/g, " ")}</span>{/if}
61
- </Handle>
62
- {/each}
63
- {#each outputs as output, i}
64
  <Handle
65
- id={output.name} type="source" position={output.position}
66
- style="{handleOffsetDirection[output.position]}: {100 * (i + 1) / (outputs.length + 1)}%">
67
- {#if outputs.length>1}<span class="handle-name">{output.name.replace(/_/g, " ")}</span>{/if}
68
  </Handle>
69
  {/each}
70
  </div>
 
34
  function asPx(n: number | undefined) {
35
  return n ? n + 'px' : undefined;
36
  }
37
+ function getHandles(inputs, outputs) {
38
+ const handles: {
39
+ position: 'top' | 'bottom' | 'left' | 'right',
40
+ name: string,
41
+ index: number,
42
+ offsetPercentage: number,
43
+ showLabel: boolean,
44
+ }[] = [];
45
+ for (const e of Object.values(inputs)) {
46
+ handles.push({ ...e, type: 'target' });
47
+ }
48
+ for (const e of Object.values(outputs)) {
49
+ handles.push({ ...e, type: 'source' });
50
+ }
51
+ const counts = { top: 0, bottom: 0, left: 0, right: 0 };
52
+ for (const e of handles) {
53
+ e.index = counts[e.position];
54
+ counts[e.position]++;
55
+ }
56
+ for (const e of handles) {
57
+ e.offsetPercentage = 100 * (e.index + 1) / (counts[e.position] + 1);
58
+ const simpleHorizontal = counts.top === 0 && counts.bottom === 0 && handles.length <= 2;
59
+ const simpleVertical = counts.left === 0 && counts.right === 0 && handles.length <= 2;
60
+ e.showLabel = !simpleHorizontal && !simpleVertical;
61
+ }
62
+ return handles;
63
+ }
64
+ $: handles = getHandles(data.meta?.inputs || {}, data.meta?.outputs || {});
65
  const handleOffsetDirection = { top: 'left', bottom: 'left', left: 'top', right: 'top' };
66
  </script>
67
 
 
79
  {/if}
80
  <slot />
81
  {/if}
82
+ {#each handles as handle}
 
 
 
 
 
 
 
83
  <Handle
84
+ id={handle.name} type={handle.type} position={handle.position}
85
+ style="{handleOffsetDirection[handle.position]}: {handle.offsetPercentage}%">
86
+ {#if handle.showLabel}<span class="handle-name">{handle.name.replace(/_/g, " ")}</span>{/if}
87
  </Handle>
88
  {/each}
89
  </div>
web/src/NodeParameter.svelte CHANGED
@@ -13,6 +13,7 @@
13
  </button>
14
  {:else if meta?.type?.format === 'textarea'}
15
  <textarea class="form-control form-control-sm"
 
16
  value={value}
17
  on:change={(evt) => onChange(evt.currentTarget.value)}
18
  />
 
13
  </button>
14
  {:else if meta?.type?.format === 'textarea'}
15
  <textarea class="form-control form-control-sm"
16
+ rows="6"
17
  value={value}
18
  on:change={(evt) => onChange(evt.currentTarget.value)}
19
  />
web/src/NodeWithTableView.svelte CHANGED
@@ -11,7 +11,7 @@
11
 
12
  <LynxKiteNode {...$$props}>
13
  {#if data.display}
14
- {#each Object.entries(data.display.dataframes) as [name, df]}
15
  {#if !single}<div class="df-head" on:click={() => open[name] = !open[name]}>{name}</div>{/if}
16
  {#if single || open[name]}
17
  <Table columns={df.columns} data={df.data} />
 
11
 
12
  <LynxKiteNode {...$$props}>
13
  {#if data.display}
14
+ {#each Object.entries(data.display.dataframes || {}) as [name, df]}
15
  {#if !single}<div class="df-head" on:click={() => open[name] = !open[name]}>{name}</div>{/if}
16
  {#if single || open[name]}
17
  <Table columns={df.columns} data={df.data} />
web/src/Table.svelte CHANGED
@@ -1,4 +1,4 @@
1
- <script>
2
  import {TabulatorFull as Tabulator} from 'tabulator-tables';
3
  import {onMount} from 'svelte';
4
 
@@ -14,7 +14,11 @@
14
  for (const row of data) {
15
  const obj = {};
16
  for (let i = 0; i < columns.length; i++) {
17
- obj[columns[i]] = row[i];
 
 
 
 
18
  }
19
  objs.push(obj);
20
  }
 
1
+ <script lang="ts">
2
  import {TabulatorFull as Tabulator} from 'tabulator-tables';
3
  import {onMount} from 'svelte';
4
 
 
14
  for (const row of data) {
15
  const obj = {};
16
  for (let i = 0; i < columns.length; i++) {
17
+ let d = row[i];
18
+ if (typeof d !== 'string' && typeof d !== 'number') {
19
+ d = JSON.stringify(d);
20
+ }
21
+ obj[columns[i]] = d;
22
  }
23
  objs.push(obj);
24
  }