Fixed right layout and state name propagation in mobile mode, skip popover/dialog dashboard changes.
This commit is contained in:
parent
715eefa6d0
commit
eda4e0f761
@ -345,6 +345,7 @@ export class DashboardPageComponent extends PageComponent implements IDashboardC
|
||||
this.runChangeDetection();
|
||||
}
|
||||
));
|
||||
if (this.syncStateWithQueryParam) {
|
||||
this.rxSubscriptions.push(this.route.queryParamMap.subscribe(
|
||||
(paramMap) => {
|
||||
if (paramMap.has('reload')) {
|
||||
@ -356,13 +357,14 @@ export class DashboardPageComponent extends PageComponent implements IDashboardC
|
||||
}
|
||||
}
|
||||
));
|
||||
}
|
||||
this.rxSubscriptions.push(this.breakpointObserver
|
||||
.observe(MediaBreakpoints['gt-sm'])
|
||||
.subscribe((state: BreakpointState) => {
|
||||
this.isMobile = !state.matches;
|
||||
}
|
||||
));
|
||||
if (this.isMobileApp) {
|
||||
if (this.isMobileApp && this.syncStateWithQueryParam) {
|
||||
this.mobileService.registerToggleLayoutFunction(() => {
|
||||
setTimeout(() => {
|
||||
this.toggleLayouts();
|
||||
@ -464,7 +466,7 @@ export class DashboardPageComponent extends PageComponent implements IDashboardC
|
||||
}
|
||||
|
||||
ngOnDestroy(): void {
|
||||
if (this.isMobileApp) {
|
||||
if (this.isMobileApp && this.syncStateWithQueryParam) {
|
||||
this.mobileService.unregisterToggleLayoutFunction();
|
||||
}
|
||||
this.rxSubscriptions.forEach((subscription) => {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user