@@ -633,6 +633,106 @@ describe('ReactFabric', () => {
633
633
expect ( touchStart2 ) . toBeCalled ( ) ;
634
634
} ) ;
635
635
636
+ describe ( 'skipBubbling' , ( ) => {
637
+ it ( 'should skip bubbling to ancestor if specified' , ( ) => {
638
+ const View = createReactNativeComponentClass ( 'RCTView' , ( ) => ( {
639
+ validAttributes : { } ,
640
+ uiViewClassName : 'RCTView' ,
641
+ bubblingEventTypes : {
642
+ topDefaultBubblingEvent : {
643
+ phasedRegistrationNames : {
644
+ captured : 'onDefaultBubblingEventCapture' ,
645
+ bubbled : 'onDefaultBubblingEvent' ,
646
+ } ,
647
+ } ,
648
+ topBubblingEvent : {
649
+ phasedRegistrationNames : {
650
+ captured : 'onBubblingEventCapture' ,
651
+ bubbled : 'onBubblingEvent' ,
652
+ skipBubbling : false ,
653
+ } ,
654
+ } ,
655
+ topSkipBubblingEvent : {
656
+ phasedRegistrationNames : {
657
+ captured : 'onSkippedBubblingEventCapture' ,
658
+ bubbled : 'onSkippedBubblingEvent' ,
659
+ skipBubbling : true ,
660
+ } ,
661
+ } ,
662
+ } ,
663
+ } ) ) ;
664
+ const ancestorBubble = jest . fn ( ) ;
665
+ const ancestorCapture = jest . fn ( ) ;
666
+ const targetBubble = jest . fn ( ) ;
667
+ const targetCapture = jest . fn ( ) ;
668
+
669
+ const event = { } ;
670
+
671
+ act ( ( ) => {
672
+ ReactFabric . render (
673
+ < View
674
+ onSkippedBubblingEventCapture = { ancestorCapture }
675
+ onDefaultBubblingEventCapture = { ancestorCapture }
676
+ onBubblingEventCapture = { ancestorCapture }
677
+ onSkippedBubblingEvent = { ancestorBubble }
678
+ onDefaultBubblingEvent = { ancestorBubble }
679
+ onBubblingEvent = { ancestorBubble } >
680
+ < View
681
+ onSkippedBubblingEventCapture = { targetCapture }
682
+ onDefaultBubblingEventCapture = { targetCapture }
683
+ onBubblingEventCapture = { targetCapture }
684
+ onSkippedBubblingEvent = { targetBubble }
685
+ onDefaultBubblingEvent = { targetBubble }
686
+ onBubblingEvent = { targetBubble }
687
+ />
688
+ </ View > ,
689
+ 11 ,
690
+ ) ;
691
+ } ) ;
692
+
693
+ expect ( nativeFabricUIManager . createNode . mock . calls . length ) . toBe ( 2 ) ;
694
+ expect ( nativeFabricUIManager . registerEventHandler . mock . calls . length ) . toBe (
695
+ 1 ,
696
+ ) ;
697
+ const [
698
+ ,
699
+ ,
700
+ ,
701
+ ,
702
+ childInstance ,
703
+ ] = nativeFabricUIManager . createNode . mock . calls [ 0 ] ;
704
+ const [
705
+ dispatchEvent ,
706
+ ] = nativeFabricUIManager . registerEventHandler . mock . calls [ 0 ] ;
707
+
708
+ dispatchEvent ( childInstance , 'topDefaultBubblingEvent' , event ) ;
709
+ expect ( targetBubble ) . toHaveBeenCalledTimes ( 1 ) ;
710
+ expect ( targetCapture ) . toHaveBeenCalledTimes ( 1 ) ;
711
+ expect ( ancestorCapture ) . toHaveBeenCalledTimes ( 1 ) ;
712
+ expect ( ancestorBubble ) . toHaveBeenCalledTimes ( 1 ) ;
713
+ ancestorBubble . mockReset ( ) ;
714
+ ancestorCapture . mockReset ( ) ;
715
+ targetBubble . mockReset ( ) ;
716
+ targetCapture . mockReset ( ) ;
717
+
718
+ dispatchEvent ( childInstance , 'topBubblingEvent' , event ) ;
719
+ expect ( targetBubble ) . toHaveBeenCalledTimes ( 1 ) ;
720
+ expect ( targetCapture ) . toHaveBeenCalledTimes ( 1 ) ;
721
+ expect ( ancestorCapture ) . toHaveBeenCalledTimes ( 1 ) ;
722
+ expect ( ancestorBubble ) . toHaveBeenCalledTimes ( 1 ) ;
723
+ ancestorBubble . mockReset ( ) ;
724
+ ancestorCapture . mockReset ( ) ;
725
+ targetBubble . mockReset ( ) ;
726
+ targetCapture . mockReset ( ) ;
727
+
728
+ dispatchEvent ( childInstance , 'topSkipBubblingEvent' , event ) ;
729
+ expect ( targetBubble ) . toHaveBeenCalledTimes ( 1 ) ;
730
+ expect ( targetCapture ) . toHaveBeenCalledTimes ( 1 ) ;
731
+ expect ( ancestorCapture ) . toHaveBeenCalledTimes ( 1 ) ;
732
+ expect ( ancestorBubble ) . not . toBeCalled ( ) ;
733
+ } ) ;
734
+ } ) ;
735
+
636
736
it ( 'dispatches event with target as instance' , ( ) => {
637
737
const View = createReactNativeComponentClass ( 'RCTView' , ( ) => ( {
638
738
validAttributes : {
0 commit comments