File size: 884 Bytes
321edbc
bdf2455
 
 
 
 
 
 
 
e2d0e27
 
 
 
bdf2455
 
 
321edbc
 
 
 
 
bdf2455
 
 
e2d0e27
 
 
bdf2455
 
 
 
 
 
 
 
 
 
 
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
<script lang="ts">
  import {TabulatorFull as Tabulator} from 'tabulator-tables';
  import {onMount} from 'svelte';

  export let data, columns;

  let tableComponent;
  let tab;

  // The rows in the data are arrays, but Tabulator expects objects.
  const objs = [];
  $: {
    objs.splice();
    for (const row of data) {
      const obj = {};
      for (let i = 0; i < columns.length; i++) {
        let d = row[i];
        if (typeof d !== 'string' && typeof d !== 'number') {
          d = JSON.stringify(d);
        }
        obj[columns[i]] = d;
      }
      objs.push(obj);
    }
  }

  onMount(() => {
    tab = new Tabulator(tableComponent, {
      data: objs,
      columns: columns.map(c => ({title: c, field: c, widthGrow: 1})),
      height: '311px',
      reactiveData: true,
      layout: "fitColumns",
    });
  });
</script>

<div bind:this={tableComponent}></div>