anki/ts/components/VirtualTable.svelte
Abdo c5e2564523
Fix jittery virtual table scrolling on mobile (#2810)
* Fix jittery virtual table scrolling on mobile

* Fix table body appearing above header on iOS (dae)
2023-11-13 10:19:33 +10:00

106 lines
2.7 KiB
Svelte

<!--
Copyright: Ankitects Pty Ltd and contributors
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
-->
<script lang="ts">
let className: string = "";
export { className as class };
export let itemsCount: number = 0;
export let itemHeight: number;
export let bottomOffset: number = 0;
let container: HTMLElement;
let scrollTop: number = 0;
$: containerHeight = container
? Math.floor(
(document.documentElement.clientHeight -
container.offsetTop -
bottomOffset) /
itemHeight,
) * itemHeight
: 0;
$: sliceLength = Math.ceil(containerHeight / itemHeight);
$: startIndex = Math.floor(scrollTop / itemHeight);
$: endIndex = Math.min(startIndex + sliceLength, itemsCount);
$: slice = new Array(endIndex - startIndex).fill(0).map((_, i) => startIndex + i);
window.addEventListener("resize", () => {
containerHeight = containerHeight;
});
</script>
<div
class="outer"
style="--container-height: {containerHeight + 1}px"
bind:this={container}
on:scroll={() => (scrollTop = container.scrollTop)}
>
<table class="table {className}" tabindex="-1">
<thead>
<slot name="headers" />
</thead>
<tbody>
{#if itemHeight * startIndex > 0}
<tr><td style="height: {itemHeight * startIndex}px;" /></tr>
{/if}
{#each slice as index (index)}
<slot name="row" {index} />
{/each}
{#if itemHeight * itemsCount - itemHeight * endIndex > 0}
<tr>
<td
style="height: {itemHeight * itemsCount -
itemHeight * endIndex}px;"
/>
</tr>
{/if}
</tbody>
</table>
</div>
<style lang="scss">
.outer {
width: 100%;
overflow: auto;
height: var(--container-height);
margin: 0 auto;
}
.table {
border-collapse: collapse;
white-space: nowrap;
:global(th),
:global(td) {
text-overflow: ellipsis;
overflow: hidden;
border: 1px solid var(--border-subtle);
padding: 0.25rem 0.5rem;
max-width: 15em;
}
:global(th) {
background: var(--border);
text-align: center;
}
:global(thead) {
position: sticky;
top: -1px;
overflow-y: auto;
overflow-x: hidden;
z-index: 1;
}
:global(tbody) {
overflow-y: scroll;
overflow-x: hidden;
}
}
</style>