mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 02:11:05 +00:00
386 lines
12 KiB
Svelte
386 lines
12 KiB
Svelte
<script>
|
|
/**
|
|
* Specify the data table headers
|
|
* @type {{ key: string; value: string; display?: (item) => string; sort?: (a, b) => number; empty?: boolean; columnMenu?: boolean; }[]} [headers=[]]
|
|
*/
|
|
export let headers = [];
|
|
|
|
/**
|
|
* Specify the rows the data table should render
|
|
* keys defined in `headers` are used for the row ids
|
|
* @type {Object[]} [rows=[]]
|
|
*/
|
|
export let rows = [];
|
|
|
|
/**
|
|
* Set the size of the data table
|
|
* @type {"compact" | "short" | "tall"} [size]
|
|
*/
|
|
export let size = undefined;
|
|
|
|
/**
|
|
* Specify the title of the data table
|
|
* @type {string} [title=""]
|
|
*/
|
|
export let title = "";
|
|
|
|
/**
|
|
* Specify the description of the data table
|
|
* @type {string} [description=""]
|
|
*/
|
|
export let description = "";
|
|
|
|
/**
|
|
* Set to `true` to use zebra styles
|
|
* @type {boolean} [zebra=false]
|
|
*/
|
|
export let zebra = false;
|
|
|
|
/**
|
|
* Set to `true` for the sortable variant
|
|
* @type {boolean} [sortable=false]
|
|
*/
|
|
export let sortable = false;
|
|
|
|
/**
|
|
* Set to `true` for the expandable variant
|
|
* Automatically set to `true` if `batchExpansion` is `true`
|
|
* @type {boolean} [expandable=false]
|
|
*/
|
|
export let expandable = false;
|
|
|
|
/**
|
|
* Set to `true` to enable batch expansion
|
|
* @type {boolean} [batchExpansion=false]
|
|
*/
|
|
export let batchExpansion = false;
|
|
|
|
/**
|
|
* Specify the row ids to be expanded
|
|
* @type {string[]} [expandedRowIds=[]]
|
|
*/
|
|
export let expandedRowIds = [];
|
|
|
|
/**
|
|
* Set to `true` for the radio selection variant
|
|
* @type {boolean} [radio=false]
|
|
*/
|
|
export let radio = false;
|
|
|
|
/**
|
|
* Set to `true` for the selectable variant
|
|
* Automatically set to `true` if `radio` or `batchSelection` are `true`
|
|
* @type {boolean} [selectable=false]
|
|
*/
|
|
export let selectable = false;
|
|
|
|
/**
|
|
* Set to `true` to enable batch selection
|
|
* @type {boolean} [batchSelection=false]
|
|
*/
|
|
export let batchSelection = false;
|
|
|
|
/**
|
|
* Specify the row ids to be selected
|
|
* @type {string[]} [selectedRowIds=[]]
|
|
*/
|
|
export let selectedRowIds = [];
|
|
|
|
/**
|
|
* Set to `true` to enable a sticky header
|
|
* @type {boolean} [stickyHeader=false]
|
|
*/
|
|
export let stickyHeader = false;
|
|
|
|
import { createEventDispatcher, setContext } from "svelte";
|
|
import { writable, derived } from "svelte/store";
|
|
import ChevronRight16 from "carbon-icons-svelte/lib/ChevronRight16";
|
|
import { InlineCheckbox } from "../Checkbox";
|
|
import { RadioButton } from "../RadioButton";
|
|
import Table from "./Table.svelte";
|
|
import TableBody from "./TableBody.svelte";
|
|
import TableCell from "./TableCell.svelte";
|
|
import TableContainer from "./TableContainer.svelte";
|
|
import TableHead from "./TableHead.svelte";
|
|
import TableHeader from "./TableHeader.svelte";
|
|
import TableRow from "./TableRow.svelte";
|
|
|
|
const sortDirectionMap = {
|
|
none: "ascending",
|
|
ascending: "descending",
|
|
descending: "none",
|
|
};
|
|
const dispatch = createEventDispatcher();
|
|
const batchSelectedIds = writable(false);
|
|
const tableSortable = writable(sortable);
|
|
const sortHeader = writable({
|
|
id: null,
|
|
key: null,
|
|
sort: undefined,
|
|
sortDirection: "none",
|
|
});
|
|
const headerItems = writable([]);
|
|
const thKeys = derived(headerItems, () =>
|
|
headers
|
|
.map(({ key }, i) => ({ key, id: $headerItems[i] }))
|
|
.reduce((a, c) => ({ ...a, [c.key]: c.id }), {})
|
|
);
|
|
|
|
setContext("DataTable", {
|
|
sortHeader,
|
|
tableSortable,
|
|
batchSelectedIds,
|
|
resetSelectedRowIds: () => {
|
|
selectAll = false;
|
|
selectedRowIds = [];
|
|
if (refSelectAll) refSelectAll.checked = false;
|
|
},
|
|
add: (id) => {
|
|
headerItems.update((_) => [..._, id]);
|
|
},
|
|
});
|
|
|
|
let expanded = false;
|
|
let parentRowId = null;
|
|
|
|
$: expandedRows = expandedRowIds.reduce(
|
|
(a, id) => ({ ...a, [id]: true }),
|
|
{}
|
|
);
|
|
|
|
let selectAll = false;
|
|
let refSelectAll = null;
|
|
|
|
$: batchSelectedIds.set(selectedRowIds);
|
|
$: indeterminate =
|
|
selectedRowIds.length > 0 && selectedRowIds.length < rows.length;
|
|
$: if (batchExpansion) expandable = true;
|
|
$: if (radio || batchSelection) selectable = true;
|
|
$: tableSortable.set(sortable);
|
|
$: headerKeys = headers.map(({ key }) => key);
|
|
$: rows = rows.map((row) => ({
|
|
...row,
|
|
cells: headerKeys.map((key) => ({ key, value: row[key] })),
|
|
}));
|
|
$: sortedRows = rows;
|
|
$: ascending = $sortHeader.sortDirection === "ascending";
|
|
$: sortKey = $sortHeader.key;
|
|
$: sorting = sortable && sortKey != null;
|
|
$: if (sorting) {
|
|
if ($sortHeader.sortDirection === "none") {
|
|
sortedRows = rows;
|
|
} else {
|
|
sortedRows = [...rows].sort((a, b) => {
|
|
const itemA = ascending ? a[sortKey] : b[sortKey];
|
|
const itemB = ascending ? b[sortKey] : a[sortKey];
|
|
|
|
if ($sortHeader.sort) return $sortHeader.sort(itemA, itemB);
|
|
|
|
if (typeof itemA === "number" && typeof itemB === "number")
|
|
return itemA - itemB;
|
|
|
|
return itemA
|
|
.toString()
|
|
.localeCompare(itemB.toString(), "en", { numeric: true });
|
|
});
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<TableContainer title="{title}" description="{description}" {...$$restProps}>
|
|
<slot />
|
|
<Table
|
|
zebra="{zebra}"
|
|
size="{size}"
|
|
stickyHeader="{stickyHeader}"
|
|
sortable="{sortable}"
|
|
>
|
|
<TableHead>
|
|
<TableRow>
|
|
{#if expandable}
|
|
<th
|
|
scope="col"
|
|
class:bx--table-expand="{true}"
|
|
data-previous-value="{expanded ? 'collapsed' : undefined}"
|
|
>
|
|
{#if batchExpansion}
|
|
<button
|
|
type="button"
|
|
class:bx--table-expand__button="{true}"
|
|
on:click="{() => {
|
|
expanded = !expanded;
|
|
expandedRowIds = expanded ? rows.map((row) => row.id) : [];
|
|
|
|
dispatch('click:header--expand', { expanded });
|
|
}}"
|
|
>
|
|
<ChevronRight16 class="bx--table-expand__svg" />
|
|
</button>
|
|
{/if}
|
|
</th>
|
|
{/if}
|
|
{#if selectable && !batchSelection}
|
|
<th scope="col"></th>
|
|
{/if}
|
|
{#if batchSelection && !radio}
|
|
<th scope="col" class:bx--table-column-checkbox="{true}">
|
|
<InlineCheckbox
|
|
bind:ref="{refSelectAll}"
|
|
aria-label="Select all rows"
|
|
checked="{selectAll}"
|
|
indeterminate="{indeterminate}"
|
|
on:change="{(e) => {
|
|
if (indeterminate) {
|
|
e.target.checked = false;
|
|
selectAll = false;
|
|
selectedRowIds = [];
|
|
return;
|
|
}
|
|
|
|
if (e.target.checked) {
|
|
selectedRowIds = rows.map((row) => row.id);
|
|
} else {
|
|
selectedRowIds = [];
|
|
}
|
|
}}"
|
|
/>
|
|
</th>
|
|
{/if}
|
|
{#each headers as header, i (header.key)}
|
|
{#if header.empty}
|
|
<th scope="col"></th>
|
|
{:else}
|
|
<TableHeader
|
|
on:click="{() => {
|
|
dispatch('click', { header });
|
|
let active = header.key === $sortHeader.key;
|
|
let currentSortDirection = active ? $sortHeader.sortDirection : 'none';
|
|
let sortDirection = sortDirectionMap[currentSortDirection];
|
|
dispatch('click:header', { header, sortDirection });
|
|
sortHeader.set({
|
|
id: sortDirection === 'none' ? null : $thKeys[header.key],
|
|
key: header.key,
|
|
sort: header.sort,
|
|
sortDirection,
|
|
});
|
|
}}"
|
|
>
|
|
<slot name="cell-header" header="{header}">{header.value}</slot>
|
|
</TableHeader>
|
|
{/if}
|
|
{/each}
|
|
</TableRow>
|
|
</TableHead>
|
|
<TableBody>
|
|
{#each sorting ? sortedRows : rows as row, i (row.id)}
|
|
<TableRow
|
|
id="row-{row.id}"
|
|
class="{selectedRowIds.includes(row.id) ? 'bx--data-table--selected' : ''} {expandedRows[row.id] ? 'bx--expandable-row' : ''} {expandable ? 'bx--parent-row' : ''} {expandable && parentRowId === row.id ? 'bx--expandable-row--hover' : ''}"
|
|
on:click="{() => {
|
|
dispatch('click', { row });
|
|
dispatch('click:row', row);
|
|
}}"
|
|
on:mouseenter="{() => {
|
|
dispatch('mouseenter:row', row);
|
|
}}"
|
|
on:mouseleave="{() => {
|
|
dispatch('mouseleave:row', row);
|
|
}}"
|
|
>
|
|
{#if expandable}
|
|
<TableCell
|
|
class="bx--table-expand"
|
|
headers="expand"
|
|
data-previous-value="{expandedRows[row.id] ? 'collapsed' : undefined}"
|
|
>
|
|
<button
|
|
type="button"
|
|
class:bx--table-expand__button="{true}"
|
|
aria-label="{expandedRows[row.id] ? 'Collapse current row' : 'Expand current row'}"
|
|
on:click="{() => {
|
|
const rowExpanded = !!expandedRows[row.id];
|
|
|
|
expandedRowIds = rowExpanded ? expandedRowIds.filter((id) => id !== row.id) : [...expandedRowIds, row.id];
|
|
|
|
dispatch('click:row--expand', {
|
|
row,
|
|
expanded: !rowExpanded,
|
|
});
|
|
}}"
|
|
>
|
|
<ChevronRight16 class="bx--table-expand__svg" />
|
|
</button>
|
|
</TableCell>
|
|
{/if}
|
|
{#if selectable}
|
|
<td
|
|
class:bx--table-column-checkbox="{true}"
|
|
class:bx--table-column-radio="{radio}"
|
|
>
|
|
{#if radio}
|
|
<RadioButton
|
|
name="select-row-{row.id}"
|
|
checked="{selectedRowIds.includes(row.id)}"
|
|
on:change="{() => {
|
|
selectedRowIds = [row.id];
|
|
}}"
|
|
/>
|
|
{:else}
|
|
<InlineCheckbox
|
|
name="select-row-{row.id}"
|
|
checked="{selectedRowIds.includes(row.id)}"
|
|
on:change="{() => {
|
|
if (selectedRowIds.includes(row.id)) {
|
|
selectedRowIds = selectedRowIds.filter((id) => id !== row.id);
|
|
} else {
|
|
selectedRowIds = [...selectedRowIds, row.id];
|
|
}
|
|
}}"
|
|
/>
|
|
{/if}
|
|
</td>
|
|
{/if}
|
|
{#each row.cells as cell, j (cell.key)}
|
|
{#if headers[j].empty}
|
|
<td class:bx--table-column-menu="{headers[j].columnMenu}">
|
|
<slot name="cell" row="{row}" cell="{cell}">
|
|
{headers[j].display ? headers[j].display(cell.value) : cell.value}
|
|
</slot>
|
|
</td>
|
|
{:else}
|
|
<TableCell
|
|
on:click="{() => {
|
|
dispatch('click', { row, cell });
|
|
dispatch('click:cell', cell);
|
|
}}"
|
|
>
|
|
<slot name="cell" row="{row}" cell="{cell}">
|
|
{headers[j].display ? headers[j].display(cell.value) : cell.value}
|
|
</slot>
|
|
</TableCell>
|
|
{/if}
|
|
{/each}
|
|
</TableRow>
|
|
|
|
{#if expandable && expandedRows[row.id]}
|
|
<tr
|
|
data-child-row
|
|
class:bx--expandable-row="{true}"
|
|
on:mouseenter="{() => {
|
|
parentRowId = row.id;
|
|
}}"
|
|
on:mouseleave="{() => {
|
|
parentRowId = null;
|
|
}}"
|
|
>
|
|
<TableCell colspan="{headers.length + 1}">
|
|
<div class:bx--child-row-inner-container="{true}">
|
|
<slot name="expanded-row" row="{row}" />
|
|
</div>
|
|
</TableCell>
|
|
</tr>
|
|
{/if}
|
|
{/each}
|
|
</TableBody>
|
|
</Table>
|
|
</TableContainer>
|