@@ -2,6 +2,7 @@ import {act, renderHook} from '@testing-library/react-hooks'
2
2
import testUtils from '../lib/test-utils'
3
3
import { useComment , useComments , useReplies , useValidateComment , setPlebbitJs } from '..'
4
4
import commentsStore from '../stores/comments'
5
+ import repliesCommentsStore from '../stores/replies/replies-comments-store'
5
6
import subplebbitsPagesStore from '../stores/subplebbits-pages'
6
7
import PlebbitJsMock , { Plebbit , Comment , Pages , simulateLoadingTime } from '../lib/plebbit-js/plebbit-js-mock'
7
8
import utils from '../lib/utils'
@@ -339,7 +340,11 @@ describe('comment replies', () => {
339
340
let rendered , waitFor , scrollOnePage
340
341
341
342
beforeEach ( ( ) => {
342
- rendered = renderHook < any , any > ( ( useRepliesOptions ) => useReplies ( useRepliesOptions ) )
343
+ rendered = renderHook < any , any > ( ( useRepliesOptions ) => {
344
+ // useReplies accepts only 'comment', but for ease of use also accept a 'commentCid' in the tests
345
+ const comment = useComment ( { commentCid : useRepliesOptions ?. commentCid } )
346
+ return useReplies ( { ...useRepliesOptions , commentCid : undefined , comment : useRepliesOptions ?. comment || comment } )
347
+ } )
343
348
waitFor = testUtils . createWaitFor ( rendered )
344
349
scrollOnePage = scrollOnePage = async ( ) => {
345
350
const nextFeedLength = ( rendered . result . current . replies ?. length || 0 ) + repliesPerPage
@@ -383,6 +388,48 @@ describe('comment replies', () => {
383
388
expect ( rendered . result . current . hasMore ) . toBe ( true )
384
389
} )
385
390
391
+ test ( 'sort type new, switch to sort type old, switch to different comment (comment argument)' , async ( ) => {
392
+ expect ( rendered . result . current . replies ) . toEqual ( [ ] )
393
+
394
+ const createMockComment = ( comment ) => {
395
+ comment . timestamp = 1
396
+ comment . updatedAt = 2
397
+ comment . replies = {
398
+ pages : { best : new Pages ( { comment} ) . pageToGet ( comment . cid + ' page cid best' ) } ,
399
+ pageCids : {
400
+ new : comment . cid + ' page cid new' ,
401
+ newFlat : comment . cid + ' page cid newFlat' ,
402
+ old : comment . cid + ' page cid old' ,
403
+ oldFlat : comment . cid + ' page cid oldFlat' ,
404
+ } ,
405
+ }
406
+ return comment
407
+ }
408
+
409
+ const commentAbc = createMockComment ( { cid : 'comment cid abc' , subplebbitAddress : 'subplebbit address 1' } )
410
+ rendered . rerender ( { comment : commentAbc , sortType : 'new' } )
411
+ await waitFor ( ( ) => rendered . result . current . replies . length === repliesPerPage )
412
+ expect ( rendered . result . current . replies . length ) . toBe ( repliesPerPage )
413
+ expect ( rendered . result . current . replies [ 0 ] . cid ) . toBe ( 'comment cid abc page cid new comment cid 100' )
414
+ expect ( rendered . result . current . replies [ 0 ] . timestamp ) . toBeGreaterThan ( rendered . result . current . replies [ repliesPerPage - 1 ] . timestamp )
415
+ expect ( rendered . result . current . hasMore ) . toBe ( true )
416
+
417
+ rendered . rerender ( { comment : commentAbc , sortType : 'old' } )
418
+ await waitFor ( ( ) => rendered . result . current . replies [ 0 ] . cid === 'comment cid abc page cid old comment cid 1' )
419
+ expect ( rendered . result . current . replies . length ) . toBe ( repliesPerPage )
420
+ expect ( rendered . result . current . replies [ 0 ] . cid ) . toBe ( 'comment cid abc page cid old comment cid 1' )
421
+ expect ( rendered . result . current . replies [ repliesPerPage - 1 ] . timestamp ) . toBeGreaterThan ( rendered . result . current . replies [ 0 ] . timestamp )
422
+ expect ( rendered . result . current . hasMore ) . toBe ( true )
423
+
424
+ const commentXyz = createMockComment ( { cid : 'comment cid xyz' , subplebbitAddress : 'subplebbit address 1' } )
425
+ rendered . rerender ( { comment : commentXyz , sortType : 'old' } )
426
+ await waitFor ( ( ) => rendered . result . current . replies [ 0 ] . cid === 'comment cid xyz page cid old comment cid 1' )
427
+ expect ( rendered . result . current . replies . length ) . toBe ( repliesPerPage )
428
+ expect ( rendered . result . current . replies [ 0 ] . cid ) . toBe ( 'comment cid xyz page cid old comment cid 1' )
429
+ expect ( rendered . result . current . replies [ repliesPerPage - 1 ] . timestamp ) . toBeGreaterThan ( rendered . result . current . replies [ 0 ] . timestamp )
430
+ expect ( rendered . result . current . hasMore ) . toBe ( true )
431
+ } )
432
+
386
433
test ( 'scroll pages' , async ( ) => {
387
434
expect ( rendered . result . current . replies ) . toEqual ( [ ] )
388
435
@@ -603,40 +650,6 @@ describe('comment replies', () => {
603
650
expect ( Object . keys ( repliesStore . getState ( ) . feedsOptions ) . length ) . toBe ( 2 )
604
651
} )
605
652
606
- test ( 'can useComment({onlyIfCached: true}) on a comment from replies pages' , async ( ) => {
607
- rendered = renderHook < any , any > ( ( { useCommentOptions, useRepliesOptions} ) => {
608
- const comment = useComment ( useCommentOptions )
609
- const replies = useReplies ( useRepliesOptions )
610
- return { comment, replies}
611
- } )
612
- waitFor = testUtils . createWaitFor ( rendered )
613
-
614
- const useRepliesOptions = {
615
- commentCid : 'comment cid 1' ,
616
- // the preloaded page is best
617
- sortType : 'best' ,
618
- // the preloaded page size is 100
619
- repliesPerPage : 200 ,
620
- }
621
- rendered . rerender ( { useRepliesOptions} )
622
- await waitFor ( ( ) => rendered . result . current . replies . replies . length === useRepliesOptions . repliesPerPage )
623
- expect ( rendered . result . current . replies . replies . length ) . toBe ( useRepliesOptions . repliesPerPage )
624
-
625
- // first reply (preloaded) is defined
626
- const firstCommentCid = rendered . result . current . replies . replies [ 0 ] . cid
627
- rendered . rerender ( { useRepliesOptions, useCommentOptions : { commentCid : firstCommentCid , onlyIfCached : true } } )
628
- await waitFor ( ( ) => typeof rendered . result . current . comment . updatedAt === 'number' )
629
- expect ( typeof rendered . result . current . comment . updatedAt ) . toBe ( 'number' )
630
- expect ( rendered . result . current . comment . cid ) . toBe ( firstCommentCid )
631
-
632
- // last reply (from a page) is defined
633
- const lastCommentCid = rendered . result . current . replies . replies [ useRepliesOptions . repliesPerPage - 1 ] . cid
634
- rendered . rerender ( { useRepliesOptions, useCommentOptions : { commentCid : lastCommentCid , onlyIfCached : true } } )
635
- await waitFor ( ( ) => typeof rendered . result . current . comment . updatedAt === 'number' )
636
- expect ( typeof rendered . result . current . comment . updatedAt ) . toBe ( 'number' )
637
- expect ( rendered . result . current . comment . cid ) . toBe ( lastCommentCid )
638
- } )
639
-
640
653
test . todo ( 'has account comments' , async ( ) => { } )
641
654
642
655
test . todo ( 'nested scroll pages' , async ( ) => { } )
@@ -718,7 +731,12 @@ describe('comment replies', () => {
718
731
let rendered , waitFor , scrollOnePage
719
732
720
733
beforeEach ( ( ) => {
721
- rendered = renderHook < any , any > ( ( useRepliesOptions ) => useReplies ( useRepliesOptions ) )
734
+ rendered = renderHook < any , any > ( ( useRepliesOptions ) => {
735
+ // useReplies accepts only 'comment', but for ease of use also accept a 'commentCid' in the tests
736
+ const comment = useComment ( { commentCid : useRepliesOptions ?. commentCid } )
737
+ return useReplies ( { ...useRepliesOptions , commentCid : undefined , comment : useRepliesOptions ?. comment || comment } )
738
+ } )
739
+
722
740
waitFor = testUtils . createWaitFor ( rendered )
723
741
scrollOnePage = scrollOnePage = async ( ) => {
724
742
const nextFeedLength = ( rendered . result . current . replies ?. length || 0 ) + repliesPerPage
@@ -1019,11 +1037,11 @@ describe('comment replies', () => {
1019
1037
1020
1038
// second comment update (updatedAt doesn't change, so shouldn't update)
1021
1039
comment . simulateUpdateEvent ( )
1022
- await waitFor ( ( ) => commentsStore . getState ( ) . comments [ 'comment cid 1' ] . replies . pages . best . comments [ 0 ] . upvoteCount === 2 )
1040
+ await waitFor ( ( ) => repliesCommentsStore . getState ( ) . comments [ 'comment cid 1' ] . replies . pages . best . comments [ 0 ] . upvoteCount === 2 )
1023
1041
expect ( pages . length ) . toBe ( 2 )
1024
1042
// comment in store updated, but the updatedAt didn't change so no change in useReplies().updatedReplies
1025
- expect ( commentsStore . getState ( ) . comments [ 'comment cid 1' ] . replies . pages . best . comments [ 0 ] . updatedAt ) . toBe ( 1 )
1026
- expect ( commentsStore . getState ( ) . comments [ 'comment cid 1' ] . replies . pages . best . comments [ 0 ] . upvoteCount ) . toBe ( 2 )
1043
+ expect ( repliesCommentsStore . getState ( ) . comments [ 'comment cid 1' ] . replies . pages . best . comments [ 0 ] . updatedAt ) . toBe ( 1 )
1044
+ expect ( repliesCommentsStore . getState ( ) . comments [ 'comment cid 1' ] . replies . pages . best . comments [ 0 ] . upvoteCount ) . toBe ( 2 )
1027
1045
expect ( rendered . result . current . replies . length ) . toBe ( 1 )
1028
1046
expect ( rendered . result . current . updatedReplies . length ) . toBe ( 1 )
1029
1047
expect ( rendered . result . current . replies [ 0 ] . cid ) . toBe ( 'comment cid 1' )
0 commit comments