Fuzzy.Blazor.FluentRenderTreeBuilder
1.1.0
Please use v2, which provides more extensions and smarter block closing methods.
See the version list below for details.
dotnet add package Fuzzy.Blazor.FluentRenderTreeBuilder --version 1.1.0
NuGet\Install-Package Fuzzy.Blazor.FluentRenderTreeBuilder -Version 1.1.0
<PackageReference Include="Fuzzy.Blazor.FluentRenderTreeBuilder" Version="1.1.0" />
paket add Fuzzy.Blazor.FluentRenderTreeBuilder --version 1.1.0
#r "nuget: Fuzzy.Blazor.FluentRenderTreeBuilder, 1.1.0"
// Install Fuzzy.Blazor.FluentRenderTreeBuilder as a Cake Addin
#addin nuget:?package=Fuzzy.Blazor.FluentRenderTreeBuilder&version=1.1.0
// Install Fuzzy.Blazor.FluentRenderTreeBuilder as a Cake Tool
#tool nuget:?package=Fuzzy.Blazor.FluentRenderTreeBuilder&version=1.1.0
FluentRenderTreeBuilder
The FluentRenderTreeBuilder
library extends Blazor's built-in RenderTreeBuilder
with a clean and fluent API for building Blazor components in pure C# code, and automatically generates source code line-based sequence numbers.
The resulting markup code is identical to the razor compiler output, with minor whitespace differences, and optionally output can be automatically minified by disabling the built-in 'pretty printing' feature, which is enabled by default to match the behaviour of Blazor's razor page compiler.
Fluent API
Developers don't have to hand-write repetitive calls to the built-in RenderTreeBuilder
as the FluentRenderTreeBuilder
allows fluent chaining of calls.
Taking an example from Chris Sainty's blog, this code:
protected override void BuildRenderTree(RenderTreeBuilder builder)
{
base.BuildRenderTree(builder);
builder.OpenElement(0, "nav");
builder.AddAttribute(1, "class", "menu");
builder.OpenElement(2, "ul");
builder.OpenElement(3, "li");
builder.OpenComponent<NavLink>(4);
builder.AddAttribute(5, "href", "/");
builder.AddAttribute(6, "Match", NavLinkMatch.All);
builder.AddAttribute(7, "ChildContent", (RenderFragment)((builder2) => {
builder2.AddContent(8, "Home");
}));
builder.CloseComponent();
builder.CloseElement();
}
can now be written as:
protected override void BuildRenderTree(RenderTreeBuilder builder)
=> builder.Build()
.OpenElement("nav", "menu")
.OpenAutoList()
.OpenComponent<NavLink>()
.Attribute("href", "/")
.Attribute("Match", NavLinkMatch.All)
.ChildContent("Home")
.Close()
.CloseAutoList()
.Close();
There are many new convenience methods and parameters provided, such as automatically generating id
and class
attributes from optional parameters to OpenElement
, as shown above with the menu
CSS class.
See the pages and components in the test app provided in the source code repo on GitHub for more usage examples.
Extensibility
Extension methods can be used to add new high-level functionality, and many are already included to help with table
, list
and attribute
generation. In the above code snippet the OpenElement
method which takes optional CSS class
and id
attributes extends the built-in OpenElement
method.
For example, an extension method to automatically generate NavLink
content might look like this:
public static FluentRenderTreeBuilder NavLink(this FluentRenderTreeBuilder frtb,
string url, string markup, NavLinkMatch match = NavLinkMatch.All,
string? @class = null, string? id = null)
=> frtb.OpenComponent<NavLink>(@class ?? "nav-link", id)
.Attribute("href", url)
.Attribute("Match", match)
.ChildContent((MarkupString) markup, prettyPrint: true)
.NewLine(prettyPrint: true)
.Close();
This would then allow everything from the OpenComponent<NavLink>()
call to its matching Close()
call in the above code snippet to be replaced by a single call to NavLink("/", "Home")
, making navigation list generation possible with just a few lines of code.
Source code line-based sequence numbers
When using FluentRenderTreeBuilder
developers don't have to manually provide and maintain the sequence numbers for each call to RenderTreeBuilder
.
Unlike variable-based or calculated sequence numbers, which must not be used in Blazor components, FluentRenderTreeBuilder
makes use of the [CallerLineNumber]
attribute to generate each tree frame's sequence number based on the calling source code line number.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. 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. |
.NET Core | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.1 is compatible. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.1
- Microsoft.AspNetCore.Components (>= 3.1.6)
- Microsoft.AspNetCore.Components.Authorization (>= 3.1.6)
- Microsoft.AspNetCore.Components.Web (>= 3.1.6)
- Microsoft.Extensions.Localization (>= 3.1.6)
NuGet packages (3)
Showing the top 3 NuGet packages that depend on Fuzzy.Blazor.FluentRenderTreeBuilder:
Package | Downloads |
---|---|
KingTech.Web.FormGenerator
Package Description |
|
KingTech.Web.Markdown
Package Description |
|
KingTech.Web.Markdown.NuGet
Package Description |
GitHub repositories
This package is not used by any popular GitHub repositories.
The FluentRenderTreeBuilder wraps the built-in RenderTreeBuilder with a clean and fluent API for building Blazor components in pure C# code, and automatically generates source line based sequence numbers. See the example pages and components in the test app provided in the source code repo on GitHub for more details.
When using the FluentRenderTreeBuilder developers don't have to manually provide and maintain the sequence numbers or hand-write repetitive calls to the built-in RenderTreeBuilder.
The resulting markup code is identical to the razor compiler output, with minor whitespace differences, and optionally output can be automatically minified by disabling the built-in 'pretty printing' feature, which is enabled by default to match the behaviour of Blazor's razor page compiler.
All feedback and suggestions are welcome. Thank you for taking a look at FluentRenderTreeBuilder!
Fuzzy Work Ltd.