dashboardjavacloudcoapiotiot-analyticsiot-platformiot-solutionskafkalwm2mmicroservicesmiddlewaremqttnettyplatformsnmpthingsboardvisualizationwebsocketswidgets
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
106 lines
4.2 KiB
106 lines
4.2 KiB
<!--
|
|
|
|
Copyright © 2016-2023 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.
|
|
|
|
-->
|
|
<section [formGroup]="deviceCredentialsMqttFormGroup">
|
|
<mat-form-field class="mat-block">
|
|
<mat-label translate>device.client-id</mat-label>
|
|
<input matInput formControlName="clientId">
|
|
<button type="button"
|
|
matSuffix
|
|
mat-icon-button
|
|
aria-label="Generate"
|
|
matTooltip="{{ 'device.generate-client-id' | translate }}"
|
|
matTooltipPosition="above"
|
|
(click)="generate('clientId')"
|
|
*ngIf="!deviceCredentialsMqttFormGroup.get('clientId').value; else copyClientId">
|
|
<mat-icon>autorenew</mat-icon>
|
|
</button>
|
|
<ng-template #copyClientId>
|
|
<tb-copy-button
|
|
matSuffix
|
|
miniButton="false"
|
|
[copyText]="deviceCredentialsMqttFormGroup.get('clientId').value"
|
|
tooltipText="{{ 'device.copy-client-id' | translate }}"
|
|
tooltipPosition="above"
|
|
icon="content_copy">
|
|
</tb-copy-button>
|
|
</ng-template>
|
|
<mat-error *ngIf="deviceCredentialsMqttFormGroup.get('clientId').hasError('pattern')">
|
|
{{ 'device.client-id-pattern' | translate }}
|
|
</mat-error>
|
|
</mat-form-field>
|
|
<mat-form-field class="mat-block">
|
|
<mat-label translate>device.user-name</mat-label>
|
|
<input matInput formControlName="userName" [required]="!!deviceCredentialsMqttFormGroup.get('password').value">
|
|
<button type="button"
|
|
matSuffix
|
|
mat-icon-button
|
|
aria-label="Generate"
|
|
matTooltip="{{ 'device.generate-user-name' | translate }}"
|
|
matTooltipPosition="above"
|
|
(click)="generate('userName')"
|
|
*ngIf="!deviceCredentialsMqttFormGroup.get('userName').value; else copyUserName">
|
|
<mat-icon>autorenew</mat-icon>
|
|
</button>
|
|
<ng-template #copyUserName>
|
|
<tb-copy-button
|
|
matSuffix
|
|
miniButton="false"
|
|
*ngIf="deviceCredentialsMqttFormGroup.get('userName').value"
|
|
[copyText]="deviceCredentialsMqttFormGroup.get('userName').value"
|
|
tooltipText="{{ 'device.copy-user-name' | translate }}"
|
|
tooltipPosition="above"
|
|
icon="content_copy">
|
|
</tb-copy-button>
|
|
</ng-template>
|
|
<mat-error *ngIf="deviceCredentialsMqttFormGroup.get('userName').hasError('required')">
|
|
{{ 'device.user-name-required' | translate }}
|
|
</mat-error>
|
|
</mat-form-field>
|
|
<mat-form-field class="mat-block">
|
|
<mat-label translate>device.password</mat-label>
|
|
<input matInput formControlName="password"
|
|
autocomplete="new-password"
|
|
(ngModelChange)="passwordChanged()"
|
|
type="password">
|
|
<tb-toggle-password matSuffix></tb-toggle-password>
|
|
<button type="button"
|
|
matSuffix
|
|
mat-icon-button
|
|
aria-label="Generate"
|
|
matTooltip="{{ 'device.generate-password' | translate }}"
|
|
matTooltipPosition="above"
|
|
(click)="generate('password')"
|
|
*ngIf="!deviceCredentialsMqttFormGroup.get('password').value; else copyPassword">
|
|
<mat-icon>autorenew</mat-icon>
|
|
</button>
|
|
<ng-template #copyPassword>
|
|
<tb-copy-button
|
|
matSuffix
|
|
miniButton="false"
|
|
*ngIf="deviceCredentialsMqttFormGroup.get('password').value"
|
|
[copyText]="deviceCredentialsMqttFormGroup.get('password').value"
|
|
tooltipText="{{ 'device.copy-password' | translate }}"
|
|
tooltipPosition="above"
|
|
icon="content_copy">
|
|
</tb-copy-button>
|
|
</ng-template>
|
|
</mat-form-field>
|
|
<tb-error style="margin-top: -12px; display: block;"
|
|
[error]="deviceCredentialsMqttFormGroup.hasError('atLeastOne') ?
|
|
('device.client-id-or-user-name-necessary' | translate) : ''"></tb-error>
|
|
</section>
|
|
|