dashboard-settings-dialog.component.ts 10.5 KB
///
/// Copyright © 2016-2024 The Thingsboard Authors
///
/// Licensed under the Apache License, Version 2.0 (the "License");
/// you may not use this file except in compliance with the License.
/// You may obtain a copy of the License at
///
///     http://www.apache.org/licenses/LICENSE-2.0
///
/// Unless required by applicable law or agreed to in writing, software
/// distributed under the License is distributed on an "AS IS" BASIS,
/// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
/// See the License for the specific language governing permissions and
/// limitations under the License.
///

import { Component, Inject, OnInit, SkipSelf } from '@angular/core';
import { ErrorStateMatcher } from '@angular/material/core';
import { MAT_DIALOG_DATA, MatDialogRef } from '@angular/material/dialog';
import { Store } from '@ngrx/store';
import { AppState } from '@core/core.state';
import { FormBuilder, FormControl, FormGroup, FormGroupDirective, NgForm, Validators } from '@angular/forms';
import { Router } from '@angular/router';
import { DialogComponent } from '@app/shared/components/dialog.component';
import { TranslateService } from '@ngx-translate/core';
import { DashboardSettings, GridSettings, StateControllerId } from '@app/shared/models/dashboard.models';
import { isDefined, isUndefined } from '@core/utils';
import { StatesControllerService } from './states/states-controller.service';

export interface DashboardSettingsDialogData {
  settings?: DashboardSettings;
  gridSettings?: GridSettings;
  isRightLayout?: boolean;
}

