2019-10-10 13:00:29 +03:00
|
|
|
<!--
|
|
|
|
|
|
2024-01-09 10:46:16 +02:00
|
|
|
Copyright © 2016-2024 The Thingsboard Authors
|
2019-10-10 13:00:29 +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.
|
|
|
|
|
|
|
|
|
|
-->
|
2023-02-23 19:01:53 +02:00
|
|
|
<form [formGroup]="entityAliasFormGroup" (ngSubmit)="save()" style="width: 700px;">
|
2020-04-10 15:04:12 +03:00
|
|
|
<mat-toolbar color="primary">
|
2019-10-10 13:00:29 +03:00
|
|
|
<h2>{{ (isAdd ? 'alias.add' : 'alias.edit') | translate }}</h2>
|
2024-10-10 15:09:59 +03:00
|
|
|
<span class="flex-1"></span>
|
2020-04-21 11:53:26 +03:00
|
|
|
<button mat-icon-button
|
2019-10-10 13:00:29 +03:00
|
|
|
(click)="cancel()"
|
|
|
|
|
type="button">
|
|
|
|
|
<mat-icon class="material-icons">close</mat-icon>
|
|
|
|
|
</button>
|
|
|
|
|
</mat-toolbar>
|
|
|
|
|
<mat-progress-bar color="warn" mode="indeterminate" *ngIf="isLoading$ | async">
|
|
|
|
|
</mat-progress-bar>
|
|
|
|
|
<div mat-dialog-content>
|
2024-03-06 13:17:27 +02:00
|
|
|
<fieldset class="tb-form-panel no-padding no-border no-gap" [disabled]="isLoading$ | async">
|
|
|
|
|
<div class="tb-form-row column-xs align-start no-border no-gap no-padding tb-standard-fields">
|
|
|
|
|
<mat-form-field class="flex">
|
|
|
|
|
<mat-label translate>alias.name</mat-label>
|
|
|
|
|
<input matInput formControlName="alias" required>
|
|
|
|
|
<mat-error *ngIf="entityAliasFormGroup.get('alias').hasError('required')">
|
|
|
|
|
{{ 'alias.name-required' | translate }}
|
|
|
|
|
</mat-error>
|
|
|
|
|
<mat-error *ngIf="entityAliasFormGroup.get('alias').hasError('duplicateAliasName')">
|
|
|
|
|
{{ 'alias.duplicate-alias' | translate }}
|
|
|
|
|
</mat-error>
|
|
|
|
|
</mat-form-field>
|
|
|
|
|
<div class="tb-resolve-multiple-switch" tb-hint-tooltip-icon="{{ 'alias.resolve-multiple-hint' | translate }}">
|
|
|
|
|
<mat-slide-toggle class="mat-slide" formControlName="resolveMultiple">
|
|
|
|
|
{{ 'alias.resolve-multiple' | translate }}
|
|
|
|
|
</mat-slide-toggle>
|
2019-10-10 13:00:29 +03:00
|
|
|
</div>
|
|
|
|
|
</div>
|
2024-03-06 13:17:27 +02:00
|
|
|
<tb-entity-filter formControlName="filter"
|
|
|
|
|
[resolveMultiple]="entityAliasFormGroup.get('resolveMultiple').value"
|
|
|
|
|
(resolveMultipleChanged)="entityAliasFormGroup.get('resolveMultiple').patchValue($event)"
|
|
|
|
|
[allowedEntityTypes]="allowedEntityTypes">
|
|
|
|
|
</tb-entity-filter>
|
|
|
|
|
<tb-error [error]="entityAliasFormGroup.hasError('noEntityMatched')
|
|
|
|
|
? translate.instant('alias.entity-filter-no-entity-matched') : ''"></tb-error>
|
2019-10-10 13:00:29 +03:00
|
|
|
</fieldset>
|
|
|
|
|
</div>
|
2024-10-15 13:23:36 +03:00
|
|
|
<div mat-dialog-actions class="flex items-center justify-end">
|
2019-10-10 13:00:29 +03:00
|
|
|
<button mat-button color="primary"
|
|
|
|
|
type="button"
|
|
|
|
|
[disabled]="(isLoading$ | async)"
|
|
|
|
|
(click)="cancel()" cdkFocusInitial>
|
|
|
|
|
{{ 'action.cancel' | translate }}
|
|
|
|
|
</button>
|
2020-10-14 12:32:07 +03:00
|
|
|
<button mat-raised-button color="primary"
|
|
|
|
|
type="submit"
|
|
|
|
|
[disabled]="(isLoading$ | async) || entityAliasFormGroup.invalid || !entityAliasFormGroup.dirty">
|
|
|
|
|
{{ (isAdd ? 'action.add' : 'action.save') | translate }}
|
|
|
|
|
</button>
|
2019-10-10 13:00:29 +03:00
|
|
|
</div>
|
|
|
|
|
</form>
|