Skip to content

Commit

Permalink
docs: use @tanstack/lit-virtual for the virtualized table example (#5655
Browse files Browse the repository at this point in the history
)

Co-authored-by: Mor Kadosh <mkadosh@paloaltonetworks.com>
  • Loading branch information
kadoshms and Mor Kadosh committed Jul 14, 2024
1 parent 0054eb3 commit bb0a536
Show file tree
Hide file tree
Showing 4 changed files with 58 additions and 22 deletions.
2 changes: 1 addition & 1 deletion examples/lit/virtualized-rows/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
},
"dependencies": {
"@faker-js/faker": "^8.4.1",
"@lit-labs/virtualizer": "^2.0.13",
"@tanstack/lit-table": "^8.19.2",
"@tanstack/lit-virtual": "^3.8.3",
"lit": "^3.1.4"
},
"devDependencies": {
Expand Down
48 changes: 38 additions & 10 deletions examples/lit/virtualized-rows/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,14 @@ import {
flexRender,
getCoreRowModel,
getSortedRowModel,
Row,
TableController,
} from '@tanstack/lit-table'
import config from '../twind.config'
import { styleMap } from 'lit/directives/style-map.js'
import { virtualize, virtualizerRef } from '@lit-labs/virtualizer/virtualize.js'

import { makeData, Person } from './makeData.ts'
import { VirtualizerController } from '@tanstack/lit-virtual'
import { createRef, ref, Ref } from 'lit/directives/ref.js'

const columns: ColumnDef<Person>[] = [
{
Expand Down Expand Up @@ -61,6 +63,20 @@ const data = makeData(50_000)
class LitTableExample extends LitElement {
private tableController = new TableController<Person>(this)

private tableContainerRef: Ref = createRef()

private rowVirtualizerController: VirtualizerController<Element, Element>

connectedCallback() {
this.rowVirtualizerController = new VirtualizerController(this, {
count: data.length,
getScrollElement: () => this.tableContainerRef.value!,
estimateSize: () => 33,
overscan: 5,
})
super.connectedCallback()
}

protected render(): unknown {
const table = this.tableController.table({
columns,
Expand All @@ -69,11 +85,14 @@ class LitTableExample extends LitElement {
getCoreRowModel: getCoreRowModel(),
})
const { rows } = table.getRowModel()

const virtualizer = this.rowVirtualizerController.getVirtualizer()
return html`
<div class="app">
(${data.length} rows)
<div
class="container"
${ref(this.tableContainerRef)}
style="${styleMap({
overflow: 'auto', //our scrollable table container
position: 'relative', //needed for sticky header
Expand Down Expand Up @@ -122,21 +141,30 @@ class LitTableExample extends LitElement {
<tbody
style=${styleMap({
display: 'grid',
height: 500,
// height: `${rowVirtualizer.getTotalSize()}px`, //tells scrollbar how big the table is
height: `${virtualizer.getTotalSize()}px`, //tells scrollbar how big the table is
position: 'relative', //needed for absolute positioning of rows
})}
>
${virtualize({
items: data,
renderItem: (_, index) => {
const row = rows[index]
${repeat(
this.rowVirtualizerController
.getVirtualizer()
.getVirtualItems(),
item => item.key,
item => {
const row = rows[item.index] as Row<Person>
return html`
<tr
style=${styleMap({
display: 'flex',
position: 'absolute',
transform: `translateY(${item.start}px)`,
width: '100%',
})}
${ref(node =>
this.rowVirtualizerController
.getVirtualizer()
.measureElement(node)
)}
>
${repeat(
row.getVisibleCells(),
Expand All @@ -157,8 +185,8 @@ class LitTableExample extends LitElement {
)}
</tr>
`
},
})}
}
)}
</tbody>
</table>
</div>
Expand Down
1 change: 1 addition & 0 deletions examples/lit/virtualized-rows/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"jsx": "react-jsx",
"experimentalDecorators": true,
"useDefineForClassFields": false,
"strictPropertyInitialization": false,

/* Linting */
"strict": true,
Expand Down
29 changes: 18 additions & 11 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit bb0a536

Please sign in to comment.