51 lines
2.4 KiB
HTML
51 lines
2.4 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]="branchFormGroup" class="mat-block" [floatLabel]="(selectionMode || emptyPlaceholder) ? 'always' : 'auto'" subscriptSizing="{{ subscriptSizing }}">
|
|
<mat-label>{{ 'version-control.branch' | translate }}</mat-label>
|
|
<input matInput type="text" placeholder="{{emptyPlaceholder || ((loading ? 'common.loading' : 'version-control.select-branch') | translate)}}"
|
|
#branchInput
|
|
#branchMatInput="matInput"
|
|
formControlName="branch"
|
|
(keydown.enter)="branchInput.blur(); autoCompleteTrigger.closePanel();"
|
|
(focusin)="onFocus()"
|
|
(blur)="onBlur()"
|
|
[required]="required"
|
|
[matAutocomplete]="branchAutocomplete">
|
|
<button *ngIf="branchFormGroup.get('branch').value && !disabled"
|
|
type="button"
|
|
matSuffix mat-icon-button aria-label="Clear"
|
|
(click)="clear()">
|
|
<mat-icon class="material-icons">close</mat-icon>
|
|
</button>
|
|
<mat-autocomplete
|
|
class="tb-autocomplete"
|
|
(closed)="!branchMatInput.focused ? onPanelClosed() : false"
|
|
#branchAutocomplete="matAutocomplete"
|
|
[displayWith]="displayBranchFn">
|
|
<mat-option *ngFor="let branch of filteredBranches | async" [value]="branch" class="branch-option">
|
|
<mat-icon class="tb-mat-18" *ngIf="selectionMode && branch.name === modelValue">check</mat-icon>
|
|
<span class="check-placeholder" *ngIf="selectionMode && branch.name !== modelValue"></span>
|
|
<span [innerHTML]="branch.name | highlight:searchText"></span>
|
|
<small *ngIf="branch.default" class="default-branch">{{ 'version-control.default' | translate }}</small>
|
|
</mat-option>
|
|
</mat-autocomplete>
|
|
<mat-error *ngIf="branchFormGroup.get('branch').hasError('required')">
|
|
{{ 'version-control.branch-required' | translate }}
|
|
</mat-error>
|
|
</mat-form-field>
|