KristofferStrube.Blazor.WebIDL
0.1.0-alpha.1
Prefix Reserved
See the version list below for details.
dotnet add package KristofferStrube.Blazor.WebIDL --version 0.1.0-alpha.1
NuGet\Install-Package KristofferStrube.Blazor.WebIDL -Version 0.1.0-alpha.1
<PackageReference Include="KristofferStrube.Blazor.WebIDL" Version="0.1.0-alpha.1" />
paket add KristofferStrube.Blazor.WebIDL --version 0.1.0-alpha.1
#r "nuget: KristofferStrube.Blazor.WebIDL, 0.1.0-alpha.1"
// Install KristofferStrube.Blazor.WebIDL as a Cake Addin #addin nuget:?package=KristofferStrube.Blazor.WebIDL&version=0.1.0-alpha.1&prerelease // Install KristofferStrube.Blazor.WebIDL as a Cake Tool #tool nuget:?package=KristofferStrube.Blazor.WebIDL&version=0.1.0-alpha.1&prerelease
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.
This wrapper is still being developed so ideas are still being tested and experimented with.
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.
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;
}
}
Exceptions
The specification also defines the types and names for all the standard exceptions and the standard names for DomExceptions.
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 |