1
- import { DebugElement , ViewChild , Component } from '@angular/core' ;
1
+ import { ViewChild , Component } from '@angular/core' ;
2
2
import { TestBed , async , fakeAsync , tick } from '@angular/core/testing' ;
3
3
import { By } from '@angular/platform-browser' ;
4
4
import { NoopAnimationsModule } from '@angular/platform-browser/animations' ;
@@ -360,7 +360,7 @@ describe('Row Pinning #grid', () => {
360
360
let pinRowContainer = fix . debugElement . queryAll ( By . css ( FIXED_ROW_CONTAINER ) ) ;
361
361
expect ( pinRowContainer . length ) . toBe ( 1 ) ;
362
362
363
- let expectedHeight = parseInt ( grid . height , 10 ) - grid . pinnedRowHeight - 18 - grid . theadRow . nativeElement . offsetHeight ;
363
+ let expectedHeight = parseInt ( grid . height , 10 ) - grid . pinnedRowHeight - 18 - grid . theadRow . nativeElement . offsetHeight ;
364
364
expect ( grid . calcHeight - expectedHeight ) . toBeLessThanOrEqual ( 1 ) ;
365
365
366
366
grid . filter ( 'ID' , 'B' , IgxStringFilteringOperand . instance ( ) . condition ( 'startsWith' ) , false ) ;
@@ -370,7 +370,7 @@ describe('Row Pinning #grid', () => {
370
370
expect ( pinRowContainer . length ) . toBe ( 0 ) ;
371
371
372
372
expect ( grid . pinnedRowHeight ) . toBe ( 0 ) ;
373
- expectedHeight = parseInt ( grid . height , 10 ) - grid . pinnedRowHeight - 18 - grid . theadRow . nativeElement . offsetHeight ;
373
+ expectedHeight = parseInt ( grid . height , 10 ) - grid . pinnedRowHeight - 18 - grid . theadRow . nativeElement . offsetHeight ;
374
374
expect ( grid . calcHeight - expectedHeight ) . toBeLessThanOrEqual ( 1 ) ;
375
375
} ) ;
376
376
@@ -397,47 +397,6 @@ describe('Row Pinning #grid', () => {
397
397
expect ( gridFilterData [ 1 ] . ID ) . toBe ( 'BERGS' ) ;
398
398
} ) ;
399
399
400
- it ( 'should page through unpinned collection with modified pageSize = pageSize - pinnedRows.lenght.' , ( ) => {
401
- // pin 2nd row
402
- grid . paging = true ;
403
- grid . perPage = 5 ;
404
- fix . detectChanges ( ) ;
405
- const paginator = fix . debugElement . query ( By . directive ( IgxPaginatorComponent ) ) ;
406
- expect ( paginator . componentInstance . totalPages ) . toEqual ( 6 ) ;
407
-
408
- grid . getRowByIndex ( 1 ) . pin ( ) ;
409
- fix . detectChanges ( ) ;
410
-
411
- expect ( grid . pinnedRows . length ) . toBe ( 1 ) ;
412
- let pinRowContainer = fix . debugElement . queryAll ( By . css ( FIXED_ROW_CONTAINER ) ) ;
413
- expect ( pinRowContainer . length ) . toBe ( 1 ) ;
414
- expect ( grid . dataView . length ) . toBe ( 4 ) ;
415
- expect ( paginator . componentInstance . totalPages ) . toEqual ( 6 ) ;
416
-
417
- grid . getRowByIndex ( 3 ) . pin ( ) ;
418
- fix . detectChanges ( ) ;
419
-
420
- expect ( grid . pinnedRows . length ) . toBe ( 2 ) ;
421
- pinRowContainer = fix . debugElement . queryAll ( By . css ( FIXED_ROW_CONTAINER ) ) ;
422
- expect ( pinRowContainer . length ) . toBe ( 1 ) ;
423
- expect ( grid . dataView . length ) . toBe ( 3 ) ;
424
- expect ( paginator . componentInstance . totalPages ) . toEqual ( 5 ) ;
425
-
426
- // unpin
427
- grid . getRowByIndex ( 0 ) . unpin ( ) ;
428
- fix . detectChanges ( ) ;
429
-
430
- grid . getRowByIndex ( 0 ) . unpin ( ) ;
431
- fix . detectChanges ( ) ;
432
-
433
- expect ( grid . pinnedRows . length ) . toBe ( 0 ) ;
434
- pinRowContainer = fix . debugElement . queryAll ( By . css ( FIXED_ROW_CONTAINER ) ) ;
435
- expect ( pinRowContainer . length ) . toBe ( 0 ) ;
436
-
437
- expect ( grid . dataView . length ) . toBe ( 5 ) ;
438
- expect ( paginator . componentInstance . totalPages ) . toEqual ( 6 ) ;
439
- } ) ;
440
-
441
400
it ( 'should apply sorting to both pinned and unpinned rows.' , ( ) => {
442
401
grid . getRowByIndex ( 1 ) . pin ( ) ;
443
402
grid . getRowByIndex ( 5 ) . pin ( ) ;
@@ -458,6 +417,7 @@ describe('Row Pinning #grid', () => {
458
417
expect ( grid . getRowByIndex ( 2 ) . rowID ) . toBe ( fix . componentInstance . data [ lastIndex ] ) ;
459
418
} ) ;
460
419
} ) ;
420
+
461
421
describe ( 'Row pinning with Master Detail View' , ( ) => {
462
422
beforeEach ( fakeAsync ( ( ) => {
463
423
fix = TestBed . createComponent ( GridRowPinningWithMDVComponent ) ;
@@ -550,6 +510,62 @@ describe('Row Pinning #grid', () => {
550
510
} ) ;
551
511
} ) ;
552
512
513
+ describe ( 'Paging' , ( ) => {
514
+ let paginator : IgxPaginatorComponent ;
515
+
516
+ beforeEach ( fakeAsync ( ( ) => {
517
+ fix = TestBed . createComponent ( GridRowPinningComponent ) ;
518
+ fix . componentInstance . createSimpleData ( 12 ) ;
519
+ grid = fix . componentInstance . instance ;
520
+ grid . paging = true ;
521
+ grid . perPage = 5 ;
522
+
523
+ fix . detectChanges ( ) ;
524
+ tick ( ) ;
525
+
526
+ paginator = fix . debugElement . query ( By . directive ( IgxPaginatorComponent ) ) . componentInstance ;
527
+ } ) ) ;
528
+
529
+ it ( 'should correctly apply paging state for grid and paginator when there are pinned rows.' , ( ) => {
530
+ // pin the first row
531
+ grid . getRowByIndex ( 0 ) . pin ( ) ;
532
+ fix . detectChanges ( ) ;
533
+
534
+ expect ( grid . rowList . length ) . toEqual ( 6 ) ;
535
+ expect ( grid . perPage ) . toEqual ( 5 ) ;
536
+ expect ( paginator . perPage ) . toEqual ( 5 ) ;
537
+ expect ( paginator . totalRecords ) . toEqual ( 12 ) ;
538
+ expect ( paginator . totalPages ) . toEqual ( 3 ) ;
539
+
540
+ // pin the second row
541
+ grid . getRowByIndex ( 2 ) . pin ( ) ;
542
+ fix . detectChanges ( ) ;
543
+
544
+ expect ( grid . rowList . length ) . toEqual ( 7 ) ;
545
+ expect ( grid . perPage ) . toEqual ( 5 ) ;
546
+ expect ( paginator . perPage ) . toEqual ( 5 ) ;
547
+ expect ( paginator . totalRecords ) . toEqual ( 12 ) ;
548
+ expect ( paginator . totalPages ) . toEqual ( 3 ) ;
549
+ } ) ;
550
+
551
+ it ( 'should have the correct records shown for pages with pinned rows' , ( ) => {
552
+ grid . getRowByIndex ( 0 ) . pin ( ) ;
553
+ grid . getRowByIndex ( 1 ) . pin ( ) ;
554
+ fix . detectChanges ( ) ;
555
+
556
+ let rows = grid . rowList . toArray ( ) ;
557
+
558
+ [ 1 , 2 , 1 , 2 , 3 , 4 , 5 ] . forEach ( ( x , index ) => expect ( rows [ index ] . cells . first . value ) . toEqual ( x ) ) ;
559
+
560
+ grid . paginate ( 2 ) ;
561
+ fix . detectChanges ( ) ;
562
+
563
+ rows = grid . rowList . toArray ( ) ;
564
+
565
+ [ 1 , 2 , 11 , 12 ] . forEach ( ( x , index ) => expect ( rows [ index ] . cells . first . value ) . toEqual ( x ) ) ;
566
+ } ) ;
567
+ } ) ;
568
+
553
569
describe ( ' Editing ' , ( ) => {
554
570
beforeEach ( fakeAsync ( ( ) => {
555
571
fix = TestBed . createComponent ( GridRowPinningWithTransactionsComponent ) ;
@@ -628,6 +644,7 @@ describe('Row Pinning #grid', () => {
628
644
} ) ;
629
645
630
646
} ) ;
647
+
631
648
describe ( 'Row pinning with MRL' , ( ) => {
632
649
beforeEach ( fakeAsync ( ( ) => {
633
650
fix = TestBed . createComponent ( GridRowPinningWithMRLComponent ) ;
@@ -714,6 +731,7 @@ describe('Row Pinning #grid', () => {
714
731
verifyDOMMatchesLayoutSettings ( gridUnpinnedRow , fix . componentInstance . colGroups ) ;
715
732
} ) ;
716
733
} ) ;
734
+
717
735
describe ( ' Hiding' , ( ) => {
718
736
beforeEach ( fakeAsync ( ( ) => {
719
737
fix = TestBed . createComponent ( GridRowPinningComponent ) ;
@@ -773,11 +791,15 @@ describe('Row Pinning #grid', () => {
773
791
`
774
792
} )
775
793
export class GridRowPinningComponent {
776
- public data = SampleTestData . contactInfoDataFull ( ) ;
794
+ public data : any [ ] = SampleTestData . contactInfoDataFull ( ) ;
777
795
public pinningConfig : IPinningConfig = { columns : ColumnPinningPosition . Start , rows : RowPinningPosition . Top } ;
778
796
779
797
@ViewChild ( IgxGridComponent , { read : IgxGridComponent , static : true } )
780
798
public instance : IgxGridComponent ;
799
+
800
+ public createSimpleData ( count : number ) {
801
+ this . data = Array ( count ) . fill ( { } ) . map ( ( x , idx ) => x = { 'idx' : idx + 1 } ) ;
802
+ }
781
803
}
782
804
783
805
@Component ( {
@@ -823,7 +845,7 @@ export class GridRowPinningWithMRLComponent extends GridRowPinningComponent {
823
845
</ng-template>
824
846
</igx-grid>`
825
847
} )
826
- export class GridRowPinningWithMDVComponent extends GridRowPinningComponent { }
848
+ export class GridRowPinningWithMDVComponent extends GridRowPinningComponent { }
827
849
828
850
829
851
@Component ( {
@@ -839,4 +861,4 @@ export class GridRowPinningWithMDVComponent extends GridRowPinningComponent {}
839
861
` ,
840
862
providers : [ { provide : IgxGridTransaction , useClass : IgxTransactionService } ]
841
863
} )
842
- export class GridRowPinningWithTransactionsComponent extends GridRowPinningComponent { }
864
+ export class GridRowPinningWithTransactionsComponent extends GridRowPinningComponent { }
0 commit comments