/// /// Copyright © 2016-2022 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, forwardRef, Input, OnDestroy, OnInit } from '@angular/core'; import { ControlValueAccessor, FormBuilder, FormGroup, NG_VALUE_ACCESSOR } from '@angular/forms'; import { isDefined } from '@core/utils'; import { LegendConfig, LegendDirection, legendDirectionTranslationMap, LegendPosition, legendPositionTranslationMap } from '@shared/models/widget.models'; import { Subscription } from 'rxjs'; // @dynamic @Component({ selector: 'tb-legend-config', templateUrl: './legend-config.component.html', styleUrls: [], providers: [ { provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => LegendConfigComponent), multi: true } ] }) export class LegendConfigComponent implements OnInit, OnDestroy, ControlValueAccessor { @Input() disabled: boolean; legendConfigForm: FormGroup; legendDirection = LegendDirection; legendDirections = Object.keys(LegendDirection); legendDirectionTranslations = legendDirectionTranslationMap; legendPosition = LegendPosition; legendPositions = Object.keys(LegendPosition); legendPositionTranslations = legendPositionTranslationMap; private legendSettingsFormChanges$: Subscription; private legendSettingsFormDirectionChanges$: Subscription; private propagateChange = (_: any) => {}; constructor(private fb: FormBuilder) { } ngOnInit(): void { this.legendConfigForm = this.fb.group({ direction: [null, []], position: [null, []], sortDataKeys: [null, []], showMin: [null, []], showMax: [null, []], showAvg: [null, []], showTotal: [null, []] }); this.legendSettingsFormDirectionChanges$ = this.legendConfigForm.get('direction').valueChanges .subscribe((direction: LegendDirection) => { this.onDirectionChanged(direction); }); this.legendSettingsFormChanges$ = this.legendConfigForm.valueChanges.subscribe( () => this.legendConfigUpdated() ); } private onDirectionChanged(direction: LegendDirection) { if (direction === LegendDirection.row) { let position: LegendPosition = this.legendConfigForm.get('position').value; if (position !== LegendPosition.bottom && position !== LegendPosition.top) { position = LegendPosition.bottom; } this.legendConfigForm.patchValue({position}, {emitEvent: false} ); } } ngOnDestroy(): void { if (this.legendSettingsFormDirectionChanges$) { this.legendSettingsFormDirectionChanges$.unsubscribe(); this.legendSettingsFormDirectionChanges$ = null; } if (this.legendSettingsFormChanges$) { this.legendSettingsFormChanges$.unsubscribe(); this.legendSettingsFormChanges$ = null; } } registerOnChange(fn: any): void { this.propagateChange = fn; } registerOnTouched(fn: any): void { } setDisabledState(isDisabled: boolean): void { this.disabled = isDisabled; if (this.disabled) { this.legendConfigForm.disable({emitEvent: false}); } else { this.legendConfigForm.enable({emitEvent: false}); } } writeValue(legendConfig: LegendConfig): void { if (legendConfig) { this.legendConfigForm.patchValue({ direction: legendConfig.direction, position: legendConfig.position, sortDataKeys: isDefined(legendConfig.sortDataKeys) ? legendConfig.sortDataKeys : false, showMin: isDefined(legendConfig.showMin) ? legendConfig.showMin : false, showMax: isDefined(legendConfig.showMax) ? legendConfig.showMax : false, showAvg: isDefined(legendConfig.showAvg) ? legendConfig.showAvg : false, showTotal: isDefined(legendConfig.showTotal) ? legendConfig.showTotal : false }, {emitEvent: false}); } this.onDirectionChanged(legendConfig.direction); } private legendConfigUpdated() { this.propagateChange(this.legendConfigForm.value); } }