A Blazor wrapper for the browser File API
The API provides a standard for representing file objects in the browser and ways to select them and access their data. One of the most used interfaces that is at the core of this API is the Blob interface. This project implements a wrapper around the API for Blazor so that we can easily and safely interact with files in the browser.
The sample project can be demoed at https://kristofferstrube.github.io/Blazor.FileAPI/
On each page you can find the corresponding code for the example in the top right corner.
On the API Coverage Status page you can get an overview over what parts of the API we support currently.
You need to install .NET 7.0 or newer to use the library.
You can install the package via NuGet with the Package Manager in your IDE or alternatively using the command line:
dotnet add package KristofferStrube.Blazor.FileAPIThe package can be used in Blazor WebAssembly and Blazor Server projects.
You also need to reference the package in order to use it in your pages. This can be done in _Import.razor by adding the following.
@using KristofferStrube.Blazor.FileAPIMost of this library is wrapper classes which can be instantiated from your code using the static Create and CreateAsync methods on the wrapper classes.
An example could be to create an instance of a Blob that contains the text "Hello World!" and gets its Size and Type, read it as a ReadableStream, read as text directly, and slice it into a new Blob like this.
await using Blob blob = await Blob.CreateAsync(
JSRuntime,
blobParts: new BlobPart[] {
"Hello ",
new byte[] { 0X57, 0X6f, 0X72, 0X6c, 0X64, 0X21 }
},
options: new() { Type = "text/plain" }
);
ulong size = await blob.GetSizeAsync(); // 12
string type = await blob.GetTypeAsync(); // "text/plain"
await using ReadableStream stream = await blob.StreamAsync();
string text = await blob.TextAsync(); // "Hello World!"
await using Blob worldBlob = await blob.SliceAsync(6, 11); // Blob containing "World"All creator methods take an IJSRuntime instance as the first parameter. The above sample will work in both Blazor Server and Blazor WebAssembly. If we only want to work with Blazor WebAssembly we can use the InProcess variant of the wrapper class. This is equivalent to the relationship between IJSRuntime and IJSInProcessRuntime. We can recreate the above sample using the BlobInProcess which will simplify some of the methods we can call on the Blob and how we access attributes.
await using BlobInProcess blob = await BlobInProcess.CreateAsync(
JSRuntime,
blobParts: new BlobPart[] {
"Hello ",
new byte[] { 0X57, 0X6f, 0X72, 0X6c, 0X64, 0X21 }
},
options: new() { Type = "text/plain" }
);
ulong size = blob.Size; // 12
string type = blob.Type; // "text/plain"
await using ReadableStreamInProcess stream = await blob.StreamAsync();
string text = await blob.TextAsync(); // "Hello World!"
await using BlobInProcess worldBlob = blob.Slice(6, 11); // BlobInProcess containing "World"Some of the methods wrap a Promise so even in the InProcess variant we need to await it like we see for TextAsync above.
If you have an IJSObjectReference or an IJSInProcessObjectReference for a type equivalent to one of the classes wrapped in this package then you can construct a wrapper for it using another set of overloads of the static Create and CreateAsync methods on the appropriate class. In the below example we create wrapper instances from existing JS references to a File object.
// Blazor Server compatible.
IJSObjectReference jSFile; // JS Reference from other package or your own JSInterop.
await using File file = File.CreateAsync(JSRuntime, jSFile, new() { DisposesJSReference = true });
// InProcess only supported in Blazor WebAssembly.
IJSInProcessObjectReference jSFileInProcess; // JS Reference from other package or your own JSInterop.
await using FileInProcess fileInProcess = await File.CreateAsync(JSRuntime, jSFileInProcess);We have a single service in this package that wraps the URL interface. An easy way to make the service available in all your pages is by registering it in the IServiceCollection so that it can be dependency injected in the pages that need it. This is done in Program.cs by adding the following before you build the host and run it.
var builder = WebAssemblyHostBuilder.CreateDefault(args);
builder.RootComponents.Add<App>("#app");
builder.RootComponents.Add<HeadOutlet>("head::after");
// Other services are added.
builder.Services.AddURLService();
await builder.Build().RunAsync();Then the service can be injected in a page and be used to create Blob URLs and revoke them like so:
@implements IAsyncDisposable
@inject IURLService URL;
<img src="@blobURL" alt="Some blob as image" />
@code {
private string blobURL = "";
protected override async Task OnInitializedAsync()
{
Blob blob; // We have some blob from somewhere.
blobURL = await URL.CreateObjectURLAsync(blob);
}
public async ValueTask DisposeAsync()
{
await URL.RevokeObjectURLAsync(blobURL);
}
}You can likewise add the InProcess variant of the service (IURLServiceInProcess) using the AddURLServiceInProcess extension method which is only supported in Blazor WebAssembly projects.
Feel free to open issues on the repository if you find any errors with the package or have wishes for features.
The library uses the following other packages to support its features:
- https://github.com/KristofferStrube/Blazor.Streams (To return a rich
ReadableStreamfrom theStreamAsyncmethod on aBlob) - https://github.com/KristofferStrube/Blazor.DOM (To implement
FileReaderwhich extendsEventTargetand to implementProgressEventwhich extendsEvent)
The library is used in the following other packages to support their features:
- https://github.com/KristofferStrube/Blazor.FileSystem (to return a rich
Fileobject when getting theFilefrom aFileSystemFileHandleand when writing aBlobto aFileSystemWritableFileSystem) - https://github.com/KristofferStrube/Blazor.MediaStreamRecording (to get the data from a
BlobEventwhich is created when a chunk of a stream has been recorded)
This repository was build with inspiration and help from the following series of articles: