Giter VIP home page Giter VIP logo

Comments (4)

david-randoll avatar david-randoll commented on May 24, 2024 1

Ohh that makes sense; I miss understood the tutorial when I went thru it. This is what I was looking for.

from blazor-state.

StevenTCramer avatar StevenTCramer commented on May 24, 2024

Hi @david-randoll

The flux pattern is designed to eliminate changes in state by anything other than handlers/reducers. And those handlers are initiated by Actions only. The specific State is encapsulated. All properties should be read-only outside the class. The handlers should be child/nested classes of the state they mutate (this gives the handler access to private setters and thus it can mutate the values)

In the CounterState example the Handler should be a nested class of CounterState.

https://timewarpengineering.github.io/blazor-state/Tutorial.html#handling-the-action

public partial class CounterState // <== this makes it nested in CounterState
{
    public class IncrementCountHandler : ActionHandler<IncrementCountAction>
    {
        public IncrementCountHandler(IStore aStore) : base(aStore) { }

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

        public override Task<Unit> Handle(IncrementCountAction aIncrementCountAction, CancellationToken aCancellationToken)
        {
            CounterState.Count = CounterState.Count + aIncrementCountAction.Amount; // <== because nested it can access the setters.
            return Unit.Task;
        }
    }
}

Does this clear it up?

from blazor-state.

david-randoll avatar david-randoll commented on May 24, 2024

Yeah, I saw this in the tutorial but didn't like everything being within the state class as this class will become big really quick. If I were to move the IncrementCountHandler class to its own file there's no way to update the counter variable? Thru constructor?

from blazor-state.

StevenTCramer avatar StevenTCramer commented on May 24, 2024

@david-randoll By using partial classes, you can have them in the class and in different files. Which is how I do it in the Sample

image

Hope this helps.

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.