Git Product home page Git Product logo

Comments (2)

zhiyuanliang-ms avatar zhiyuanliang-ms commented on June 8, 2024

@michaelswells
We are investigating how to support blazor apps.
Currently, FeatureManagement.AspNetCore provides FeatureGateAttribute, FeatureTagHelper, feature-flag-based MVC filter and middleware.

Blazor is a framework for building interactive client-side web UI based on the Razor component.
There is also Blazor Server option. Blazor Server provides support for hosting Razor components on the server in an ASP.NET Core app. UI updates are handled over a SignalR WebSocket connection.

Blazor apps run outside of the ASP.NET Core pipeline. There will only be one HTTP request happened in the beginning. After that, all interactions are through WebSocket.

FeatureGateAttribute is built from ASP.NET ActionFilter which is incompatible with Blazor. MVC filter and middleware are also incompatible with Blazor, since they are based on the ASP.NET pipeline.

HttpContextAccessor/HttpContext should be avoided in the Razor components of Blazor server apps. A critical aspect of server-side Blazor security is that the information attached to a given circuit might become updated at some point after the Blazor circuit is established but the IHttpContextAccessor isn't updated. Ref

The recommended approach for passing request state to the Blazor app is through root component(App.razor) parameters during the app's initial rendering(_Host.cshtml). Alternatively, the app can copy the data into a scoped service in the root component's initialization lifecycle event for use across the app. Ref

This will make the HttpContextAccessor pattern for TargetingFilter fail. Besides, the FeatureManager and feature filters are always registered as a singleton. Scoped services can not be consumed by them.

Tag Helpers aren't supported in Razor components. Ref

FeatureTagHelper can only be used in _Host.cshtml

I create a repo to show the potential issues when using FeatureManagement for Blazor server app.
https://github.com/zhiyuanliang-ms/FeatureManagement-Blazor/tree/main
I write a Blazor Server app example. Hope it will be helpful.

from featuremanagement-dotnet.

zhiyuanliang-ms avatar zhiyuanliang-ms commented on June 8, 2024

Move the discussion to #258

from featuremanagement-dotnet.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.