thingsboard/ui-ngx/src/app/modules/home/pages/device/device-credentials-dialog.component.ts

140 lines
5.4 KiB
TypeScript
Raw Normal View History

2019-08-14 19:55:24 +03:00
///
2020-02-20 10:26:43 +02:00
/// Copyright © 2016-2020 The Thingsboard Authors
2019-08-14 19:55:24 +03: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-03 21:14:39 +03:00
import { Component, Inject, OnInit, SkipSelf } from '@angular/core';
2020-02-10 13:15:29 +02:00
import { ErrorStateMatcher } from '@angular/material/core';
2020-04-03 21:14:39 +03:00
import { MAT_DIALOG_DATA, MatDialogRef } from '@angular/material/dialog';
2019-08-14 19:55:24 +03:00
import { Store } from '@ngrx/store';
import { AppState } from '@core/core.state';
2020-04-03 21:14:39 +03:00
import { FormBuilder, FormControl, FormGroup, FormGroupDirective, NgForm, Validators } from '@angular/forms';
import { DeviceService } from '@core/http/device.service';
import { credentialTypeNames, DeviceCredentials, DeviceCredentialsType } from '@shared/models/device.models';
import { DialogComponent } from '@shared/components/dialog.component';
import { Router } from '@angular/router';
2019-08-14 19:55:24 +03:00
export interface DeviceCredentialsDialogData {
isReadOnly: boolean;
deviceId: string;
}
@Component({
selector: 'tb-device-credentials-dialog',
templateUrl: './device-credentials-dialog.component.html',
providers: [{provide: ErrorStateMatcher, useExisting: DeviceCredentialsDialogComponent}],
styleUrls: []
})
export class DeviceCredentialsDialogComponent extends
DialogComponent<DeviceCredentialsDialogComponent, DeviceCredentials> implements OnInit, ErrorStateMatcher {
2019-08-14 19:55:24 +03:00
deviceCredentialsFormGroup: FormGroup;
isReadOnly: boolean;
deviceCredentials: DeviceCredentials;
submitted = false;
deviceCredentialsType = DeviceCredentialsType;
credentialsTypes = Object.keys(DeviceCredentialsType);
credentialTypeNamesMap = credentialTypeNames;
constructor(protected store: Store<AppState>,
protected router: Router,
2019-08-14 19:55:24 +03:00
@Inject(MAT_DIALOG_DATA) public data: DeviceCredentialsDialogData,
private deviceService: DeviceService,
@SkipSelf() private errorStateMatcher: ErrorStateMatcher,
public dialogRef: MatDialogRef<DeviceCredentialsDialogComponent, DeviceCredentials>,
public fb: FormBuilder) {
super(store, router, dialogRef);
2019-08-14 19:55:24 +03:00
this.isReadOnly = data.isReadOnly;
}
ngOnInit(): void {
this.deviceCredentialsFormGroup = this.fb.group({
credentialsType: [DeviceCredentialsType.ACCESS_TOKEN],
credentialsId: [''],
credentialsValue: ['']
});
if (this.isReadOnly) {
this.deviceCredentialsFormGroup.disable({emitEvent: false});
} else {
this.registerDisableOnLoadFormControl(this.deviceCredentialsFormGroup.get('credentialsType'));
}
this.loadDeviceCredentials();
}
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;
}
loadDeviceCredentials() {
this.deviceService.getDeviceCredentials(this.data.deviceId).subscribe(
(deviceCredentials) => {
this.deviceCredentials = deviceCredentials;
this.deviceCredentialsFormGroup.patchValue({
credentialsType: deviceCredentials.credentialsType,
credentialsId: deviceCredentials.credentialsId,
credentialsValue: deviceCredentials.credentialsValue
});
this.updateValidators();
}
);
}
credentialsTypeChanged(): void {
this.deviceCredentialsFormGroup.patchValue(
{credentialsId: null, credentialsValue: null}, {emitEvent: true});
this.updateValidators();
}
updateValidators(): void {
const crendetialsType = this.deviceCredentialsFormGroup.get('credentialsType').value as DeviceCredentialsType;
switch (crendetialsType) {
case DeviceCredentialsType.ACCESS_TOKEN:
2020-06-17 12:00:49 +03:00
this.deviceCredentialsFormGroup.get('credentialsId').setValidators([Validators.required, Validators.pattern(/^.{1,20}$/)]);
2019-08-14 19:55:24 +03:00
this.deviceCredentialsFormGroup.get('credentialsId').updateValueAndValidity();
this.deviceCredentialsFormGroup.get('credentialsValue').setValidators([]);
this.deviceCredentialsFormGroup.get('credentialsValue').updateValueAndValidity();
break;
case DeviceCredentialsType.X509_CERTIFICATE:
this.deviceCredentialsFormGroup.get('credentialsValue').setValidators([Validators.required]);
this.deviceCredentialsFormGroup.get('credentialsValue').updateValueAndValidity();
this.deviceCredentialsFormGroup.get('credentialsId').setValidators([]);
this.deviceCredentialsFormGroup.get('credentialsId').updateValueAndValidity();
break;
}
}
cancel(): void {
this.dialogRef.close(null);
}
save(): void {
this.submitted = true;
this.deviceCredentials = {...this.deviceCredentials, ...this.deviceCredentialsFormGroup.value};
this.deviceService.saveDeviceCredentials(this.deviceCredentials).subscribe(
(deviceCredentials) => {
this.dialogRef.close(deviceCredentials);
}
);
}
}