72 lines
3.1 KiB
HTML
72 lines
3.1 KiB
HTML
<!--
|
|
|
|
Copyright © 2016-2024 The Thingsboard Authors
|
|
|
|
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]="selectDashboardFormGroup"
|
|
[class]="{'tb-inline-field': inlineField, 'flex': inlineField,
|
|
'tb-suffix-absolute': (inlineField && !selectDashboardFormGroup.get('dashboard').value)}"
|
|
class="mat-block"
|
|
[floatLabel]="floatLabel"
|
|
[appearance]="inlineField ? 'outline' : appearance"
|
|
[subscriptSizing]="inlineField ? 'dynamic' : subscriptSizing">
|
|
<mat-label *ngIf="!inlineField && label">{{ label }}</mat-label>
|
|
<input matInput type="text"
|
|
#dashboardInput
|
|
placeholder="{{ placeholder }}"
|
|
formControlName="dashboard"
|
|
(focusin)="onFocus()"
|
|
[required]="required"
|
|
[matAutocomplete]="dashboardAutocomplete"
|
|
[fxShow]="!useDashboardLink || !disabled || !selectDashboardFormGroup.get('dashboard').value">
|
|
<a *ngIf="useDashboardLink && selectDashboardFormGroup.get('dashboard').value && disabled" aria-label="Open device profile" [routerLink]=dashboardURL>
|
|
{{ displayDashboardFn(selectDashboardFormGroup.get('dashboard').value) }}
|
|
</a>
|
|
<button *ngIf="selectDashboardFormGroup.get('dashboard').value && !disabled"
|
|
type="button"
|
|
matSuffix mat-icon-button aria-label="Clear"
|
|
(click)="clear()">
|
|
<mat-icon class="material-icons">close</mat-icon>
|
|
</button>
|
|
<mat-icon matSuffix
|
|
matTooltipPosition="above"
|
|
matTooltipClass="tb-error-tooltip"
|
|
[matTooltip]="requiredText | translate"
|
|
*ngIf="inlineField && requiredText && selectDashboardFormGroup.get('dashboard').hasError('required')
|
|
&& selectDashboardFormGroup.get('dashboard').touched"
|
|
class="tb-error">
|
|
warning
|
|
</mat-icon>
|
|
<mat-autocomplete
|
|
class="tb-autocomplete"
|
|
#dashboardAutocomplete="matAutocomplete"
|
|
[displayWith]="displayDashboardFn">
|
|
<mat-option *ngFor="let dashboard of filteredDashboards | async" [value]="dashboard">
|
|
<span [innerHTML]="dashboard.title | highlight:searchText"></span>
|
|
</mat-option>
|
|
<mat-option *ngIf="!(filteredDashboards | async)?.length" [value]="null">
|
|
<span>
|
|
{{ translate.get('dashboard.no-dashboards-matching', {entity: searchText}) | async }}
|
|
</span>
|
|
</mat-option>
|
|
</mat-autocomplete>
|
|
<mat-error *ngIf="!inlineField">
|
|
<ng-content select="[tb-error]"></ng-content>
|
|
</mat-error>
|
|
<mat-hint *ngIf="!inlineField">
|
|
<ng-content select="[tb-hint]"></ng-content>
|
|
</mat-hint>
|
|
</mat-form-field>
|