2019-11-08 14:17:15 +02:00
|
|
|
<!--
|
|
|
|
|
|
2023-01-31 10:43:56 +02:00
|
|
|
Copyright © 2016-2023 The Thingsboard Authors
|
2019-11-08 14:17:15 +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.
|
|
|
|
|
|
|
|
|
|
-->
|
|
|
|
|
<div class="tb-container">
|
2022-05-11 15:58:15 +03:00
|
|
|
<label class="tb-title" [ngClass]="{'tb-required': !disabled && required}">{{ label }}</label>
|
2019-11-08 14:17:15 +02:00
|
|
|
<ng-container #flow="flow"
|
2021-04-09 11:43:11 +03:00
|
|
|
[flowConfig]="{allowDuplicateUploads: true}">
|
2019-11-08 14:17:15 +02:00
|
|
|
<div class="tb-file-select-container">
|
|
|
|
|
<div class="tb-file-clear-container">
|
|
|
|
|
<button mat-button mat-icon-button color="primary"
|
|
|
|
|
type="button"
|
|
|
|
|
(click)="clearFile()"
|
|
|
|
|
class="tb-file-clear-btn"
|
|
|
|
|
matTooltip="{{ 'action.remove' | translate }}"
|
|
|
|
|
matTooltipPosition="above">
|
|
|
|
|
<mat-icon>close</mat-icon>
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="drop-area tb-flow-drop"
|
|
|
|
|
flowDrop
|
|
|
|
|
[flow]="flow.flowJs">
|
2022-05-11 15:58:15 +03:00
|
|
|
<div class="upload-label">
|
|
|
|
|
<mat-icon>cloud_upload</mat-icon>
|
|
|
|
|
<span>{{ dropLabel }}</span>
|
|
|
|
|
<button type="button" mat-button color="primary" class="browse-file">
|
|
|
|
|
<label for="{{inputId}}">{{ (multipleFile ? 'file-input.browse-files' : 'file-input.browse-file') | translate}}</label>
|
|
|
|
|
</button>
|
|
|
|
|
<input class="file-input" flowButton #flowInput type="file" [flow]="flow.flowJs" [flowAttributes]="{accept: accept}" id="{{inputId}}">
|
|
|
|
|
</div>
|
2019-11-08 14:17:15 +02:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</ng-container>
|
|
|
|
|
</div>
|
|
|
|
|
<div>
|
2020-01-16 12:50:40 +02:00
|
|
|
<tb-error *ngIf="!fileName && required && requiredAsError" error="{{ noFileText | translate }}"></tb-error>
|
|
|
|
|
<div *ngIf="!fileName && !requiredAsError" translate>{{ noFileText }}</div>
|
2019-11-08 14:17:15 +02:00
|
|
|
<div *ngIf="fileName">{{ fileName }}</div>
|
|
|
|
|
</div>
|