GithubHelp home page GithubHelp logo

Comments (7)

dminkovsky avatar dminkovsky commented on September 7, 2024

What I'm trying to say is that I find the Redux docs frustrating because there is a plethora of totally unnecessary symbol names littered all over the examples:

function makeASandwich(forPerson, secretSauce) {
  return {
    type: 'MAKE_SANDWICH',
    forPerson,
    secretSauce
  };
}

function apologize(fromPerson, toPerson, error) {
  return {
    type: 'APOLOGIZE',
    fromPerson,
    toPerson,
    error
  };
}

function withdrawMoney(amount) {
  return {
    type: 'WITHDRAW',
    amount
  };
}

introduces makeASandwich, apologize and withdrawMoney. The more symbol names you make, the more your reader has to keep track of them in your example. And all for this attempt to establish the concept of "action creator" for something that is really just a "helper function"—a thing that all programmers use all the time.

from redux-thunk.

dminkovsky avatar dminkovsky commented on September 7, 2024

"For example, redux-thunk lets the action creators invert control by dispatching functions." 😳

from redux-thunk.

gaearon avatar gaearon commented on September 7, 2024

Please send a PR to the docs if you see a better way to phrase or explain something. ;-)

from redux-thunk.

dminkovsky avatar dminkovsky commented on September 7, 2024

Okay :): https://github.com/rackt/redux/pull/745/commits

I mean, if I could, I would cut out half of the docs. I mean, the advanced middleware documentation goes through a 7-step motivational exercise? I would guess almost everyone reading Redux docs knows about middleware, either via Express or via Django. Ironically, I would further guess that terms like "monkeypatching" are far less common knowledge among readers, given that the term originates in the Ruby community!

AND THEN—you go to to applyMiddleware "API docs" only to be greeted by an enormous redux-thunk example, with basic logging buried at the end (my pull request fixes this).

If it was up to me, I would remove that thunk example for the applyMiddleware docs altogether. That's not what API documentation is all about.

from redux-thunk.

gaearon avatar gaearon commented on September 7, 2024

@dminkovsky

The docs were written over a period of one and a half months, and this is the reason for most inconsistencies. For example, Async Actions section was the last to be added. Because there weren't any other docs on async actions back then (at the very beginning) I had to add some examples to applyMiddleware as last resort.

I'm happy to see an issue discussing your plan to cutting duplications in docs.

from redux-thunk.

dminkovsky avatar dminkovsky commented on September 7, 2024

Oh I get I can imagine how such a base of documentation has emerged. I don't mean to be critical of the docs in that regard.

I'll open the ticket there.

Thank you.

from redux-thunk.

gaearon avatar gaearon commented on September 7, 2024

Thanks! Yes, it's concerning me too, but I'm busy with other stuff now so I can really appreciate somebody taking over this and getting docs into a less wordy / more consistent shape.

from redux-thunk.

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.