UI: Fixed incorrect calculate width when used right layout dashboard

This commit is contained in:
Vladyslav_Prykhodko 2022-12-28 12:22:04 +02:00
parent fc796a45f4
commit 16eb835d46
2 changed files with 50 additions and 26 deletions

View File

@ -168,9 +168,9 @@
[ngClass]="{ 'tb-shrinked' : isEditingWidget }"> [ngClass]="{ 'tb-shrinked' : isEditingWidget }">
<mat-drawer *ngIf="layouts.right.show" <mat-drawer *ngIf="layouts.right.show"
id="tb-right-layout" id="tb-right-layout"
[ngStyle]="{minWidth: rightLayoutWidth(), [ngStyle]="{minWidth: rightLayoutSize.width,
maxWidth: rightLayoutWidth(), maxWidth: rightLayoutSize.width,
height: rightLayoutHeight(), height: rightLayoutSize.height,
borderLeft: 'none'}" borderLeft: 'none'}"
disableClose="true" disableClose="true"
[@.disabled]="!isMobile" [@.disabled]="!isMobile"
@ -191,8 +191,8 @@
</mat-drawer> </mat-drawer>
<mat-drawer-content [fxShow]="layouts.main.show" <mat-drawer-content [fxShow]="layouts.main.show"
id="tb-main-layout" id="tb-main-layout"
[ngStyle]="{width: mainLayoutWidth(), [ngStyle]="{width: mainLayoutSize.width,
height: mainLayoutHeight()}"> height: mainLayoutSize.height}">
<tb-dashboard-layout <tb-dashboard-layout
[dashboardCheatSheet]="cheatSheetComponent" [dashboardCheatSheet]="cheatSheetComponent"
[layoutCtx]="layouts.main.layoutCtx" [layoutCtx]="layouts.main.layoutCtx"

View File

