All Files
Images
Videos
All Media
Photography
Non-Photography
{#if showSelectAll}
{allSelected ? 'Clear All' : 'Select All'}
{/if}
{#if total > 0}
{total} file{total !== 1 ? 's' : ''} found
{/if}
{#if loading && media.length === 0}
Loading media...
{:else if media.length === 0}
No media found
Try adjusting your search or upload some files
{:else}
{#each media as item (item.id)}
handleMediaClick(item)} >
{#if item.mimeType?.startsWith('image/')}
{:else}
{/if} {#if mode === 'multiple'}
{/if} {#if isSelected(item)}
{/if}
{item.filename}
{#if item.isPhotography}
Photo
{/if} {#if item.altText}
Alt
{:else}
No Alt
{/if}
{formatFileSize(item.size)}
{#if item.width && item.height}
{item.width}×{item.height}
{/if}
{/each}
{#if hasMore}
{#if loading}
Loading... {:else} Load More {/if}
{/if} {/if}