@@ -374,54 +374,69 @@ export class Tabs extends Ion implements AfterViewInit {
374
374
return ;
375
375
}
376
376
377
- const deselectedTab = this . getSelected ( ) ;
378
- if ( selectedTab === deselectedTab ) {
379
- // no change
377
+ // If the selected tab is the current selected tab, we do not switch
378
+ const currentTab = this . getSelected ( ) ;
379
+ if ( selectedTab === currentTab ) {
380
380
return this . _touchActive ( selectedTab ) ;
381
381
}
382
382
383
- let deselectedPage : ViewController ;
384
- if ( deselectedTab ) {
385
- deselectedPage = deselectedTab . getActive ( ) ;
386
- deselectedPage && deselectedPage . _willLeave ( false ) ;
383
+ // If the selected tab does not have a root, we do not switch (#9392)
384
+ // it's possible the tab is only for opening modal's or signing out
385
+ // and doesn't actually have content. In the case there's no content
386
+ // for a tab then do nothing and leave the current view as is
387
+ if ( ! selectedTab . root ) {
388
+ selectedTab . ionSelect . emit ( selectedTab ) ;
389
+ this . ionChange . emit ( selectedTab ) ;
390
+ return ;
387
391
}
388
392
389
- opts . animate = false ;
393
+ // At this point we are going to perform a page switch
394
+ // Let's fire willLeave in the current tab page
395
+ let currentPage : ViewController ;
396
+ if ( currentTab ) {
397
+ currentPage = currentTab . getActive ( ) ;
398
+ currentPage && currentPage . _willLeave ( false ) ;
399
+ }
390
400
401
+ // Fire willEnter in the new selected tab
391
402
const selectedPage = selectedTab . getActive ( ) ;
392
403
selectedPage && selectedPage . _willEnter ( ) ;
393
404
394
- selectedTab . load ( opts , ( alreadyLoaded : boolean ) => {
395
- selectedTab . ionSelect . emit ( selectedTab ) ;
396
- this . ionChange . emit ( selectedTab ) ;
405
+ // Let's start the transition
406
+ opts . animate = false ;
407
+ selectedTab . load ( opts , ( ) => {
408
+ if ( opts . updateUrl !== false ) {
409
+ this . _linker . navChange ( DIRECTION_SWITCH ) ;
410
+ }
411
+ this . _tabSwitchEnd ( selectedTab , selectedPage , currentPage ) ;
412
+ } ) ;
413
+ }
397
414
398
- if ( selectedTab . root ) {
399
- // only show the selectedTab if it has a root
400
- // it's possible the tab is only for opening modal's or signing out
401
- // and doesn't actually have content. In the case there's no content
402
- // for a tab then do nothing and leave the current view as is
403
- this . _tabs . forEach ( tab => {
404
- tab . setSelected ( tab === selectedTab ) ;
405
- } ) ;
406
-
407
- if ( this . tabsHighlight ) {
408
- this . _highlight . select ( selectedTab ) ;
409
- }
415
+ _tabSwitchEnd ( selectedTab : Tab , selectedPage : ViewController , currentPage : ViewController ) {
416
+ selectedTab . ionSelect . emit ( selectedTab ) ;
417
+ this . ionChange . emit ( selectedTab ) ;
410
418
411
- if ( opts . updateUrl !== false ) {
412
- this . _linker . navChange ( DIRECTION_SWITCH ) ;
413
- }
414
- }
419
+ // Update tabs selection state
420
+ const tabs = this . _tabs ;
421
+ let tab : Tab ;
422
+ for ( var i = 0 ; i < tabs . length ; i ++ ) {
423
+ tab = tabs [ i ] ;
424
+ tab . setSelected ( tab === selectedTab ) ;
425
+ }
426
+
427
+ if ( this . tabsHighlight ) {
428
+ this . _highlight . select ( selectedTab ) ;
429
+ }
415
430
416
- selectedPage && selectedPage . _didEnter ( ) ;
417
- deselectedPage && deselectedPage . _didLeave ( ) ;
431
+ // Fire didEnter/didLeave lifecycle events
432
+ selectedPage && selectedPage . _didEnter ( ) ;
433
+ currentPage && currentPage . _didLeave ( ) ;
418
434
419
- // track the order of which tabs have been selected, by their index
420
- // do not track if the tab index is the same as the previous
421
- if ( this . _selectHistory [ this . _selectHistory . length - 1 ] !== selectedTab . id ) {
422
- this . _selectHistory . push ( selectedTab . id ) ;
423
- }
424
- } ) ;
435
+ // track the order of which tabs have been selected, by their index
436
+ // do not track if the tab index is the same as the previous
437
+ if ( this . _selectHistory [ this . _selectHistory . length - 1 ] !== selectedTab . id ) {
438
+ this . _selectHistory . push ( selectedTab . id ) ;
439
+ }
425
440
}
426
441
427
442
/**
0 commit comments