@@ -85,11 +85,11 @@ test('filters elements', withServer, async (t, server, got) => {
85
85
86
86
const result = await got . paginate . all < number > ( {
87
87
pagination : {
88
- filter : ( element : number , allItems : number [ ] , currentItems : number [ ] ) => {
88
+ filter : ( { item , allItems, currentItems} ) => {
89
89
t . true ( Array . isArray ( allItems ) ) ;
90
90
t . true ( Array . isArray ( currentItems ) ) ;
91
91
92
- return element !== 2 ;
92
+ return item !== 2 ;
93
93
}
94
94
}
95
95
} ) ;
@@ -126,7 +126,7 @@ test('custom paginate function', withServer, async (t, server, got) => {
126
126
127
127
const result = await got . paginate . all < number > ( {
128
128
pagination : {
129
- paginate : response => {
129
+ paginate : ( { response} ) => {
130
130
const url = new URL ( response . url ) ;
131
131
132
132
if ( url . search === '?page=3' ) {
@@ -148,13 +148,14 @@ test('custom paginate function using allItems', withServer, async (t, server, go
148
148
149
149
const result = await got . paginate . all < number > ( {
150
150
pagination : {
151
- paginate : ( _response , allItems : number [ ] ) => {
151
+ paginate : ( { allItems} ) => {
152
152
if ( allItems . length === 2 ) {
153
153
return false ;
154
154
}
155
155
156
156
return { path : '/?page=3' } ;
157
- }
157
+ } ,
158
+ stackAllItems : true
158
159
}
159
160
} ) ;
160
161
@@ -166,7 +167,7 @@ test('custom paginate function using currentItems', withServer, async (t, server
166
167
167
168
const result = await got . paginate . all < number > ( {
168
169
pagination : {
169
- paginate : ( _response , _allItems : number [ ] , currentItems : number [ ] ) => {
170
+ paginate : ( { currentItems} ) => {
170
171
if ( currentItems [ 0 ] === 3 ) {
171
172
return false ;
172
173
}
@@ -208,7 +209,7 @@ test('`shouldContinue` works', withServer, async (t, server, got) => {
208
209
209
210
const options = {
210
211
pagination : {
211
- shouldContinue : ( _item : unknown , allItems : unknown [ ] , currentItems : unknown [ ] ) => {
212
+ shouldContinue : ( { allItems , currentItems } : { allItems : number [ ] ; currentItems : number [ ] } ) => {
212
213
t . true ( Array . isArray ( allItems ) ) ;
213
214
t . true ( Array . isArray ( currentItems ) ) ;
214
215
@@ -357,7 +358,7 @@ test('`hooks` are not duplicated', withServer, async (t, server, got) => {
357
358
358
359
const result = await got . paginate . all < number > ( {
359
360
pagination : {
360
- paginate : response => {
361
+ paginate : ( { response} ) => {
361
362
if ( ( response . body as string ) === '[3]' ) {
362
363
return false ; // Stop after page 3
363
364
}
@@ -485,21 +486,21 @@ test('`stackAllItems` set to true', withServer, async (t, server, got) => {
485
486
const result = await got . paginate . all < number > ( {
486
487
pagination : {
487
488
stackAllItems : true ,
488
- filter : ( _item , allItems , _currentItems ) => {
489
+ filter : ( { allItems} ) => {
489
490
t . is ( allItems . length , itemCount ) ;
490
491
491
492
return true ;
492
493
} ,
493
- shouldContinue : ( _item , allItems , _currentItems ) => {
494
+ shouldContinue : ( { allItems} ) => {
494
495
t . is ( allItems . length , itemCount ) ;
495
496
496
497
return true ;
497
498
} ,
498
- paginate : ( response , allItems , currentItems ) => {
499
+ paginate : ( { response, allItems, currentItems} ) => {
499
500
itemCount += 1 ;
500
501
t . is ( allItems . length , itemCount ) ;
501
502
502
- return got . defaults . options . pagination ! . paginate ( response , allItems , currentItems ) ;
503
+ return got . defaults . options . pagination ! . paginate ( { response, allItems, currentItems} ) ;
503
504
}
504
505
}
505
506
} ) ;
@@ -513,20 +514,20 @@ test('`stackAllItems` set to false', withServer, async (t, server, got) => {
513
514
const result = await got . paginate . all < number > ( {
514
515
pagination : {
515
516
stackAllItems : false ,
516
- filter : ( _item , allItems , _currentItems ) => {
517
+ filter : ( { allItems} ) => {
517
518
t . is ( allItems . length , 0 ) ;
518
519
519
520
return true ;
520
521
} ,
521
- shouldContinue : ( _item , allItems , _currentItems ) => {
522
+ shouldContinue : ( { allItems} ) => {
522
523
t . is ( allItems . length , 0 ) ;
523
524
524
525
return true ;
525
526
} ,
526
- paginate : ( response , allItems , currentItems ) => {
527
+ paginate : ( { response, allItems, currentItems} ) => {
527
528
t . is ( allItems . length , 0 ) ;
528
529
529
- return got . defaults . options . pagination ! . paginate ( response , allItems , currentItems ) ;
530
+ return got . defaults . options . pagination ! . paginate ( { response, allItems, currentItems} ) ;
530
531
}
531
532
}
532
533
} ) ;
@@ -559,7 +560,7 @@ test('next url in json response', withServer, async (t, server, got) => {
559
560
transform : ( response : Response < Page > ) => {
560
561
return [ response . body . currentUrl ] ;
561
562
} ,
562
- paginate : ( response : Response < Page > ) => {
563
+ paginate : ( { response} ) => {
563
564
const { next} = response . body ;
564
565
565
566
if ( ! next ) {
@@ -608,7 +609,7 @@ test('pagination using searchParams', withServer, async (t, server, got) => {
608
609
transform : ( response : Response < Page > ) => {
609
610
return [ response . body . currentUrl ] ;
610
611
} ,
611
- paginate : ( response : Response < Page > ) => {
612
+ paginate : ( { response} ) => {
612
613
const { next} = response . body ;
613
614
const previousPage = Number ( response . request . options . searchParams ! . get ( 'page' ) ) ;
614
615
@@ -664,7 +665,7 @@ test('pagination using extended searchParams', withServer, async (t, server, got
664
665
transform : ( response : Response < Page > ) => {
665
666
return [ response . body . currentUrl ] ;
666
667
} ,
667
- paginate : ( response : Response < Page > ) => {
668
+ paginate : ( { response} ) => {
668
669
const { next} = response . body ;
669
670
const previousPage = Number ( response . request . options . searchParams ! . get ( 'page' ) ) ;
670
671
0 commit comments