mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
99 lines
2.4 KiB
Svelte
99 lines
2.4 KiB
Svelte
<script>
|
|
/** @extends {"../DataTable/DataTable"} DataTableHeader */
|
|
|
|
/**
|
|
* Specify the number of columns
|
|
* Superseded by `headers` if `headers` is a non-empty array
|
|
*/
|
|
export let columns = 5;
|
|
|
|
/** Specify the number of rows */
|
|
export let rows = 5;
|
|
|
|
/**
|
|
* Set the size of the data table
|
|
* @type {"compact" | "short" | "tall"}
|
|
*/
|
|
export let size = undefined;
|
|
|
|
/** Set to `true` to apply zebra styles to the datatable rows */
|
|
export let zebra = false;
|
|
|
|
/** Set to `false` to hide the header */
|
|
export let showHeader = true;
|
|
|
|
/**
|
|
* Set the column headers
|
|
* Supersedes `columns` if value is a non-empty array
|
|
* @type {string[] | Partial<DataTableHeader>[]}
|
|
*/
|
|
export let headers = [];
|
|
|
|
/** Set to `false` to hide the toolbar */
|
|
export let showToolbar = true;
|
|
|
|
$: values = headers.map((header) =>
|
|
header.value !== undefined ? header.value : header
|
|
);
|
|
$: cols = Array.from(
|
|
{ length: headers.length > 0 ? headers.length : columns },
|
|
(_, i) => i
|
|
);
|
|
</script>
|
|
|
|
<div
|
|
class:bx--skeleton="{true}"
|
|
class:bx--data-table-container="{true}"
|
|
{...$$restProps}
|
|
>
|
|
{#if showHeader}
|
|
<div class:bx--data-table-header="{true}">
|
|
<div class:bx--data-table-header__title="{true}"></div>
|
|
<div class:bx--data-table-header__description="{true}"></div>
|
|
</div>
|
|
{/if}
|
|
{#if showToolbar}
|
|
<section aria-label="data table toolbar" class:bx--table-toolbar="{true}">
|
|
<div class:bx--toolbar-content="{true}">
|
|
<span
|
|
class:bx--skeleton="{true}"
|
|
class:bx--btn="{true}"
|
|
class:bx--btn--sm="{true}"></span>
|
|
</div>
|
|
</section>
|
|
{/if}
|
|
<table
|
|
class:bx--skeleton="{true}"
|
|
class:bx--data-table="{true}"
|
|
class:bx--data-table--compact="{size === 'compact'}"
|
|
class:bx--data-table--short="{size === 'short'}"
|
|
class:bx--data-table--tall="{size === 'tall'}"
|
|
class:bx--data-table--zebra="{zebra}"
|
|
on:click
|
|
on:mouseover
|
|
on:mouseenter
|
|
on:mouseleave
|
|
>
|
|
<thead>
|
|
<tr>
|
|
{#each cols as col (col)}
|
|
<th>{values[col] || ""}</th>
|
|
{/each}
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
{#each cols as col (col)}
|
|
<td><span></span></td>
|
|
{/each}
|
|
</tr>
|
|
{#each Array.from({ length: rows - 1 }, (_, i) => i) as row (row)}
|
|
<tr>
|
|
{#each cols as col (col)}
|
|
<td></td>
|
|
{/each}
|
|
</tr>
|
|
{/each}
|
|
</tbody>
|
|
</table>
|
|
</div>
|