KristofferStrube.Blazor.WebIDL
0.3.0
Prefix Reserved
See the version list below for details.
dotnet add package KristofferStrube.Blazor.WebIDL --version 0.3.0
NuGet\Install-Package KristofferStrube.Blazor.WebIDL -Version 0.3.0
<PackageReference Include="KristofferStrube.Blazor.WebIDL" Version="0.3.0" />
paket add KristofferStrube.Blazor.WebIDL --version 0.3.0
#r "nuget: KristofferStrube.Blazor.WebIDL, 0.3.0"
// Install KristofferStrube.Blazor.WebIDL as a Cake Addin #addin nuget:?package=KristofferStrube.Blazor.WebIDL&version=0.3.0 // Install KristofferStrube.Blazor.WebIDL as a Cake Tool #tool nuget:?package=KristofferStrube.Blazor.WebIDL&version=0.3.0
Blazor.WebIDL
A Blazor wrapper for types and interfaces used in and defined in the standard WebIDL specification. Among these are declarations that define specific behavior for interfaces and the standard exception definition types used across all WebIDL based APIs.
Demo
The sample project can be demoed at https://kristofferstrube.github.io/Blazor.WebIDL/
On each page you can find the corresponding code for the example in the top right corner.
Exceptions
The specification defines the types and names for all the standard exceptions and the standard names for DomExceptions.
This can be used to catch strongly typed JS errors from Blazor. An example could be trying to access the clipboard which can fail in many ways.
@using KristofferStrube.Blazor.WebIDL.Exceptions;
@inject IErrorHandlingJSRuntime ErrorHandlingJSRuntime
@inject ILogger Logger
@code {
protected override async Task OnAfterRenderAsync(bool firstRender)
{
if (!firstRender) return;
try
{
var result = await ErrorHandlingJSRuntime.InvokeAsync<string>("navigator.clipboard.readText");
Console.WriteLine(result);
}
catch (NotAllowedErrorException exception)
{
Logger.LogWarning(exception, "The user has not given permission to read the clipboard.");
}
catch (DOMException exception)
{
Logger.LogError(exception, $"{exception.Name} (which is a DOMException): \"{exception.Message}\"");
}
catch (WebIDLException exception)
{
Logger.LogError(exception, $"{exception.GetType().Name}: \"{exception.Message}\"");
}
}
}
Standard behavior and method definitions
The standard WebIDL specification make definitions that are used across all API specifications that use WebIDL for defining their interfaces.
Declarations like Iterable
, Asynchronously iterable
, Maplike
, Setlike
define expected behavior and methods that should apply to the interfaces that use these definitions. This wrapper defines C# interfaces for these declarations that have implementations for the expected methods. This makes it easy and safe to implement wrappers for interfaces that define i.e. Setlike behavior.
We have currently implemented 2 interfaces for the Setlike
declaration called IReadonlySetlike
and IReadWriteSetlike
where IReadWriteSetlike
inherits from IReadonlySetlike
They can be used like this to make a very simple wrapper for the JS Set
type:
public class Set : IReadWriteSetlike<Set>
{
public IJSObjectReference JSReference { get; }
public IJSRuntime JSRuntime { get; }
public static async Task<Set> CreateAsync<T>(IJSRuntime jSRuntime, IEnumerable<T>? iterable = null)
{
var jSInstance = await jSRuntime.InvokeAsync<IJSObjectReference>("constructSet", iterable);
return new Set(jSRuntime, jSInstance);
}
public Set(IJSRuntime jSRuntime, IJSObjectReference jSReference)
{
JSRuntime = jSRuntime;
JSReference = jSReference;
}
}
Issues
Feel free to open issues on the repository if you find any errors with the package or have wishes for features.
Related repositories
This project is used in the following projects:
- https://github.com/KristofferStrube/Blazor.Streams
- https://github.com/KristofferStrube/Blazor.DOM
- https://github.com/KristofferStrube/Blazor.MediaCaptureStreams
And it is planned to be used in these projects:
- https://github.com/KristofferStrube/Blazor.FileAPI
- https://github.com/KristofferStrube/Blazor.FileSystem
- https://github.com/KristofferStrube/Blazor.FileSystemAccess
- https://github.com/KristofferStrube/Blazor.WebAudio
Related articles
How this project was developed is explored in this article from my blog:
This repository was build with inspiration and help from the following series of articles:
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net7.0 is compatible. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net7.0
- Microsoft.AspNetCore.Components.Web (>= 7.0.3)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on KristofferStrube.Blazor.WebIDL:
Package | Downloads |
---|---|
KristofferStrube.Blazor.DOM
DOM API wrapper implementation for Blazor. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
0.6.0 | 367 | 10/23/2024 |
0.5.1 | 946 | 6/23/2024 |
0.5.0 | 6,457 | 3/9/2024 |
0.4.0 | 125 | 2/22/2024 |
0.3.0 | 189 | 1/4/2024 |
0.2.0 | 2,480 | 8/15/2023 |
0.1.0 | 996 | 6/21/2023 |
0.1.0-alpha.22 | 95 | 6/19/2023 |
0.1.0-alpha.21 | 80 | 6/8/2023 |
0.1.0-alpha.20 | 97 | 6/8/2023 |
0.1.0-alpha.19 | 83 | 6/7/2023 |
0.1.0-alpha.18 | 79 | 6/7/2023 |
0.1.0-alpha.17 | 111 | 5/31/2023 |
0.1.0-alpha.16 | 87 | 5/29/2023 |
0.1.0-alpha.15 | 79 | 5/29/2023 |
0.1.0-alpha.14 | 74 | 5/29/2023 |
0.1.0-alpha.13 | 76 | 5/29/2023 |
0.1.0-alpha.12 | 76 | 5/29/2023 |
0.1.0-alpha.11 | 80 | 5/28/2023 |
0.1.0-alpha.10 | 72 | 5/25/2023 |
0.1.0-alpha.9 | 97 | 5/20/2023 |
0.1.0-alpha.8 | 73 | 5/20/2023 |
0.1.0-alpha.7 | 81 | 5/20/2023 |
0.1.0-alpha.6 | 83 | 5/9/2023 |
0.1.0-alpha.5 | 96 | 4/12/2023 |
0.1.0-alpha.4 | 134 | 4/10/2023 |
0.1.0-alpha.3 | 98 | 4/10/2023 |
0.1.0-alpha.2 | 116 | 3/13/2023 |
0.1.0-alpha.1 | 29,428 | 2/28/2023 |