Skip to content

Instantly share code, notes, and snippets.

@strzibny
Created January 27, 2018 18:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save strzibny/c9dbc7611e4f23174f36638d52443acd to your computer and use it in GitHub Desktop.
Save strzibny/c9dbc7611e4f23174f36638d52443acd to your computer and use it in GitHub Desktop.
Combining reducers into one
class ReduxStore
def self.combine_reducers(reducers)
-> (state, action) {
state ||= {}
reducers.reduce({}) { |next_state, (key, reducer)|
next_state[key] = reducer.call(state[key], action)
next_state
}
}
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment