AugusteVN.Razor.State 1.0.9

There is a newer version of this package available.
See the version list below for details.
dotnet add package AugusteVN.Razor.State --version 1.0.9
                    
NuGet\Install-Package AugusteVN.Razor.State -Version 1.0.9
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="AugusteVN.Razor.State" Version="1.0.9" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="AugusteVN.Razor.State" Version="1.0.9" />
                    
Directory.Packages.props
<PackageReference Include="AugusteVN.Razor.State" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add AugusteVN.Razor.State --version 1.0.9
                    
#r "nuget: AugusteVN.Razor.State, 1.0.9"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package AugusteVN.Razor.State@1.0.9
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=AugusteVN.Razor.State&version=1.0.9
                    
Install as a Cake Addin
#tool nuget:?package=AugusteVN.Razor.State&version=1.0.9
                    
Install as a Cake Tool

State management in Blazor / Razor

Helper classes and components for state management in Blazor / Razor.

Persist Component State

Blazor has an unfortunate double rendering issue when pre-rendering is enabled. The PesistState.cs helps prevent double HTTP calls that occur on the component's lifecycle methods which get triggered twice.

Usage Example

Inheritance

public class BlogHttpClient : StateProvider
{
    private readonly HttpClient _http;
    public BlogHttpClient(HttpClient http, PersistentComponentState appState) : base(appState)
    {
        _http = http;
    }
    
    public async Task<BlogPostResponse?> FetchSelectedBlogPost(GetBlogPostForSlugRequest request)
    {
        return await FetchAsync<BlogPostResponse?>(
            key: $"{nameof(GetBlogPostForSlug)}/{request.Slug}",
            fetchMethod: () => GetBlogPostForSlug(request));
    }

    private async Task<BlogPostResponse?> GetBlogPostForSlug(GetBlogPostForSlugRequest request)
    {
        try
        {
            return await _http.GetFromJsonAsync<BlogPostResponse>($"{ApiRoutes.BlogPosts}/{request.Slug}");
        }
        catch (Exception e)
        {
            _logger.LogWarning("Could not get blog post with slug: {slug}, {@errorMessage}", request.Slug, e.Message);
            return null;
        }
    }
    
}

Inheritance

builder.Services.AddSingleton<StateProvider>();
public class BlogHttpClient
{
    private readonly HttpClient _http;
    private readonly PersistentComponentState _appState;
    private readonly StateProvider _stateProvider;
    public BlogHttpClient(HttpClient http, PersistentComponentState appState, StateProvider stateProvider)
    {
        _http = http;
        _appState = appState;
        _stateProvider = stateProvider;
    }
    
    public async Task<BlogPostResponse?> FetchSelectedBlogPost(GetBlogPostForSlugRequest request)
    {
        return await stateProvider.FetchAsync<BlogPostResponse?>(
            _appState,
            key: $"{nameof(GetBlogPostForSlug)}/{request.Slug}",
            fetchMethod: () => GetBlogPostForSlug(request));
    }

    private async Task<BlogPostResponse?> GetBlogPostForSlug(GetBlogPostForSlugRequest request)
    {
        try
        {
            return await _http.GetFromJsonAsync<BlogPostResponse>($"{ApiRoutes.BlogPosts}/{request.Slug}");
        }
        catch (Exception e)
        {
            _logger.LogWarning("Could not get blog post with slug: {slug}, {@errorMessage}", request.Slug, e.Message);
            return null;
        }
    }
}

INotifyPropertyChanged

Notify whenever the value of a property in our global state changes.

public class BlogHttpClient : StateProvider
{
    private BlogPostResponse? _selectedBlogPost;
    public BlogPostResponse? SelectedBlogPost {
        get => _selectedBlogPost;
        set => SetField(ref _selectedBlogPost, value);
    }
    
    private readonly HttpClient _http;
    public BlogHttpClient(HttpClient http, PersistentComponentState appState) : base(appState)
    {
        _http = http;
    }
    
    public async Task InitSelectedBlogPost(GetBlogPostForSlugRequest request)
    {
        SelectedBlogPost = await FetchAsync<BlogPostResponse?>(
            key: $"{nameof(GetBlogPostForSlug)}/{request.Slug}",
            fetchMethod: () => GetBlogPostForSlug(request));
    }

    private async Task<BlogPostResponse?> GetBlogPostForSlug(GetBlogPostForSlugRequest request)
    {
        try
        {
            return await _http.GetFromJsonAsync<BlogPostResponse>($"{ApiRoutes.BlogPosts}/{request.Slug}");
        }
        catch (Exception e)
        {
            _logger.LogWarning("Could not get blog post with slug: {slug}, {@errorMessage}", request.Slug, e.Message);
            return null;
        }
    }
    
}

ExampleComponent.razor

@implements IDisposable
@inject BlogHttpClient BlogHttpClient

@code {
    protected override void OnInitialized()
    {
        BlogHttpClient.PropertyChanged += HandleStateChanged;
    }

    private void HandleStateChanged(object? sender, PropertyChangedEventArgs e)
    {
        if (e.PropertyName == nameof(BlogHttpClient.SelectedBlogPost))
        {
            Console.WriteLine(BlogHttpClient.SelectedBlogPost.Title);
        }
    }

    public void Dispose()
    {
        State.PropertyChanged -= HandleStateChanged;
    }
}

To see it in action, watch: Prevent this Blazor Prerendering ISSUE C# .NET 8.

Brought to you by: kiss-code.com.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (7)

Showing the top 5 NuGet packages that depend on AugusteVN.Razor.State:

Package Downloads
AugusteVN.Modules.Auth._Shared.Spa

Blazor components for login, registration, profile, and admin panels

AugusteVN.Modules.Commerce._Shared.Spa

Blazor components for product listing, cart, and order history

AugusteVN.Modules.VirtualAssistant._Shared.Spa

Blazor chat interface for Ollama LLM integration

AugusteVN.Modules.EmailCampaigns._Shared.Spa

Blazor components for managing campaigns, templates, and subscribers

AugusteVN.Modules.Sponsorships._Shared.Spa

Blazor components for sponsor display and management

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.2.0 517 7/9/2026
1.1.3 152 1/28/2026
1.1.2 133 1/28/2026
1.1.1 330 12/17/2025
1.1.0 234 6/7/2025
1.0.9 398 6/5/2025

BugFix: resolve attempt to persist already persisted data, duplicate key. Put composition back.