# Blazor Blazor apps are based on *components*. A **component** in Blazor is an element of UI, such as a page, dialog, or data entry form. Components are .NET C# classes built into .NET assemblies that: - Define flexible UI rendering logic. - Handle user events. - Can be nested and reused. - Can be shared and distributed as Razor class libraries or NuGet packages. ![Blazor Server Architecture](../../../img/dotnet_blazor-server.png) ![Blazor WASM Architecture](../../../img/dotnet_blazor-webassembly.png) The component class is usually written in the form of a Razor markup page with a `.razor` file extension. Components in Blazor are formally referred to as *Razor components*. ## Components (`.razor`) [Blazor Components](https://docs.microsoft.com/en-us/aspnet/core/blazor/components/) ```cs @page "/route/{RouteParameter}" // make component accessible from a URL @page "/route/{RouteParameter?}" // specify route parameter as optional @page "/route/{RouteParameter:}" // specify route parameter type @namespace // set the component namespace @using // using statement @inherits BaseType // inheritance @attribute [Attribute] // apply an attribute @inject Type objectName // dependency injection // html of the page here // access component w/o @using // insert component into page, passing attributes @ChildContent // segment of UI content @code { // component model (Properties, Methods, ...) [Parameter] // capture attribute public Type Property { get; set; } = defaultValue; [Parameter] // capture route parameters public type RouteParameter { get; set;} [Parameter] // segment of UI content public RenderFragment ChildContent { get; set;} private void CallbackMethod() { } } ``` ## State Management ## Passing state with `NavigationManager` It's now possible to pass state when navigating in Blazor apps using the `NavigationManager`. ```cs navigationManager.NavigateTo("/", new NavigationOptions { HistoryEntryState = value }); ``` This mechanism allows for simple communication between different pages. The specified state is pushed onto the browser’s history stack so that it can be accessed later using either the `NavigationManager.HistoryEntryState` property or the `LocationChangedEventArgs.HistoryEntryState` property when listening for location changed events. ### Blazor WASM ```cs // setup state singleton builder.Services.AddSingleton(); ``` ```cs // StateContainer singleton using System; public class StateContainer { private int _counter; public string Property { get => _counter; set { _counter = value; NotifyStateChanged(); // will trigger StateHasChanged(), causing a render } } public event Action OnChange; private void NotifyStateChanged() => OnChange?.Invoke(); } ``` ```cs // component that changes the state @inject StateContainer State // Delegate event handlers automatically trigger a UI render @code { private void HandleClick() { State.Property += 1; // update state } } ``` ```cs // component that should be update on state change @implements IDisposable @inject StateContainer State

Property: @State.Property

@code { // StateHasChanged notifies the component that its state has changed. // When applicable, calling StateHasChanged causes the component to be rerendered. protected override void OnInitialized() { State.OnChange += StateHasChanged; } public void Dispose() { State.OnChange -= StateHasChanged; } } ``` ## Data Binding & Events ```cs