Image library

IsabyteImageLibrary

Reusable image browser/selector with grid/list views, filtering, sorting, selection, download, and ZIP export.

Image Library Parameters
Current Configuration
📋
<IsabyteImageLibrary Items="_items"
                     Height="500px"
                     OnImageChosen="HandleImageChosen"
                     OnCancel="HandleCancel" />

@code {
private List<ImageLibraryItem> _items = new()
{
    new ImageLibraryItem
    {
        Id = Guid.NewGuid(),
        Url = "https://example.com/images/mountain.jpg",
        ThumbnailUrl = "https://example.com/thumbs/mountain.jpg",
        Name = "Mountain Sunrise",
        Width = 800,
        Height = 600,
        FileSizeBytes = 245_000,
        MimeType = "image/jpeg",
        DateAdded = DateTime.Today
    }
};

private Task HandleImageChosen(ImageLibrarySelection selection)
{
    // selection.SelectedItems holds the chosen image(s)
    return Task.CompletedTask;
}

private Task HandleCancel()
{
    return Task.CompletedTask;
}
}
An unhandled error has occurred. Reload 🗙

Rejoining the server...

Rejoin failed... trying again in seconds.

Failed to rejoin.
Please retry or reload the page.

The session has been paused by the server.

Failed to resume the session.
Please reload the page.