Skip to content

Commit 267e6ba

Browse files
authored
Added allRows getter to retrieve all unpaginated filtered and sorted table rows (#23)
* add AllRows getter * update demo page * Added allRows getter to retrieve all unpaginated filtered and sorted table rows
1 parent ea0e84f commit 267e6ba

File tree

4 files changed

+116
-4
lines changed

4 files changed

+116
-4
lines changed

.changeset/loud-dancers-build.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@careswitch/svelte-data-table': patch
3+
---
4+
5+
Added allRows getter to retrieve all unpaginated filtered and sorted table rows

src/index.test.ts

+95
Original file line numberDiff line numberDiff line change
@@ -575,4 +575,99 @@ describe('DataTable', () => {
575575
expect(table.baseRows[0].name).toBe('Frank');
576576
});
577577
});
578+
579+
describe('allRows', () => {
580+
const sampleData = [
581+
{ id: 1, name: 'Alice', age: 30 },
582+
{ id: 2, name: 'Bob', age: 25 },
583+
{ id: 3, name: 'Charlie', age: 35 },
584+
{ id: 4, name: 'David', age: 28 },
585+
{ id: 5, name: 'Eve', age: 32 }
586+
];
587+
588+
const columns = [
589+
{ id: 'id', key: 'id', name: 'ID', sortable: true },
590+
{ id: 'name', key: 'name', name: 'Name', sortable: true },
591+
{ id: 'age', key: 'age', name: 'Age', sortable: true }
592+
] satisfies ColumnDef<(typeof sampleData)[0]>[];
593+
594+
it('should return all rows when no filtering or sorting is applied', () => {
595+
const table = new DataTable({ data: sampleData, columns, pageSize: 2 });
596+
expect(table.allRows).toHaveLength(5);
597+
expect(table.allRows).toEqual(sampleData);
598+
});
599+
600+
it('should return all filtered rows regardless of pagination', () => {
601+
const table = new DataTable({ data: sampleData, columns, pageSize: 2 });
602+
table.setFilter('age', [30, 35]);
603+
expect(table.rows).toHaveLength(2); // Due to pagination
604+
expect(table.allRows).toHaveLength(2); // All matching rows
605+
expect(table.allRows.every((row) => row.age === 30 || row.age === 35)).toBe(true);
606+
});
607+
608+
it('should return all sorted rows', () => {
609+
const table = new DataTable({ data: sampleData, columns, pageSize: 2 });
610+
table.toggleSort('age');
611+
expect(table.allRows).toHaveLength(5);
612+
expect(table.allRows[0].age).toBe(25);
613+
expect(table.allRows[4].age).toBe(35);
614+
});
615+
616+
it('should return all filtered and sorted rows', () => {
617+
const table = new DataTable({ data: sampleData, columns, pageSize: 2 });
618+
table.setFilter('age', [30, 32, 35]);
619+
table.toggleSort('age');
620+
expect(table.allRows).toHaveLength(3);
621+
expect(table.allRows[0].age).toBe(30);
622+
expect(table.allRows[1].age).toBe(32);
623+
expect(table.allRows[2].age).toBe(35);
624+
});
625+
626+
it('should update when global filter is applied', () => {
627+
const table = new DataTable({ data: sampleData, columns, pageSize: 2 });
628+
table.globalFilter = 'a'; // Matches 'Alice' and 'Charlie' and 'David'
629+
expect(table.allRows).toHaveLength(3);
630+
expect(table.allRows.every((row) => ['Alice', 'Charlie', 'David'].includes(row.name))).toBe(
631+
true
632+
);
633+
});
634+
635+
it('should return an empty array when no rows match the filters', () => {
636+
const table = new DataTable({ data: sampleData, columns, pageSize: 2 });
637+
table.setFilter('age', [100]); // No rows have age 100
638+
expect(table.allRows).toHaveLength(0);
639+
});
640+
641+
it('should reflect changes when baseRows is updated', () => {
642+
const table = new DataTable({ data: sampleData, columns, pageSize: 2 });
643+
const newData = [
644+
{ id: 6, name: 'Frank', age: 40 },
645+
{ id: 7, name: 'Grace', age: 45 }
646+
];
647+
table.baseRows = newData;
648+
expect(table.allRows).toHaveLength(2);
649+
expect(table.allRows).toEqual(newData);
650+
});
651+
652+
it('should contain all filtered and sorted rows while rows respects pagination', () => {
653+
const table = new DataTable({ data: sampleData, columns, pageSize: 2 });
654+
655+
table.setFilter('age', [30, 32, 35]);
656+
table.toggleSort('age');
657+
658+
expect(table.allRows).toHaveLength(3);
659+
expect(table.allRows.map((row) => row.age)).toEqual([30, 32, 35]);
660+
661+
expect(table.rows).toHaveLength(2);
662+
expect(table.rows.map((row) => row.age)).toEqual([30, 32]);
663+
664+
table.currentPage = 2;
665+
666+
expect(table.allRows).toHaveLength(3);
667+
expect(table.allRows.map((row) => row.age)).toEqual([30, 32, 35]);
668+
669+
expect(table.rows).toHaveLength(1);
670+
expect(table.rows.map((row) => row.age)).toEqual([35]);
671+
});
672+
});
578673
});

src/lib/DataTable.svelte.ts

+12-4
Original file line numberDiff line numberDiff line change
@@ -176,10 +176,10 @@ export class DataTable<T> {
176176
}
177177

178178
/**
179-
* The current page of rows based on applied filters and sorting.
180-
* @returns {T[]} An array of rows for the current page.
179+
* Returns all filtered and sorted rows without pagination.
180+
* @returns {T[]} An array of all filtered and sorted rows.
181181
*/
182-
get rows() {
182+
get allRows() {
183183
// React to changes in original data, filter state, and sort state
184184
this.#originalData;
185185
this.#sortState;
@@ -189,9 +189,17 @@ export class DataTable<T> {
189189
this.#applyFilters();
190190
this.#applySort();
191191

192+
return this.#sortedData;
193+
}
194+
195+
/**
196+
* The current page of rows based on applied filters and sorting.
197+
* @returns {T[]} An array of rows for the current page.
198+
*/
199+
get rows() {
192200
const startIndex = (this.#currentPage - 1) * this.#pageSize;
193201
const endIndex = startIndex + this.#pageSize;
194-
return this.#sortedData.slice(startIndex, endIndex);
202+
return this.allRows.slice(startIndex, endIndex);
195203
}
196204

197205
/**

src/routes/+page.svelte

+4
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@
7373
</Menubar.Content>
7474
</Menubar.Menu>
7575
</Menubar.Root>
76+
7677
<Input
7778
type="text"
7879
placeholder="Search"
@@ -148,6 +149,9 @@
148149
Page <span class="font-semibold">{table.currentPage}</span> of
149150
<span class="font-semibold">{table.totalPages}</span>
150151
</p>
152+
<span class="text-xs">
153+
({table.allRows.length} / {table.baseRows.length})
154+
</span>
151155
</div>
152156
</div>
153157
</div>

0 commit comments

Comments
 (0)