2020-09-02 18:32:57 +03:00
|
|
|
<!--
|
|
|
|
|
|
|
|
|
|
Copyright © 2016-2020 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.
|
|
|
|
|
|
|
|
|
|
-->
|
|
|
|
|
<div class="tb-details-buttons" fxLayout.xs="column" *ngIf="!standalone">
|
|
|
|
|
<button mat-raised-button color="primary"
|
|
|
|
|
[disabled]="(isLoading$ | async)"
|
|
|
|
|
(click)="onEntityAction($event, 'setDefault')"
|
|
|
|
|
[fxShow]="!isEdit && !entity?.default">
|
|
|
|
|
{{'device-profile.set-default' | translate }}
|
|
|
|
|
</button>
|
|
|
|
|
<button mat-raised-button color="primary"
|
|
|
|
|
[disabled]="(isLoading$ | async)"
|
|
|
|
|
(click)="onEntityAction($event, 'delete')"
|
|
|
|
|
[fxShow]="!hideDelete() && !isEdit">
|
|
|
|
|
{{'device-profile.delete' | translate }}
|
|
|
|
|
</button>
|
|
|
|
|
<div fxLayout="row" fxLayout.xs="column">
|
|
|
|
|
<button mat-raised-button
|
|
|
|
|
ngxClipboard
|
|
|
|
|
(cbOnSuccess)="onDeviceProfileIdCopied($event)"
|
|
|
|
|
[cbContent]="entity?.id?.id"
|
|
|
|
|
[fxShow]="!isEdit">
|
|
|
|
|
<mat-icon svgIcon="mdi:clipboard-arrow-left"></mat-icon>
|
|
|
|
|
<span translate>device-profile.copyId</span>
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mat-padding" fxLayout="column">
|
|
|
|
|
<form [formGroup]="entityForm">
|
|
|
|
|
<fieldset [disabled]="(isLoading$ | async) || !isEdit">
|
|
|
|
|
<mat-form-field class="mat-block">
|
|
|
|
|
<mat-label translate>device-profile.name</mat-label>
|
|
|
|
|
<input matInput formControlName="name" required/>
|
|
|
|
|
<mat-error *ngIf="entityForm.get('name').hasError('required')">
|
|
|
|
|
{{ 'device-profile.name-required' | translate }}
|
|
|
|
|
</mat-error>
|
|
|
|
|
</mat-form-field>
|
2020-09-03 10:04:03 +03:00
|
|
|
<tb-entity-autocomplete
|
2020-09-08 10:34:00 +03:00
|
|
|
labelText="device-profile.default-rule-chain"
|
2020-09-03 10:04:03 +03:00
|
|
|
[entityType]="entityType.RULE_CHAIN"
|
|
|
|
|
formControlName="defaultRuleChainId">
|
|
|
|
|
</tb-entity-autocomplete>
|
2020-09-02 18:32:57 +03:00
|
|
|
<mat-form-field class="mat-block">
|
|
|
|
|
<mat-label translate>device-profile.type</mat-label>
|
|
|
|
|
<mat-select formControlName="type" required>
|
|
|
|
|
<mat-option *ngFor="let type of deviceProfileTypes" [value]="type">
|
|
|
|
|
{{deviceProfileTypeTranslations.get(type) | translate}}
|
|
|
|
|
</mat-option>
|
|
|
|
|
</mat-select>
|
|
|
|
|
<mat-error *ngIf="entityForm.get('type').hasError('required')">
|
|
|
|
|
{{ 'device-profile.type-required' | translate }}
|
|
|
|
|
</mat-error>
|
|
|
|
|
</mat-form-field>
|
2020-09-03 12:51:54 +03:00
|
|
|
<mat-form-field class="mat-block">
|
|
|
|
|
<mat-label translate>device-profile.transport-type</mat-label>
|
|
|
|
|
<mat-select formControlName="transportType" required>
|
|
|
|
|
<mat-option *ngFor="let type of deviceTransportTypes" [value]="type">
|
|
|
|
|
{{deviceTransportTypeTranslations.get(type) | translate}}
|
|
|
|
|
</mat-option>
|
|
|
|
|
</mat-select>
|
|
|
|
|
<mat-error *ngIf="entityForm.get('transportType').hasError('required')">
|
|
|
|
|
{{ 'device-profile.transport-type-required' | translate }}
|
|
|
|
|
</mat-error>
|
|
|
|
|
</mat-form-field>
|
2020-09-02 18:32:57 +03:00
|
|
|
<tb-device-profile-data
|
|
|
|
|
formControlName="profileData"
|
|
|
|
|
required>
|
|
|
|
|
</tb-device-profile-data>
|
|
|
|
|
<mat-form-field class="mat-block">
|
2020-09-14 19:23:18 +03:00
|
|
|
<mat-label translate>device-profile.description</mat-label>
|
2020-09-02 18:32:57 +03:00
|
|
|
<textarea matInput formControlName="description" rows="2"></textarea>
|
|
|
|
|
</mat-form-field>
|
|
|
|
|
</fieldset>
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|