-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #574 from TomoyukiAota/feature/handle-heif-thumbna…
…il-generation-failure Display the list of files whose thumbnails cannot be generated.
- Loading branch information
Showing
22 changed files
with
464 additions
and
89 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
54 changes: 54 additions & 0 deletions
54
...p/thumbnail-generation/error-dialog/table/thumbnail-generation-error-table.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
<mat-form-field> | ||
<input matInput (keyup)="applyFilter($any($event.target).value)" placeholder="Filter"> | ||
</mat-form-field> | ||
|
||
<cdk-virtual-scroll-viewport tvsItemSize="48" | ||
class="mat-elevation-z2"> | ||
|
||
<table mat-table [dataSource]="dataSource" matSort class="mat-elevation-z8"> | ||
|
||
<!-- Position Column --> | ||
<ng-container matColumnDef="position"> | ||
<th mat-header-cell | ||
*matHeaderCellDef | ||
mat-sort-header | ||
class="position-column-header-cell"> | ||
No. | ||
</th> | ||
<td mat-cell | ||
*matCellDef="let element" | ||
class="position-column-cell"> | ||
{{ element.position }} | ||
</td> | ||
</ng-container> | ||
|
||
<!-- File Column --> | ||
<ng-container matColumnDef="filePath"> | ||
<th mat-header-cell *matHeaderCellDef mat-sort-header>File</th> | ||
<td mat-cell *matCellDef="let element"> | ||
<div class="file-path-and-buttons" | ||
(mouseenter)="buttons.style.opacity = '1'" | ||
(mouseleave)="buttons.style.opacity = '0'"> | ||
<div class="file-path">{{ element.filePath }}</div> | ||
<div class="buttons" #buttons> | ||
<button (click)="handleOpenFileButtonClicked(element.filePath)"> | ||
<img [src]="launchExternalAppIconDataUrl" | ||
alt="Open File" | ||
title="Open File"> | ||
</button> | ||
<button (click)="handleOpenFolderButtonClicked(element.filePath)"> | ||
<img [src]="folderIconDataUrl" | ||
alt="Open Folder" | ||
title="Open Folder"> | ||
</button> | ||
</div> | ||
</div> | ||
</td> | ||
</ng-container> | ||
|
||
<tr mat-header-row *matHeaderRowDef="displayedColumns; sticky: true"></tr> | ||
<tr mat-row *matRowDef="let row; columns: displayedColumns;"></tr> | ||
|
||
</table> | ||
|
||
</cdk-virtual-scroll-viewport> |
Oops, something went wrong.