I designed an element on the main page of my app that, when clicked, changes the active tab.
I used to do the following:
events.subscribe('change-tab', (tab, filterOnSport) => {
console.log('TabsPage#constructor - change-tab event received with params: ', tab, filterOnSport);
if (filterOnSport) this.findTabParams.filterOnSport = filterOnSport;
this.tabs.select(tab);
});
But this doesn't work the first time around, if the said tab has never been visited (see https://github.com/ionic-team/ionic/issues/12592)
I saw in the Github issue that someone suggested to simulate a click on the tab.
I am trying to use ViewChild
to do so but can't manage to make it work.
// View
<ion-tabs #tabs>
<ion-tab [root]="tab1Root" tabIcon="home"></ion-tab>
<ion-tab #findTab [root]="tab2Root" [rootParams]="findTabParams" tabIcon="search"></ion-tab>
<ion-tab [root]="tab3Root" tabIcon="chatbubbles" [tabBadge]="unread?1:null" [tabsHideOnSubPages]=true></ion-tab>
<!--<ion-tab [root]="tab3Root" tabIcon="chatbubbles" [tabBadge]="totalUnreadMessages?.$value" [tabsHideOnSubPages]=true></ion-tab>-->
</ion-tabs>
// Controller
@ViewChild('findTab') findTab: ElementRef;
...
ngAfterViewInit() {
console.log('TAB elem ', this.findTab);
// How click the tab ?
}
How could I trigger the click function of the tab?
Take a look at this plunkr: https://plnkr.co/edit/KBWa5YbFCYYVQI97ACRQ?p=preview