BlazorHooked 0.2.0
See the version list below for details.
dotnet add package BlazorHooked --version 0.2.0
NuGet\Install-Package BlazorHooked -Version 0.2.0
<PackageReference Include="BlazorHooked" Version="0.2.0" />
paket add BlazorHooked --version 0.2.0
#r "nuget: BlazorHooked, 0.2.0"
// Install BlazorHooked as a Cake Addin #addin nuget:?package=BlazorHooked&version=0.2.0 // Install BlazorHooked as a Cake Tool #tool nuget:?package=BlazorHooked&version=0.2.0
Get Started
Add the obligitory @@using BlazorHooked
statement to _Imports.razor
.
The HookContext
Hooks are accessed via a HookContext
which you can get one of two ways.
Inherit from HookComponentBase
in which case this.Hook
exposes a single HookContext
for the child component.
@inherits HookComponentBase
@{
this.Hook.UseState(0);
}
Or use the Hook
component, in which case the HookContext
is scoped within the Hook
. This gives more flexibility for
you to inherit from other base components and even to create multiple contexts within a component.
<Hook>
@{
context.UseState(0);
}
<div>Hello</div>
</Hook>
You can rename the context to something more helpful and/or to avoid collisions.
<Hook Context="Hook">
@{
var (state, _) = Hook.UseState(0);
}
@state
</Hook>
<Hook Context="Hook2">
@{
var (state, _) = Hook2.UseState(1);
}
@state
</Hook>
You'll find there are very few classes or interfaces to inherit or implement in BlazorHooked. Actions and state in the examples are usually defined as records. The more you embrace immutibility the easier the Model View Update pattern becomes because you stop fighting the render loop and BlazorHooked is designed to foster that by using functional constructs wherever possible.
Read on to find out more about Hooks.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. 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. |
-
net6.0
- Microsoft.AspNetCore.Components.Web (>= 6.0.0)
- oneof (>= 3.0.211)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.