2019-08-19 20:09:41 +03:00
|
|
|
<!--
|
|
|
|
|
|
2023-01-31 10:43:56 +02:00
|
|
|
Copyright © 2016-2023 The Thingsboard Authors
|
2019-08-19 20:09:41 +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.
|
|
|
|
|
|
|
|
|
|
-->
|
2019-08-21 13:36:39 +03:00
|
|
|
<mat-form-field appearance="standard" [formGroup]="keysListFormGroup" class="mat-block">
|
|
|
|
|
<mat-chip-list #chipList>
|
2019-08-19 20:09:41 +03:00
|
|
|
<mat-chip
|
|
|
|
|
*ngFor="let key of modelValue"
|
|
|
|
|
[selectable]="!disabled"
|
|
|
|
|
[removable]="!disabled"
|
|
|
|
|
(removed)="remove(key)">
|
|
|
|
|
{{key}}
|
|
|
|
|
<mat-icon matChipRemove *ngIf="!disabled">close</mat-icon>
|
|
|
|
|
</mat-chip>
|
2019-08-21 13:36:39 +03:00
|
|
|
<input matInput type="text" placeholder="{{ !disabled ? (keysText | translate) : '' }}"
|
|
|
|
|
style="max-width: 200px;"
|
2019-08-19 20:09:41 +03:00
|
|
|
#keyInput
|
|
|
|
|
formControlName="key"
|
2019-08-21 13:36:39 +03:00
|
|
|
matAutocompleteOrigin
|
|
|
|
|
#origin="matAutocompleteOrigin"
|
|
|
|
|
[matAutocompleteConnectedTo]="origin"
|
2019-08-20 20:42:48 +03:00
|
|
|
(focusin)="onFocus()"
|
2019-08-19 20:09:41 +03:00
|
|
|
[matAutocomplete]="keyAutocomplete"
|
|
|
|
|
[matChipInputFor]="chipList"
|
|
|
|
|
[matChipInputSeparatorKeyCodes]="separatorKeysCodes"
|
2021-07-07 17:38:51 +03:00
|
|
|
matChipInputAddOnBlur
|
2019-08-19 20:09:41 +03:00
|
|
|
(matChipInputTokenEnd)="add($event)">
|
|
|
|
|
</mat-chip-list>
|
2019-08-21 13:36:39 +03:00
|
|
|
<mat-autocomplete #keyAutocomplete="matAutocomplete"
|
|
|
|
|
class="tb-autocomplete"
|
|
|
|
|
(optionSelected)="selected($event)"
|
2019-08-19 20:09:41 +03:00
|
|
|
[displayWith]="displayKeyFn">
|
|
|
|
|
<mat-option *ngFor="let key of filteredKeys | async" [value]="key">
|
|
|
|
|
<span [innerHTML]="key | highlight:searchText"></span>
|
|
|
|
|
</mat-option>
|
|
|
|
|
</mat-autocomplete>
|
|
|
|
|
</mat-form-field>
|