1
1
import { patchState , signalStore , type } from '@ngrx/signals' ;
2
- import { createPageArray , gotoPage , setPageSize , withPagination } from './with-pagination' ;
2
+ import {
3
+ createPageArray ,
4
+ gotoPage ,
5
+ setPageSize ,
6
+ withPagination ,
7
+ } from './with-pagination' ;
3
8
import { setAllEntities , withEntities } from '@ngrx/signals/entities' ;
4
9
5
10
type Book = { id : number ; title : string ; author : string } ;
@@ -21,13 +26,13 @@ describe('withPagination', () => {
21
26
const store = new Store ( ) ;
22
27
23
28
patchState ( store , setAllEntities ( generateBooks ( 55 ) ) ) ;
24
- expect ( store . currentPage ( ) ) . toBe ( 1 ) ;
29
+ expect ( store . currentPage ( ) ) . toBe ( 0 ) ;
25
30
expect ( store . pageCount ( ) ) . toBe ( 6 ) ;
26
31
} ) ,
27
32
it ( 'should use and update a pagination with collection' , ( ) => {
28
33
const Store = signalStore (
29
34
withEntities ( { entity : type < Book > ( ) , collection : 'books' } ) ,
30
- withPagination ( { collection : 'books' } )
35
+ withPagination ( { entity : type < Book > ( ) , collection : 'books' } )
31
36
) ;
32
37
33
38
const store = new Store ( ) ;
@@ -37,41 +42,30 @@ describe('withPagination', () => {
37
42
setAllEntities ( generateBooks ( 55 ) , { collection : 'books' } )
38
43
) ;
39
44
40
- patchState ( store , gotoPage ( 6 , { collection : 'books' } ) ) ;
41
- expect ( store . booksCurrentPage ( ) ) . toBe ( 6 ) ;
45
+ patchState ( store , gotoPage ( 5 , { collection : 'books' } ) ) ;
46
+ expect ( store . booksCurrentPage ( ) ) . toBe ( 5 ) ;
42
47
expect ( store . selectedPageBooksEntities ( ) . length ) . toBe ( 5 ) ;
43
48
expect ( store . booksPageCount ( ) ) . toBe ( 6 ) ;
44
49
} ) ,
45
50
it ( 'should react on enitiy changes' , ( ) => {
46
51
const Store = signalStore (
47
- withEntities ( { entity : type < Book > ( ) } ) ,
52
+ withEntities ( { entity : type < Book > ( ) } ) ,
48
53
withPagination ( )
49
54
) ;
50
55
51
56
const store = new Store ( ) ;
52
57
53
- patchState (
54
- store ,
55
- setAllEntities ( generateBooks ( 100 ) )
56
- ) ;
58
+ patchState ( store , setAllEntities ( generateBooks ( 100 ) ) ) ;
57
59
58
60
expect ( store . pageCount ( ) ) . toBe ( 10 ) ;
59
61
60
- patchState (
61
- store ,
62
- setAllEntities ( generateBooks ( 20 ) )
63
- ) ;
62
+ patchState ( store , setAllEntities ( generateBooks ( 20 ) ) ) ;
64
63
65
64
expect ( store . pageCount ( ) ) . toBe ( 2 ) ;
66
65
67
-
68
- patchState (
69
- store ,
70
- setPageSize ( 5 )
71
- ) ;
66
+ patchState ( store , setPageSize ( 5 ) ) ;
72
67
73
68
expect ( store . pageCount ( ) ) . toBe ( 4 ) ;
74
-
75
69
} ) ,
76
70
describe ( 'internal pageNavigationArray' , ( ) => {
77
71
it ( 'should return an array of page numbers' , ( ) => {
0 commit comments