2019-12-27 16:35:11 +02:00
|
|
|
///
|
2023-01-31 10:43:56 +02:00
|
|
|
/// Copyright © 2016-2023 The Thingsboard Authors
|
2019-12-27 16:35:11 +02:00
|
|
|
///
|
|
|
|
|
/// 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.
|
|
|
|
|
///
|
|
|
|
|
|
2020-04-27 09:27:14 +03:00
|
|
|
import { Component, forwardRef, Input, OnInit } from '@angular/core';
|
2019-12-27 16:35:11 +02:00
|
|
|
import {
|
|
|
|
|
AbstractControl,
|
2020-04-27 09:27:14 +03:00
|
|
|
ControlValueAccessor,
|
2023-02-02 15:55:06 +02:00
|
|
|
UntypedFormArray,
|
|
|
|
|
UntypedFormBuilder,
|
|
|
|
|
UntypedFormControl,
|
|
|
|
|
UntypedFormGroup,
|
2020-04-27 09:27:14 +03:00
|
|
|
NG_VALIDATORS,
|
|
|
|
|
NG_VALUE_ACCESSOR,
|
|
|
|
|
Validator,
|
2019-12-27 16:35:11 +02:00
|
|
|
Validators
|
|
|
|
|
} from '@angular/forms';
|
|
|
|
|
import { PageComponent } from '@shared/components/page.component';
|
|
|
|
|
import { Store } from '@ngrx/store';
|
|
|
|
|
import { AppState } from '@core/core.state';
|
2022-12-09 16:34:37 +02:00
|
|
|
import { Subject, Subscription } from 'rxjs';
|
|
|
|
|
import { takeUntil } from 'rxjs/operators';
|
2019-12-27 16:35:11 +02:00
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
|
selector: 'tb-key-val-map',
|
|
|
|
|
templateUrl: './kv-map.component.html',
|
|
|
|
|
styleUrls: ['./kv-map.component.scss'],
|
|
|
|
|
providers: [
|
|
|
|
|
{
|
|
|
|
|
provide: NG_VALUE_ACCESSOR,
|
|
|
|
|
useExisting: forwardRef(() => KeyValMapComponent),
|
|
|
|
|
multi: true
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
provide: NG_VALIDATORS,
|
|
|
|
|
useExisting: forwardRef(() => KeyValMapComponent),
|
|
|
|
|
multi: true,
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
})
|
|
|
|
|
export class KeyValMapComponent extends PageComponent implements ControlValueAccessor, OnInit, Validator {
|
|
|
|
|
|
|
|
|
|
@Input() disabled: boolean;
|
|
|
|
|
|
|
|
|
|
@Input() titleText: string;
|
|
|
|
|
|
|
|
|
|
@Input() keyPlaceholderText: string;
|
|
|
|
|
|
|
|
|
|
@Input() valuePlaceholderText: string;
|
|
|
|
|
|
|
|
|
|
@Input() noDataText: string;
|
|
|
|
|
|
2023-02-02 15:55:06 +02:00
|
|
|
kvListFormGroup: UntypedFormGroup;
|
2019-12-27 16:35:11 +02:00
|
|
|
|
2023-02-08 11:02:29 +02:00
|
|
|
private destroy$ = new Subject<void>();
|
2019-12-27 16:35:11 +02:00
|
|
|
private propagateChange = null;
|
|
|
|
|
|
|
|
|
|
constructor(protected store: Store<AppState>,
|
2023-02-02 15:55:06 +02:00
|
|
|
private fb: UntypedFormBuilder) {
|
2019-12-27 16:35:11 +02:00
|
|
|
super(store);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ngOnInit(): void {
|
2022-12-09 16:34:37 +02:00
|
|
|
this.kvListFormGroup = this.fb.group({
|
|
|
|
|
keyVals: this.fb.array([])
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
this.kvListFormGroup.valueChanges.pipe(
|
|
|
|
|
takeUntil(this.destroy$)
|
|
|
|
|
).subscribe(() => this.updateModel());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ngOnDestroy() {
|
|
|
|
|
this.destroy$.next();
|
|
|
|
|
this.destroy$.complete();
|
2019-12-27 16:35:11 +02:00
|
|
|
}
|
|
|
|
|
|
2023-02-02 15:55:06 +02:00
|
|
|
keyValsFormArray(): UntypedFormArray {
|
|
|
|
|
return this.kvListFormGroup.get('keyVals') as UntypedFormArray;
|
2019-12-27 16:35:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
registerOnChange(fn: any): void {
|
|
|
|
|
this.propagateChange = fn;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
registerOnTouched(fn: any): void {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
setDisabledState?(isDisabled: boolean): void {
|
|
|
|
|
this.disabled = isDisabled;
|
|
|
|
|
if (this.disabled) {
|
|
|
|
|
this.kvListFormGroup.disable({emitEvent: false});
|
|
|
|
|
} else {
|
|
|
|
|
this.kvListFormGroup.enable({emitEvent: false});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
writeValue(keyValMap: {[key: string]: string}): void {
|
|
|
|
|
const keyValsControls: Array<AbstractControl> = [];
|
|
|
|
|
if (keyValMap) {
|
|
|
|
|
for (const property of Object.keys(keyValMap)) {
|
|
|
|
|
if (Object.prototype.hasOwnProperty.call(keyValMap, property)) {
|
|
|
|
|
keyValsControls.push(this.fb.group({
|
|
|
|
|
key: [property, [Validators.required]],
|
|
|
|
|
value: [keyValMap[property], [Validators.required]]
|
|
|
|
|
}));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-12-09 16:34:37 +02:00
|
|
|
this.kvListFormGroup.setControl('keyVals', this.fb.array(keyValsControls), {emitEvent: false});
|
2020-05-13 17:06:15 +03:00
|
|
|
if (this.disabled) {
|
|
|
|
|
this.kvListFormGroup.disable({emitEvent: false});
|
|
|
|
|
} else {
|
|
|
|
|
this.kvListFormGroup.enable({emitEvent: false});
|
|
|
|
|
}
|
2019-12-27 16:35:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public removeKeyVal(index: number) {
|
2023-02-02 15:55:06 +02:00
|
|
|
(this.kvListFormGroup.get('keyVals') as UntypedFormArray).removeAt(index);
|
2019-12-27 16:35:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public addKeyVal() {
|
2023-02-02 15:55:06 +02:00
|
|
|
const keyValsFormArray = this.kvListFormGroup.get('keyVals') as UntypedFormArray;
|
2019-12-27 16:35:11 +02:00
|
|
|
keyValsFormArray.push(this.fb.group({
|
|
|
|
|
key: ['', [Validators.required]],
|
|
|
|
|
value: ['', [Validators.required]]
|
|
|
|
|
}));
|
|
|
|
|
}
|
|
|
|
|
|
2023-02-02 15:55:06 +02:00
|
|
|
public validate(c: UntypedFormControl) {
|
2019-12-27 16:35:11 +02:00
|
|
|
const kvList: {key: string; value: string}[] = this.kvListFormGroup.get('keyVals').value;
|
|
|
|
|
let valid = true;
|
|
|
|
|
for (const entry of kvList) {
|
|
|
|
|
if (!entry.key || !entry.value) {
|
|
|
|
|
valid = false;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return (valid) ? null : {
|
|
|
|
|
keyVals: {
|
|
|
|
|
valid: false,
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private updateModel() {
|
|
|
|
|
const kvList: {key: string; value: string}[] = this.kvListFormGroup.get('keyVals').value;
|
|
|
|
|
const keyValMap: {[key: string]: string} = {};
|
|
|
|
|
kvList.forEach((entry) => {
|
|
|
|
|
keyValMap[entry.key] = entry.value;
|
|
|
|
|
});
|
|
|
|
|
this.propagateChange(keyValMap);
|
|
|
|
|
}
|
|
|
|
|
}
|