2019-08-15 20:39:56 +03:00
|
|
|
<!--
|
|
|
|
|
|
2022-01-17 14:07:46 +02:00
|
|
|
Copyright © 2016-2022 The Thingsboard Authors
|
2019-08-15 20:39:56 +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-01-17 18:26:25 +02:00
|
|
|
<mat-form-field appearance="standard" [formGroup]="entityListFormGroup" class="mat-block" floatLabel="always">
|
2023-02-01 15:58:00 +02:00
|
|
|
<mat-label *ngIf="labelText">{{ labelText }}</mat-label>
|
2023-01-17 18:26:25 +02:00
|
|
|
<mat-chip-list #chipList formControlName="entities" [required]="required">
|
2019-08-15 20:39:56 +03:00
|
|
|
<mat-chip
|
|
|
|
|
*ngFor="let entity of entities"
|
|
|
|
|
[selectable]="!disabled"
|
|
|
|
|
[removable]="!disabled"
|
|
|
|
|
(removed)="remove(entity)">
|
|
|
|
|
{{entity.name}}
|
|
|
|
|
<mat-icon matChipRemove *ngIf="!disabled">close</mat-icon>
|
|
|
|
|
</mat-chip>
|
2023-02-01 15:58:00 +02:00
|
|
|
<input matInput type="text" placeholder="{{ !disabled ? placeholderText : '' }}"
|
2019-08-20 20:42:48 +03:00
|
|
|
style="max-width: 200px;"
|
2019-08-15 20:39:56 +03:00
|
|
|
#entityInput
|
2019-08-28 16:02:27 +03:00
|
|
|
(focusin)="onFocus()"
|
2019-08-15 20:39:56 +03:00
|
|
|
formControlName="entity"
|
2019-08-20 20:42:48 +03:00
|
|
|
matAutocompleteOrigin
|
|
|
|
|
#origin="matAutocompleteOrigin"
|
|
|
|
|
[matAutocompleteConnectedTo]="origin"
|
2019-08-15 20:39:56 +03:00
|
|
|
[matAutocomplete]="entityAutocomplete"
|
|
|
|
|
[matChipInputFor]="chipList">
|
|
|
|
|
</mat-chip-list>
|
|
|
|
|
<mat-autocomplete #entityAutocomplete="matAutocomplete"
|
2019-08-21 13:36:39 +03:00
|
|
|
class="tb-autocomplete"
|
2019-08-15 20:39:56 +03:00
|
|
|
[displayWith]="displayEntityFn">
|
|
|
|
|
<mat-option *ngFor="let entity of filteredEntities | async" [value]="entity">
|
|
|
|
|
<span [innerHTML]="entity.name | highlight:searchText"></span>
|
|
|
|
|
</mat-option>
|
|
|
|
|
<mat-option *ngIf="!(filteredEntities | async)?.length" [value]="null">
|
|
|
|
|
<span>
|
|
|
|
|
{{ translate.get('entity.no-entities-matching', {entity: searchText}) | async }}
|
|
|
|
|
</span>
|
|
|
|
|
</mat-option>
|
|
|
|
|
</mat-autocomplete>
|
2019-08-27 20:07:09 +03:00
|
|
|
<mat-error *ngIf="entityListFormGroup.get('entities').hasError('required')">
|
2023-02-01 15:58:00 +02:00
|
|
|
{{ requiredText }}
|
2019-08-15 20:39:56 +03:00
|
|
|
</mat-error>
|
|
|
|
|
</mat-form-field>
|