2020-03-26 14:49:26 +02:00
|
|
|
<!--
|
|
|
|
|
|
2022-01-17 14:07:46 +02:00
|
|
|
Copyright © 2016-2022 The Thingsboard Authors
|
2020-03-26 14:49:26 +02: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.
|
|
|
|
|
|
|
|
|
|
-->
|
|
|
|
|
<mat-form-field [formGroup]="selectDeviceGatewayFormGroup" class="mat-block">
|
|
|
|
|
<input matInput type="text" #deviceGatewayInput placeholder="{{ 'gateway.gateway-name' | translate }}"
|
|
|
|
|
formControlName="gateway"
|
|
|
|
|
(focusin)="onFocus()"
|
|
|
|
|
[required]="required"
|
|
|
|
|
(keydown)="gatewayNameEnter($event)"
|
|
|
|
|
(keypress)="gatewayNameEnter($event)"
|
|
|
|
|
[matAutocomplete]="gatewayAutocomplete"
|
|
|
|
|
>
|
2020-04-28 18:47:20 +03:00
|
|
|
<button *ngIf="selectDeviceGatewayFormGroup.get('gateway').value && !isStateForm" (click)="clear()"
|
2020-03-26 14:49:26 +02:00
|
|
|
type="button" matSuffix mat-icon-button aria-label="Clear">
|
|
|
|
|
<mat-icon class="material-icons">close</mat-icon>
|
|
|
|
|
</button>
|
|
|
|
|
<mat-autocomplete class="tb-autocomplete"
|
|
|
|
|
#gatewayAutocomplete="matAutocomplete"
|
|
|
|
|
[displayWith]="displayGatewayFn">
|
|
|
|
|
<mat-option *ngFor="let gateway of filteredGateways | async" [value]="gateway">
|
|
|
|
|
<span [innerHTML]="gateway.name | highlight:searchText"></span>
|
|
|
|
|
</mat-option>
|
|
|
|
|
<mat-option *ngIf="!(filteredGateways | 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>gateway.no-gateway-found</span>
|
|
|
|
|
</div>
|
|
|
|
|
<ng-template #searchNotEmpty>
|
|
|
|
|
<span translate [translateParams]="{item: searchText | truncate:true:6:'...'}">
|
|
|
|
|
gateway.no-gateway-matching
|
|
|
|
|
</span>
|
|
|
|
|
</ng-template>
|
|
|
|
|
<span>
|
|
|
|
|
<a translate (click)="createGateway($event, searchText)">gateway.create-new-gateway</a>
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
</mat-option>
|
|
|
|
|
</mat-autocomplete>
|
|
|
|
|
<mat-error *ngIf="selectDeviceGatewayFormGroup.get('gateway').hasError('required')">
|
|
|
|
|
{{ 'gateway.gateway-name-required' | translate }}
|
|
|
|
|
</mat-error>
|
|
|
|
|
</mat-form-field>
|