2019-10-11 19:22:03 +03:00
|
|
|
<!--
|
|
|
|
|
|
2022-01-17 14:07:46 +02:00
|
|
|
Copyright © 2016-2022 The Thingsboard Authors
|
2019-10-11 19:22:03 +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-06-30 19:37:50 +03:00
|
|
|
<mat-form-field [floatLabel]="showLabel ? 'auto' : 'always'"
|
|
|
|
|
[hideRequiredMarker]="!showLabel" [formGroup]="selectEntityAliasFormGroup" class="mat-block">
|
|
|
|
|
<mat-label *ngIf="!showLabel"></mat-label>
|
2019-10-11 19:22:03 +03:00
|
|
|
<input matInput type="text" placeholder="{{ 'entity.entity-alias' | translate }}"
|
|
|
|
|
#entityAliasInput
|
|
|
|
|
formControlName="entityAlias"
|
|
|
|
|
(focusin)="onFocus()"
|
2019-10-21 19:57:18 +03:00
|
|
|
[required]="tbRequired"
|
2019-10-11 19:22:03 +03:00
|
|
|
(keydown)="entityAliasEnter($event)"
|
|
|
|
|
(keypress)="entityAliasEnter($event)"
|
|
|
|
|
[matAutocomplete]="entityAliasAutocomplete">
|
|
|
|
|
<button *ngIf="selectEntityAliasFormGroup.get('entityAlias').value && !disabled"
|
|
|
|
|
type="button"
|
2020-04-21 11:53:26 +03:00
|
|
|
matSuffix mat-icon-button aria-label="Clear"
|
2019-10-11 19:22:03 +03:00
|
|
|
(click)="clear()">
|
|
|
|
|
<mat-icon class="material-icons">close</mat-icon>
|
|
|
|
|
</button>
|
|
|
|
|
<mat-autocomplete class="tb-autocomplete"
|
|
|
|
|
#entityAliasAutocomplete="matAutocomplete"
|
|
|
|
|
[displayWith]="displayEntityAliasFn">
|
|
|
|
|
<mat-option *ngFor="let entityAlias of filteredEntityAliases | async" [value]="entityAlias">
|
|
|
|
|
<span [innerHTML]="entityAlias.alias | highlight:searchText"></span>
|
|
|
|
|
</mat-option>
|
|
|
|
|
<mat-option *ngIf="!(filteredEntityAliases | async)?.length" [value]="null" class="tb-not-found">
|
|
|
|
|
<div class="tb-not-found-content" (click)="$event.stopPropagation()">
|
|
|
|
|
<div *ngIf="!textIsNotEmpty(searchText); else searchNotEmpty">
|
|
|
|
|
<span translate>entity.no-aliases-found</span>
|
|
|
|
|
</div>
|
|
|
|
|
<ng-template #searchNotEmpty>
|
|
|
|
|
<span>
|
|
|
|
|
{{ translate.get('entity.no-alias-matching',
|
|
|
|
|
{alias: truncate.transform(searchText, true, 6, '...')}) | async }}
|
|
|
|
|
</span>
|
|
|
|
|
</ng-template>
|
|
|
|
|
<span>
|
|
|
|
|
<a translate (click)="createEntityAlias($event, searchText)">entity.create-new-alias</a>
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
</mat-option>
|
|
|
|
|
</mat-autocomplete>
|
2019-10-21 19:57:18 +03:00
|
|
|
<mat-error *ngIf="!modelValue && tbRequired">
|
2019-10-11 19:22:03 +03:00
|
|
|
{{ 'entity.alias-required' | translate }}
|
|
|
|
|
</mat-error>
|
|
|
|
|
</mat-form-field>
|