Spaces:
Running
Running
File size: 1,178 Bytes
a18645a fcd804b a18645a fcd804b a18645a fcd804b a18645a d994c06 a18645a fcd804b a18645a |
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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 |
<script lang="ts">
import { type NodeProps } from '@xyflow/svelte';
import LynxKiteNode from './LynxKiteNode.svelte';
type $$Props = NodeProps;
export let data: $$Props['data'];
const open = {};
</script>
<LynxKiteNode {...$$props}>
{#if data.view}
{#each Object.entries(data.view.dataframes) as [name, df]}
<div class="df-head" on:click={() => open[name] = !open[name]}>{name}</div>
{#if open[name]}
<table>
<tr>
{#each df.columns as column}
<th>{column}</th>
{/each}
</tr>
{#each df.data as row}
<tr>
{#each row as cell}
<td>{cell}</td>
{/each}
</tr>
{/each}
</table>
{/if}
{/each}
{#each Object.entries(data.view.others || {}) as [name, o]}
<div class="df-head" on:click={() => open[name] = !open[name]}>{name}</div>
{#if open[name]}
<pre>{o}</pre>
{/if}
{/each}
{/if}
</LynxKiteNode>
<style>
.df-head {
font-weight: bold;
padding: 8px;
background: #f0f0f0;
cursor: pointer;
}
table {
margin: 8px;
border-collapse: collapse;
}
</style>
|