2019-08-15 20:39:56 +03:00
|
|
|
<!--
|
|
|
|
|
|
2023-01-31 10:43:56 +02:00
|
|
|
Copyright © 2016-2023 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-03-07 12:14:49 +02:00
|
|
|
<mat-form-field [formGroup]="entityListFormGroup" class="mat-block" [ngClass]="{'tb-chip-list': !labelText}" [subscriptSizing]="subscriptSizing">
|
2023-02-01 15:58:00 +02:00
|
|
|
<mat-label *ngIf="labelText">{{ labelText }}</mat-label>
|
2023-02-17 19:24:01 +02:00
|
|
|
<mat-chip-grid #chipList formControlName="entities">
|
|
|
|
|
<mat-chip-row
|
2019-08-15 20:39:56 +03:00
|
|
|
*ngFor="let entity of entities"
|
|
|
|
|
[removable]="!disabled"
|
|
|
|
|
(removed)="remove(entity)">
|
|
|
|
|
{{entity.name}}
|
|
|
|
|
<mat-icon matChipRemove *ngIf="!disabled">close</mat-icon>
|
2023-02-17 19:24:01 +02:00
|
|
|
</mat-chip-row>
|
2023-02-01 15:58:00 +02:00
|
|
|
<input matInput type="text" placeholder="{{ !disabled ? placeholderText : '' }}"
|
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">
|
2023-02-17 19:24:01 +02:00
|
|
|
</mat-chip-grid>
|
2019-08-15 20:39:56 +03:00
|
|
|
<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>
|
2023-03-07 12:14:49 +02:00
|
|
|
<mat-hint *ngIf="hint">
|
|
|
|
|
{{ hint }}
|
|
|
|
|
</mat-hint>
|
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>
|
2023-02-10 18:31:05 +02:00
|
|
|
<div matSuffix>
|
|
|
|
|
<ng-content select="[matSuffix]"></ng-content>
|
|
|
|
|
</div>
|
2019-08-15 20:39:56 +03:00
|
|
|
</mat-form-field>
|