@ -15,6 +15,7 @@
/// ///
import { import {
AfterViewInit,
ChangeDetectionStrategy, ChangeDetectionStrategy,
ChangeDetectorRef, ChangeDetectorRef,
Component, Component,
@ -56,7 +57,8 @@ import { WINDOW } from '@core/services/window.service';
import { WindowMessage } from '@shared/models/window-message.model'; import { WindowMessage } from '@shared/models/window-message.model';
import { deepClone, guid, isDefined, isDefinedAndNotNull, isNotEmptyStr } from '@app/core/utils'; import { deepClone, guid, isDefined, isDefinedAndNotNull, isNotEmptyStr } from '@app/core/utils';
import { import {
DashboardContext, DashboardPageInitData, DashboardContext,
DashboardPageInitData,
DashboardPageLayout, DashboardPageLayout,
DashboardPageLayoutContext, DashboardPageLayoutContext,
DashboardPageLayouts, DashboardPageLayouts,
@ -157,7 +159,7 @@ import { TbPopoverComponent } from '@shared/components/popover.component';
encapsulation: ViewEncapsulation.None, encapsulation: ViewEncapsulation.None,
changeDetection: ChangeDetectionStrategy.OnPush changeDetection: ChangeDetectionStrategy.OnPush
}) })
export class DashboardPageComponent extends PageComponent implements IDashboardController, OnInit, OnDestroy { export class DashboardPageComponent extends PageComponent implements IDashboardController, OnInit, AfterViewInit, OnDestroy {
authState: AuthState = getCurrentAuthState(this.store); authState: AuthState = getCurrentAuthState(this.store);
@ -244,9 +246,14 @@ export class DashboardPageComponent extends PageComponent implements IDashboardC
addingLayoutCtx: DashboardPageLayoutContext; addingLayoutCtx: DashboardPageLayoutContext;
mainLayoutSize: {width: string; height: string} = {width: '100%', height: '100%'};
rightLayoutSize: {width: string; height: string} = {width: '100%', height: '100%'};
private dashboardLogoCache: SafeUrl; private dashboardLogoCache: SafeUrl;
private defaultDashboardLogo = 'assets/logo_title_white.svg'; private defaultDashboardLogo = 'assets/logo_title_white.svg';
private dashboardResize$: ResizeObserver;
dashboardCtx: DashboardContext = { dashboardCtx: DashboardContext = {
instanceId: this.utils.guid(), instanceId: this.utils.guid(),
getDashboard: () => this.dashboard, getDashboard: () => this.dashboard,
@ -402,6 +409,7 @@ export class DashboardPageComponent extends PageComponent implements IDashboardC
.observe(MediaBreakpoints['gt-sm']) .observe(MediaBreakpoints['gt-sm'])
.subscribe((state: BreakpointState) => { .subscribe((state: BreakpointState) => {
this.isMobile = !state.matches; this.isMobile = !state.matches;
this.updateLayoutSizes();
} }
)); ));
if (this.isMobileApp && this.syncStateWithQueryParam) { if (this.isMobileApp && this.syncStateWithQueryParam) {
@ -414,6 +422,13 @@ export class DashboardPageComponent extends PageComponent implements IDashboardC
} }
} }
ngAfterViewInit() {
this.dashboardResize$ = new ResizeObserver(() => {
this.updateLayoutSizes();
});
this.dashboardResize$.observe(this.dashboardContainer.nativeElement);
}
private init(data: DashboardPageInitData) { private init(data: DashboardPageInitData) {
this.reset(); this.reset();
@ -537,6 +552,9 @@ export class DashboardPageComponent extends PageComponent implements IDashboardC
subscription.unsubscribe(); subscription.unsubscribe();
}); });
this.rxSubscriptions.length = 0; this.rxSubscriptions.length = 0;
if (this.dashboardResize$) {
this.dashboardResize$.disconnect();
}
} }
public runChangeDetection() { public runChangeDetection() {
@ -672,34 +690,45 @@ export class DashboardPageComponent extends PageComponent implements IDashboardC
public toggleLayouts() { public toggleLayouts() {
this.isRightLayoutOpened = !this.isRightLayoutOpened; this.isRightLayoutOpened = !this.isRightLayoutOpened;
this.mobileService.onDashboardRightLayoutChanged(this.isRightLayoutOpened); this.mobileService.onDashboardRightLayoutChanged(this.isRightLayoutOpened);
this.updateLayoutSizes();
} }
public openRightLayout() { public openRightLayout() {
this.isRightLayoutOpened = true; this.isRightLayoutOpened = true;
this.mobileService.onDashboardRightLayoutChanged(this.isRightLayoutOpened); this.mobileService.onDashboardRightLayoutChanged(this.isRightLayoutOpened);
this.updateLayoutSizes();
} }
public mainLayoutWidth(): string { private updateLayoutSizes() {
if (this.dashboardCtx.state) {
this.updateMainLayoutSize();
this.updateRightLayoutSize();
}
}
private updateMainLayoutSize() {
if (this.isEditingWidget && this.editingLayoutCtx.id === 'main') { if (this.isEditingWidget && this.editingLayoutCtx.id === 'main') {
return '100%'; this.mainLayoutSize.width = '100%';
} else { } else {
return this.layouts.right.show && !this.isMobile ? this.calculateWidth('main') : '100%'; this.mainLayoutSize.width = this.layouts.right.show && !this.isMobile ? this.calculateWidth('main') : '100%';
} }
}
public mainLayoutHeight(): string {
if (!this.isEditingWidget || this.editingLayoutCtx.id === 'main') { if (!this.isEditingWidget || this.editingLayoutCtx.id === 'main') {
return '100%'; this.mainLayoutSize.height = '100%';
} else { } else {
return '0px'; this.mainLayoutSize.height = '0px';
} }
} }
public rightLayoutWidth(): string { private updateRightLayoutSize() {
if (this.isEditingWidget && this.editingLayoutCtx.id === 'right') { if (this.isEditingWidget && this.editingLayoutCtx.id === 'right') {
return '100%'; this.rightLayoutSize.width = '100%';
} else { } else {
return this.isMobile ? '100%' : this.calculateWidth('right'); this.rightLayoutSize.width = this.isMobile ? '100%' : this.calculateWidth('right');
}
if (!this.isEditingWidget || this.editingLayoutCtx.id === 'right') {
this.rightLayoutSize.height = '100%';
} else {
this.rightLayoutSize.height = '0px';
} }
} }
@ -743,14 +772,6 @@ export class DashboardPageComponent extends PageComponent implements IDashboardC
} }
} }
public rightLayoutHeight(): string {
if (!this.isEditingWidget || this.editingLayoutCtx.id === 'right') {
return '100%';
} else {
return '0px';
}
}
public isPublicUser(): boolean { public isPublicUser(): boolean {
return this.authUser.isPublic; return this.authUser.isPublic;
} }
@ -977,6 +998,7 @@ export class DashboardPageComponent extends PageComponent implements IDashboardC
layout.layoutCtx.ctrl.reload(); layout.layoutCtx.ctrl.reload();
} }
layout.layoutCtx.ignoreLoading = true; layout.layoutCtx.ignoreLoading = true;
this.updateLayoutSizes();
} }
private setEditMode(isEdit: boolean, revert: boolean) { private setEditMode(isEdit: boolean, revert: boolean) {
@ -1191,6 +1213,7 @@ export class DashboardPageComponent extends PageComponent implements IDashboardC
this.editingLayoutCtx = null; this.editingLayoutCtx = null;
this.editingWidgetSubtitle = null; this.editingWidgetSubtitle = null;
this.isEditingWidget = false; this.isEditingWidget = false;
this.updateLayoutSizes();
this.resetHighlight(); this.resetHighlight();
this.forceDashboardMobileMode = false; this.forceDashboardMobileMode = false;
} }
@ -1216,6 +1239,7 @@ export class DashboardPageComponent extends PageComponent implements IDashboardC
this.editingWidgetSubtitle = this.widgetComponentService.getInstantWidgetInfo(this.editingWidget).widgetName; this.editingWidgetSubtitle = this.widgetComponentService.getInstantWidgetInfo(this.editingWidget).widgetName;
this.forceDashboardMobileMode = true; this.forceDashboardMobileMode = true;
this.isEditingWidget = true; this.isEditingWidget = true;
this.updateLayoutSizes();
if (layoutCtx) { if (layoutCtx) {
const delayOffset = transition ? 350 : 0; const delayOffset = transition ? 350 : 0;
const delay = transition ? 400 : 300; const delay = transition ? 400 : 300;