Git Product home page Git Product logo

Comments (2)

revolunet avatar revolunet commented on July 24, 2024

from my undestanding : action creators trigger action handlers which are "state reducers"

the underscore is just a placeholder, by default its (state, action)

from redux-react-router-async-example.

emmenko avatar emmenko commented on July 24, 2024

@juanda99 basically it's how @revolunet said ;)

I can't get the meaning of actionHandlers, where is it from?

To explain it a bit more, reducers are functions that return a (new) state given some actions. Usually you probably do that with a switch case by checking the action.type. But you can also use a simple hash map with the action type as the key. This is what actionHandlers are and createReducer does (it's function composition).
As for the name "actionHandlers", as it implies it handles actions :)

No action creators?

On the other hand, action creators are functions that will eventually trigger an action, which will be then handled by the reducers.

What's the meaning of the underscore parameter _?

It's meant to be a placeholder since the argument it's not used in the related case, as you are interested in the second argument. But this is rather a personal choice, if it's less confusing to you simply declare the arguments with names as usual.

Hope this helps you further ;)

from redux-react-router-async-example.

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.