2019-08-16 21:22:54 +03:00
|
|
|
<!--
|
|
|
|
|
|
2022-01-17 14:07:46 +02:00
|
|
|
Copyright © 2016-2022 The Thingsboard Authors
|
2019-08-16 21:22:54 +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-06 11:04:03 +03:00
|
|
|
<div class="tb-details-buttons" fxLayout.xs="column">
|
2021-12-28 12:01:26 +02:00
|
|
|
<button mat-raised-button color="primary"
|
|
|
|
|
[disabled]="(isLoading$ | async)"
|
|
|
|
|
(click)="onEntityAction($event, 'open')"
|
|
|
|
|
[fxShow]="!isEdit && !isDetailsPage">
|
|
|
|
|
{{'common.open-details-page' | translate }}
|
|
|
|
|
</button>
|
2019-08-16 21:22:54 +03:00
|
|
|
<button mat-raised-button color="primary"
|
|
|
|
|
[disabled]="(isLoading$ | async)"
|
|
|
|
|
(click)="onEntityAction($event, 'makePublic')"
|
|
|
|
|
[fxShow]="!isEdit && assetScope === 'tenant' && !isAssignedToCustomer(entity) && !entity?.customerIsPublic">
|
|
|
|
|
{{'asset.make-public' | translate }}
|
|
|
|
|
</button>
|
|
|
|
|
<button mat-raised-button color="primary"
|
|
|
|
|
[disabled]="(isLoading$ | async)"
|
|
|
|
|
(click)="onEntityAction($event, 'assignToCustomer')"
|
|
|
|
|
[fxShow]="!isEdit && assetScope === 'tenant' && !isAssignedToCustomer(entity)">
|
|
|
|
|
{{'asset.assign-to-customer' | translate }}
|
|
|
|
|
</button>
|
|
|
|
|
<button mat-raised-button color="primary"
|
|
|
|
|
[disabled]="(isLoading$ | async)"
|
|
|
|
|
(click)="onEntityAction($event, 'unassignFromCustomer')"
|
|
|
|
|
[fxShow]="!isEdit && (assetScope === 'customer' || assetScope === 'tenant') && isAssignedToCustomer(entity)">
|
|
|
|
|
{{ (entity?.customerIsPublic ? 'asset.make-private' : 'asset.unassign-from-customer') | translate }}
|
|
|
|
|
</button>
|
2020-12-10 16:59:15 +02:00
|
|
|
<button mat-raised-button color="primary"
|
|
|
|
|
[disabled]="(isLoading$ | async)"
|
|
|
|
|
(click)="onEntityAction($event, 'unassignFromEdge')"
|
|
|
|
|
[fxShow]="!isEdit && assetScope === 'edge'">
|
|
|
|
|
{{ 'edge.unassign-from-edge' | translate }}
|
|
|
|
|
</button>
|
2019-08-16 21:22:54 +03:00
|
|
|
<button mat-raised-button color="primary"
|
|
|
|
|
[disabled]="(isLoading$ | async)"
|
|
|
|
|
(click)="onEntityAction($event, 'delete')"
|
|
|
|
|
[fxShow]="!hideDelete() && !isEdit">
|
|
|
|
|
{{'asset.delete' | translate }}
|
|
|
|
|
</button>
|
2020-04-06 11:04:03 +03:00
|
|
|
<div fxLayout="row" fxLayout.xs="column">
|
2019-08-16 21:22:54 +03:00
|
|
|
<button mat-raised-button
|
|
|
|
|
ngxClipboard
|
|
|
|
|
(cbOnSuccess)="onAssetIdCopied($event)"
|
|
|
|
|
[cbContent]="entity?.id?.id"
|
|
|
|
|
[fxShow]="!isEdit">
|
|
|
|
|
<mat-icon svgIcon="mdi:clipboard-arrow-left"></mat-icon>
|
|
|
|
|
<span translate>asset.copyId</span>
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mat-padding" fxLayout="column">
|
|
|
|
|
<mat-form-field class="mat-block"
|
|
|
|
|
[fxShow]="!isEdit && isAssignedToCustomer(entity)
|
|
|
|
|
&& !entity?.customerIsPublic && assetScope === 'tenant'">
|
|
|
|
|
<mat-label translate>asset.assignedToCustomer</mat-label>
|
|
|
|
|
<input matInput disabled [ngModel]="entity?.customerTitle">
|
|
|
|
|
</mat-form-field>
|
|
|
|
|
<div class="tb-small" style="padding-bottom: 10px; padding-left: 2px;"
|
|
|
|
|
[fxShow]="!isEdit && entity?.customerIsPublic && (assetScope === 'customer' || assetScope === 'tenant')">
|
|
|
|
|
{{ 'asset.asset-public' | translate }}
|
|
|
|
|
</div>
|
2020-04-27 10:39:18 +03:00
|
|
|
<form [formGroup]="entityForm">
|
2019-08-16 21:22:54 +03:00
|
|
|
<fieldset [disabled]="(isLoading$ | async) || !isEdit">
|
|
|
|
|
<mat-form-field class="mat-block">
|
|
|
|
|
<mat-label translate>asset.name</mat-label>
|
|
|
|
|
<input matInput formControlName="name" required>
|
|
|
|
|
<mat-error *ngIf="entityForm.get('name').hasError('required')">
|
|
|
|
|
{{ 'asset.name-required' | translate }}
|
|
|
|
|
</mat-error>
|
2021-07-01 16:21:44 +03:00
|
|
|
<mat-error *ngIf="entityForm.get('name').hasError('maxlength')">
|
|
|
|
|
{{ 'asset.name-max-length' | translate }}
|
|
|
|
|
</mat-error>
|
2019-08-16 21:22:54 +03:00
|
|
|
</mat-form-field>
|
2022-09-26 18:10:12 +03:00
|
|
|
<tb-asset-profile-autocomplete
|
|
|
|
|
[selectDefaultProfile]="isAdd"
|
|
|
|
|
required
|
|
|
|
|
formControlName="assetProfileId"
|
|
|
|
|
[showDetailsPageLink]="true"
|
|
|
|
|
(assetProfileUpdated)="onAssetProfileUpdated()">
|
|
|
|
|
</tb-asset-profile-autocomplete>
|
2020-02-20 16:35:11 +02:00
|
|
|
<mat-form-field class="mat-block">
|
|
|
|
|
<mat-label translate>asset.label</mat-label>
|
|
|
|
|
<input matInput formControlName="label">
|
2021-07-01 16:21:44 +03:00
|
|
|
<mat-error *ngIf="entityForm.get('label').hasError('maxlength')">
|
|
|
|
|
{{ 'asset.label-max-length' | translate }}
|
|
|
|
|
</mat-error>
|
2020-02-20 16:35:11 +02:00
|
|
|
</mat-form-field>
|
2019-08-16 21:22:54 +03:00
|
|
|
<div formGroupName="additionalInfo">
|
|
|
|
|
<mat-form-field class="mat-block">
|
|
|
|
|
<mat-label translate>asset.description</mat-label>
|
|
|
|
|
<textarea matInput formControlName="description" rows="2"></textarea>
|
|
|
|
|
</mat-form-field>
|
|
|
|
|
</div>
|
|
|
|
|
</fieldset>
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|