MOBILE-2915 split: Fix call split push too soon
parent
c0697e4436
commit
08d7d6e1f9
|
@ -49,7 +49,7 @@ export class CoreSplitViewComponent implements OnInit, OnDestroy {
|
||||||
@ViewChild('menu') menu: Menu;
|
@ViewChild('menu') menu: Menu;
|
||||||
@Input() when?: string | boolean = 'md';
|
@Input() when?: string | boolean = 'md';
|
||||||
|
|
||||||
protected isEnabled = false;
|
protected isEnabled;
|
||||||
protected masterPageName = '';
|
protected masterPageName = '';
|
||||||
protected masterPageIndex = 0;
|
protected masterPageIndex = 0;
|
||||||
protected loadDetailPage: any = false;
|
protected loadDetailPage: any = false;
|
||||||
|
@ -174,7 +174,7 @@ export class CoreSplitViewComponent implements OnInit, OnDestroy {
|
||||||
* @return {boolean} If split view is enabled.
|
* @return {boolean} If split view is enabled.
|
||||||
*/
|
*/
|
||||||
isOn(): boolean {
|
isOn(): boolean {
|
||||||
return this.isEnabled;
|
return !!this.isEnabled;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -182,8 +182,15 @@ export class CoreSplitViewComponent implements OnInit, OnDestroy {
|
||||||
*
|
*
|
||||||
* @param {any} page The component class or deeplink name you want to push onto the navigation stack.
|
* @param {any} page The component class or deeplink name you want to push onto the navigation stack.
|
||||||
* @param {any} params Any NavParams you want to pass along to the next view.
|
* @param {any} params Any NavParams you want to pass along to the next view.
|
||||||
|
* @param {boolean} [retrying] Whether it's retrying.
|
||||||
*/
|
*/
|
||||||
push(page: any, params?: any): void {
|
push(page: any, params?: any, retrying?: boolean): void {
|
||||||
|
if (typeof this.isEnabled == 'undefined' && !retrying) {
|
||||||
|
// Hasn't calculated if it's enabled yet. Wait a bit and try again.
|
||||||
|
setTimeout(() => {
|
||||||
|
this.push(page, params, true);
|
||||||
|
}, 200);
|
||||||
|
} else {
|
||||||
if (this.isEnabled) {
|
if (this.isEnabled) {
|
||||||
this.detailNav.setRoot(page, params);
|
this.detailNav.setRoot(page, params);
|
||||||
} else {
|
} else {
|
||||||
|
@ -194,6 +201,7 @@ export class CoreSplitViewComponent implements OnInit, OnDestroy {
|
||||||
this.masterNav.push(page, params);
|
this.masterNav.push(page, params);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set the details panel to default info.
|
* Set the details panel to default info.
|
||||||
|
|
Loading…
Reference in New Issue