next-ucap-messenger/projects/ucap-webmessenger-ui/src/lib/components/file-upload-queue.component.html

32 lines
817 B
HTML
Raw Normal View History

2019-11-05 04:46:17 +00:00
<div fxLayout="row wrap" fxFlex="100" class="ucap-file-upload-queue-container">
2019-10-21 04:36:58 +00:00
<div
2019-10-29 09:18:16 +00:00
fxLayout="column"
2019-10-21 04:36:58 +00:00
fxFlex="100"
2019-10-31 08:09:38 +00:00
fxFlex.gt-xs="100"
2019-10-21 04:36:58 +00:00
fxFlex.gt-md="25"
2019-11-05 04:46:17 +00:00
*ngFor="let fileUploadItem of fileUploadItems"
2019-10-21 04:36:58 +00:00
>
2019-10-29 09:18:16 +00:00
<div fxLayout="row">
<div>
<mat-icon>image</mat-icon>
</div>
2019-11-05 04:46:17 +00:00
<div>{{ fileUploadItem.file.name }}</div>
<!-- <div (click)="onClickClear(fileUploadItem)">
2019-10-29 09:18:16 +00:00
<mat-icon>clear</mat-icon>
2019-11-05 04:46:17 +00:00
</div> -->
2019-10-21 04:36:58 +00:00
</div>
2019-10-29 09:18:16 +00:00
<div fxLayout="row">
2019-11-05 04:46:17 +00:00
<mat-progress-bar
mode="determinate"
[value]="fileUploadItem.uploadingProgress$ | async"
>
</mat-progress-bar>
2019-10-21 04:36:58 +00:00
</div>
</div>
2019-10-31 08:09:38 +00:00
<div *ngIf="uploadItems" fxLayout="column">
<div>여기에 파일을 Drop하시면 업로드 됩니다.</div>
2019-11-05 04:46:17 +00:00
<div></div>
2019-10-31 08:09:38 +00:00
</div>
2019-10-21 04:36:58 +00:00
</div>