lwm2m-device-config-server.component.html 4.77 KB
<!--

    Copyright © 2016-2021 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]="serverFormGroup">
  <div fxLayout="row" fxLayout.xs="column" fxLayoutGap="8px" fxLayoutGap.xs="0px">
    <mat-form-field fxFlex>
      <mat-label>{{ 'device-profile.lwm2m.mode' | translate }}</mat-label>
      <mat-select formControlName="securityMode">
        <mat-option *ngFor="let securityMode of securityConfigLwM2MTypes"
                    [value]="securityMode">
          {{ credentialTypeLwM2MNamesMap.get(securityConfigLwM2MType[securityMode]) }}
        </mat-option>
      </mat-select>
    </mat-form-field>
    <mat-form-field fxFlex>
      <mat-label>{{ 'device-profile.lwm2m.server-host' | translate }}</mat-label>
      <input matInput type="text" formControlName="host" required>
      <mat-error *ngIf="serverFormGroup.get('host').hasError('required')">
        {{ 'device-profile.lwm2m.server-host-required' | translate }}
      </mat-error>
    </mat-form-field>
    <mat-form-field fxFlex>
      <mat-label>{{ 'device-profile.lwm2m.server-port' | translate }}</mat-label>
      <input matInput type="number" formControlName="port" required min="0">
      <mat-error *ngIf="serverFormGroup.get('port').hasError('required')">
        {{ 'device-profile.lwm2m.server-port-required' | translate }}
      </mat-error>
    </mat-form-field>
  </div>
  <div fxLayout="row" fxLayout.xs="column" fxLayoutGap="8px" fxLayoutGap.xs="0px">
    <mat-form-field fxFlex>
      <mat-label>{{ 'device-profile.lwm2m.short-id' | translate }}</mat-label>
      <input matInput type="number" formControlName="serverId" required min="0">
      <mat-error *ngIf="serverFormGroup.get('serverId').hasError('required')">
        {{ 'device-profile.lwm2m.short-id-required' | translate }}
      </mat-error>
    </mat-form-field>
    <mat-form-field fxFlex>
      <mat-label>{{ 'device-profile.lwm2m.client-hold-off-time' | translate }}</mat-label>
      <input matInput type="number" formControlName="clientHoldOffTime" required min="0"
             matTooltip="{{'device-profile.lwm2m.client-hold-off-time-tooltip' | translate}}"
             matTooltipPosition="above">
      <mat-error *ngIf="serverFormGroup.get('clientHoldOffTime').hasError('required')">
        {{ 'device-profile.lwm2m.client-hold-off-time-required' | translate }}
      </mat-error>
    </mat-form-field>
    <mat-form-field fxFlex>
      <mat-label>{{ 'device-profile.lwm2m.account-after-timeout' | translate }}</mat-label>
      <input matInput type="number" formControlName="bootstrapServerAccountTimeout" required min="0"
             matTooltip="{{'device-profile.lwm2m.account-after-timeout-tooltip' | translate}}"
             matTooltipPosition="above">
      <mat-error *ngIf="serverFormGroup.get('bootstrapServerAccountTimeout').hasError('required')">
        {{ 'device-profile.lwm2m.account-after-timeout-required' | translate }}
      </mat-error>
    </mat-form-field>
  </div>
  <div *ngIf="serverFormGroup.get('securityMode').value === securityConfigLwM2MType.RPK ||
    serverFormGroup.get('securityMode').value === securityConfigLwM2MType.X509">
    <mat-form-field class="mat-block">
      <mat-label>{{ 'device-profile.lwm2m.server-public-key' | translate }}</mat-label>
      <textarea matInput
                #serverPublicKey
                maxlength="{{maxLengthPublicKey}}"
                cdkTextareaAutosize
                cdkAutosizeMinRows="1"
                cols="1" required
                formControlName="serverPublicKey"
      ></textarea>
      <mat-hint align="end">{{serverPublicKey.value?.length || 0}}/{{maxLengthPublicKey}}</mat-hint>
      <mat-error *ngIf="serverFormGroup.get('serverPublicKey').hasError('required')">
        {{ 'device-profile.lwm2m.server-public-key-required' | translate }}
      </mat-error>
      <mat-error *ngIf="serverFormGroup.get('serverPublicKey').hasError('pattern')">
        {{ 'device-profile.lwm2m.server-public-key-pattern' | translate }}
      </mat-error>
      <mat-error *ngIf="serverFormGroup.get('serverPublicKey').hasError('maxlength') ||
                serverFormGroup.get('serverPublicKey').hasError('minlength')">
        {{ 'device-profile.lwm2m.server-public-key-length' | translate: {count: maxLengthPublicKey } }}
      </mat-error>
    </mat-form-field>
  </div>
</section>