Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support multiple TBodies #13

Draft
wants to merge 4 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions examples/full/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -149,11 +149,11 @@
</tr>
</ExtendedTable>
</div>
<Pagination totalPages={pages} activePage={activePage} on:change={(event) => rows = getPage(event.detail.page, filteredAndSortedRows)} />
<Pagination totalPages={pages} activePage={activePage} on:blur={(event) => rows = getPage(event.detail.page, filteredAndSortedRows)} />

<div>
Show
<select bind:value={itemsPerPage} on:change={switchShownItemsPerPage}>
<select bind:value={itemsPerPage} on:blur={switchShownItemsPerPage}>
{#each [5, 10, 20] as itemsPerPage}
<option value={itemsPerPage}>
{itemsPerPage}
Expand Down
3 changes: 3 additions & 0 deletions examples/theming/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@
{value: (data, rowIndex) => (rowIndex + 1) % 2 === 0 ? data.last_name : ""},
{value: (data, rowIndex) => data.title === "mr" ? "male my-other-class" : ""},
],
group: (data, rowIndex) => {
return rowIndex % 3 === 0;
},
};

let data = rawData.slice(0, 10);
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"benchmark": "^2.1.4",
"jest": "^25.1.0",
"jsdom": "^16.2.2",
"svelte": "^3.20.1",
"svelte": "^3.38.2",
"svelte-jester": "^1.0.5"
},
"jest": {
Expand Down
28 changes: 23 additions & 5 deletions src/ExtendedTable.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
export let columns = [];
export let rows = {
classNames: [],
group: () => false,
};
const defaultRowClickHandler = (row) => true;
export let onRowClick = defaultRowClickHandler;
Expand Down Expand Up @@ -108,6 +109,16 @@
}
}

const openTBody = () => {
console.log('Opening TBODY');
return '<tbody>';
}

const closeTBody = () => {
console.log('Closing TBODY');
return '</tbody>';
}

let slots = new Set($$props.$$slots ? Object.getOwnPropertyNames($$props.$$slots) : []);
</script>

Expand All @@ -121,7 +132,7 @@
position: relative;
}

tbody tr:hover {
table tr:hover {
background-color: rgba(0, 0, 0, 0.1);
}

Expand All @@ -137,12 +148,12 @@
font-weight: 700;
}

tbody .row-even {
tr.row-even {
background: rgba(153, 202, 255, 0.15);
border-bottom: 0;
}

tbody .col-even {
tr.col-even {
background: rgba(153, 202, 255, 0.15);
}

Expand Down Expand Up @@ -179,8 +190,13 @@
</tr>
<slot name="additionalHeaderRow"></slot>
</thead>
<tbody>
{#each data as d, rowIndex}
{#if rowIndex === 0 || rows.group(d, rowIndex)}
{#if rowIndex > 0}
{@html closeTBody()}
{/if}
{@html openTBody()}
{/if}
<tr on:click={() => onRowClick(d)} class="{getRowClasses(rowIndex, rows.classNames, d)}" class:mouse-pointer={onRowClick !== defaultRowClickHandler}>
{#each columns as column, columnIndex}
<td on:click={(event) => onCellClick(event, column, d, columnIndex)} class="{getCellClasses(columnIndex, rowIndex, column, d)}" class:hidden={column.hidden}>
Expand Down Expand Up @@ -241,7 +257,9 @@
{/each}
</tr>
<slot name="additionalRow" rowData={d}></slot>
{#if rowIndex === data.length -1}
{@html closeTBody()}
{/if}
{/each}
</tbody>
</table>
</div>