Code Monkey home page Code Monkey logo

Comments (2)

mikeyoshino avatar mikeyoshino commented on July 18, 2024 2

Hi, Sorry for the late. Have you got the answer to your question?
if you follow the tutorial on how to use Blazor state, the only way to assign or set the value to the state is to send action that can mutate the state.

You may have an action call ReadFromLocalStorageAction

  using BlazorState;
  public partial class UserProfileState
  {
    public class ReadFromLocalStorageAction : IAction
    {
      public string Sample { get; set; }
    }
  }

and the handler for that action.

{
  using System.Threading;
  using System.Threading.Tasks;
  using BlazorState;
  using MediatR;

  public partial class UserProfileState
  {
    public class ReadFromLocalStorageHandler : ActionHandler<ReadFromLocalStorageAction>
    {
      private readonly LocalStorageService LocalStorageService;
      public IncrementCountHandler(IStore aStore, LocalStorageService aLocalStorageService) : base(aStore) 
      {
           LocalStorageService = aLocalStorageService;
      }

      CounterState CounterState => Store.GetState<CounterState>();

      public override Task<Unit> Handle(IncrementCountAction aIncrementCountAction, CancellationToken aCancellationToken)
      {
        //Read value from you localstorage here
        UserProfile.Sample = here you assign the value to the state.
        return Unit.Task;
      }
    }
  }
}

In your component, you can send the action in your component or in your Initialize method like below.

public override void Initialize() => await Send(new ReadFromLocalStorageAction(){ Sample = value to want to send to handler };

this will call out the action and handler associated with and from what we have you will set the value to sample property in the UserProfileState.

if you have any questions please let me know. :)

from blazor-state.

diskman avatar diskman commented on July 18, 2024

hi @mikeyoshino

I was trying to init state in the wrong place. Thanks again .

from blazor-state.

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.