@Component({
  selector: 'tb-dashboard-settings-dialog',
  templateUrl: './dashboard-settings-dialog.component.html',
  providers: [{provide: ErrorStateMatcher, useExisting: DashboardSettingsDialogComponent}],
  styleUrls: ['./dashboard-settings-dialog.component.scss']
})
export class DashboardSettingsDialogComponent extends DialogComponent<DashboardSettingsDialogComponent, DashboardSettingsDialogData>
  implements OnInit, ErrorStateMatcher {

  settings: DashboardSettings;
  gridSettings: GridSettings;
  isRightLayout = false;

  settingsFormGroup: FormGroup;
  gridSettingsFormGroup: FormGroup;

  stateControllerIds: string[];

  submitted = false;

  private stateControllerTranslationMap = new Map<string, string>([
    ['default', 'dashboard.state-controller-default'],
  ]);

  constructor(protected store: Store<AppState>,
              protected router: Router,
              @Inject(MAT_DIALOG_DATA) public data: DashboardSettingsDialogData,
              @SkipSelf() private errorStateMatcher: ErrorStateMatcher,
              public dialogRef: MatDialogRef<DashboardSettingsDialogComponent, DashboardSettingsDialogData>,
              private fb: FormBuilder,
              private translate: TranslateService,
              private statesControllerService: StatesControllerService) {
    super(store, router, dialogRef);

    this.stateControllerIds = Object.keys(this.statesControllerService.getStateControllers());

    this.settings = this.data.settings;
    this.gridSettings = this.data.gridSettings;
    this.isRightLayout = this.data.isRightLayout;

    if (this.settings) {
      const showTitle = isUndefined(this.settings.showTitle) ? true : this.settings.showTitle;
      const showDashboardLogo = isUndefined(this.settings.showDashboardLogo) ? false : this.settings.showDashboardLogo;
      const hideToolbar = isUndefined(this.settings.hideToolbar) ? false : this.settings.hideToolbar;
      this.settingsFormGroup = this.fb.group({
        stateControllerId: [isUndefined(this.settings.stateControllerId) ? 'entity' : this.settings.stateControllerId, []],
        showTitle: [showTitle, []],
        titleColor: [{value: isUndefined(this.settings.titleColor) ? 'rgba(0,0,0,0.870588)' : this.settings.titleColor,
                      disabled: !showTitle}, []],
        showDashboardLogo: [showDashboardLogo, []],
        dashboardLogoUrl: [{value: isUndefined(this.settings.dashboardLogoUrl) ? null : this.settings.dashboardLogoUrl,
                            disabled: !showDashboardLogo}, []],
        hideToolbar: [hideToolbar, []],
        toolbarAlwaysOpen: [{value: isUndefined(this.settings.toolbarAlwaysOpen) ? true : this.settings.toolbarAlwaysOpen,
          disabled: hideToolbar}, []],
        showDashboardsSelect: [{value: isUndefined(this.settings.showDashboardsSelect) ? true : this.settings.showDashboardsSelect,
          disabled: hideToolbar}, []],
        showEntitiesSelect: [{value: isUndefined(this.settings.showEntitiesSelect) ? true : this.settings.showEntitiesSelect,
          disabled: hideToolbar}, []],
        showFilters: [{value: isUndefined(this.settings.showFilters) ? true : this.settings.showFilters,
          disabled: hideToolbar}, []],
        showDashboardTimewindow: [{value: isUndefined(this.settings.showDashboardTimewindow) ? true : this.settings.showDashboardTimewindow,
          disabled: hideToolbar}, []],
        showDashboardExport: [{value: isUndefined(this.settings.showDashboardExport) ? true : this.settings.showDashboardExport,
          disabled: hideToolbar}, []],
        showUpdateDashboardImage: [
          {value: isUndefined(this.settings.showUpdateDashboardImage) ? true : this.settings.showUpdateDashboardImage,
          disabled: hideToolbar}, []],
        dashboardCss: [isUndefined(this.settings.dashboardCss) ? '' : this.settings.dashboardCss, []],
      });
      this.settingsFormGroup.get('stateControllerId').valueChanges.subscribe(
        (stateControllerId: StateControllerId) => {
          if (stateControllerId !== 'default') {
            this.settingsFormGroup.get('toolbarAlwaysOpen').setValue(true);
          }
        }
      );
      this.settingsFormGroup.get('showTitle').valueChanges.subscribe(
        (showTitleValue: boolean) => {
          if (showTitleValue) {
            this.settingsFormGroup.get('titleColor').enable();
          } else {
            this.settingsFormGroup.get('titleColor').disable();
          }
        }
      );
      this.settingsFormGroup.get('showDashboardLogo').valueChanges.subscribe(
        (showDashboardLogoValue: boolean) => {
          if (showDashboardLogoValue) {
            this.settingsFormGroup.get('dashboardLogoUrl').enable();
          } else {
            this.settingsFormGroup.get('dashboardLogoUrl').disable();
          }
        }
      );
      this.settingsFormGroup.get('hideToolbar').valueChanges.subscribe(
        (hideToolbarValue: boolean) => {
          if (hideToolbarValue) {
            this.settingsFormGroup.get('toolbarAlwaysOpen').disable();
            this.settingsFormGroup.get('showDashboardsSelect').disable();
            this.settingsFormGroup.get('showEntitiesSelect').disable();
            this.settingsFormGroup.get('showFilters').disable();
            this.settingsFormGroup.get('showDashboardTimewindow').disable();
            this.settingsFormGroup.get('showDashboardExport').disable();
            this.settingsFormGroup.get('showUpdateDashboardImage').disable();
          } else {
            this.settingsFormGroup.get('toolbarAlwaysOpen').enable();
            this.settingsFormGroup.get('showDashboardsSelect').enable();
            this.settingsFormGroup.get('showEntitiesSelect').enable();
            this.settingsFormGroup.get('showFilters').enable();
            this.settingsFormGroup.get('showDashboardTimewindow').enable();
            this.settingsFormGroup.get('showDashboardExport').enable();
            this.settingsFormGroup.get('showUpdateDashboardImage').enable();
          }
        }
      );
    } else {
      this.settingsFormGroup = this.fb.group({});
    }

    if (this.gridSettings) {
      const mobileAutoFillHeight = isUndefined(this.gridSettings.mobileAutoFillHeight) ? false : this.gridSettings.mobileAutoFillHeight;
      this.gridSettingsFormGroup = this.fb.group({
        columns: [this.gridSettings.columns || 24, [Validators.required, Validators.min(10), Validators.max(1000)]],
        margin: [isDefined(this.gridSettings.margin) ? this.gridSettings.margin : 10,
          [Validators.required, Validators.min(0), Validators.max(50)]],
        outerMargin: [isUndefined(this.gridSettings.outerMargin) ? true : this.gridSettings.outerMargin, []],
        autoFillHeight: [isUndefined(this.gridSettings.autoFillHeight) ? false : this.gridSettings.autoFillHeight, []],
        backgroundColor: [this.gridSettings.backgroundColor || 'rgba(0,0,0,0)', []],
        backgroundImageUrl: [this.gridSettings.backgroundImageUrl, []],
        backgroundSizeMode: [this.gridSettings.backgroundSizeMode || '100%', []],
        mobileAutoFillHeight: [mobileAutoFillHeight, []],
        mobileRowHeight: [{ value: isUndefined(this.gridSettings.mobileRowHeight) ? 70 : this.gridSettings.mobileRowHeight,
          disabled: mobileAutoFillHeight}, [Validators.required, Validators.min(5), Validators.max(200)]]
      });
      if (this.isRightLayout) {
        const mobileDisplayLayoutFirst = isUndefined(this.gridSettings.mobileDisplayLayoutFirst) ? false : this.gridSettings.mobileDisplayLayoutFirst;
        this.gridSettingsFormGroup.addControl('mobileDisplayLayoutFirst', this.fb.control(mobileDisplayLayoutFirst, []));
      }
      this.gridSettingsFormGroup.get('mobileAutoFillHeight').valueChanges.subscribe(
        (mobileAutoFillHeightValue: boolean) => {
          if (mobileAutoFillHeightValue) {
            this.gridSettingsFormGroup.get('mobileRowHeight').disable();
          } else {
            this.gridSettingsFormGroup.get('mobileRowHeight').enable();
          }
        }
      );
    } else {
      this.gridSettingsFormGroup = this.fb.group({});
    }
  }

  ngOnInit(): void {
  }

  isErrorState(control: FormControl | null, form: FormGroupDirective | NgForm | null): boolean {
    const originalErrorState = this.errorStateMatcher.isErrorState(control, form);
    const customErrorState = !!(control && control.invalid && this.submitted);
    return originalErrorState || customErrorState;
  }

  cancel(): void {
    this.dialogRef.close(null);
  }

  save(): void {
    this.submitted = true;
    let settings: DashboardSettings = null;
    let gridSettings: GridSettings = null;
    if (this.settings) {
      settings = {...this.settings, ...this.settingsFormGroup.getRawValue()};
    }
    if (this.gridSettings) {
      gridSettings = {...this.gridSettings, ...this.gridSettingsFormGroup.getRawValue()};
    }
    this.dialogRef.close({settings, gridSettings});
  }

  getStatesControllerTranslation(stateControllerId: string): string {
    if (this.stateControllerTranslationMap.has(stateControllerId)) {
      return this.translate.instant(this.stateControllerTranslationMap.get(stateControllerId));
    }
    return stateControllerId;
  }
}