thingsboard/ui-ngx/src/app/shared/components/file-input.component.html

62 lines
2.4 KiB
HTML
Raw Normal View History

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">
<ng-container *ngIf="hint; else title">
<label class="tb-title pointer-event" [class.tb-required]="!disabled && required"
tb-hint-tooltip-icon="{{ hint }}">{{ label }}
</label>
</ng-container>
<ng-template #title>
<label class="tb-title" [class.tb-required]="!disabled && required">{{ label }}</label>
</ng-template>
2019-11-08 14:17:15 +02:00
<ng-container #flow="flow"
[flowConfig]="{allowDuplicateUploads: true}">
2019-11-08 14:17:15 +02:00
<div class="tb-file-select-container">
<div class="tb-file-clear-container">
2023-02-17 19:24:01 +02:00
<button mat-icon-button color="primary"
2019-11-08 14:17:15 +02:00
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">
2023-04-08 00:57:57 +03:00
<label
for="{{inputId}}">{{ (multipleFile ? 'file-input.browse-files' : 'file-input.browse-file') | translate}}</label>
2022-05-11 15:58:15 +03:00
</button>
2023-04-08 00:57:57 +03:00
<input class="file-input" flowButton #flowInput type="file" [flow]="flow.flowJs"
[flowAttributes]="{accept: accept}" id="{{inputId}}">
2022-05-11 15:58:15 +03:00
</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>