@@ -575,4 +575,99 @@ describe('DataTable', () => {
575
575
expect ( table . baseRows [ 0 ] . name ) . toBe ( 'Frank' ) ;
576
576
} ) ;
577
577
} ) ;
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
+ } ) ;
578
673
} ) ;
0 commit comments