Created
July 20, 2016 01:53
-
-
Save jlongster/80daed0621243919428c90254858b4b3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// @flow | |
// Goal: define a top-level app state like the following. `sources` | |
// would be state managed by a redux reducer | |
type SourceState = { count: number }; | |
type AppState = { sources: SourceState}; | |
// Define a selector that takes a piece of the state, like sources | |
// (this is contrived) | |
function getNumSources(state: SourceState, x : number) { | |
return state.count * x; | |
} | |
// Define a `wrap` function that takes a selector and returns a | |
// new selector with the same signature, but it takes the full | |
// AppState (not just a piece of it) | |
function wrap<S,A,R>(selector: (state: S, ...args: A[]) => R, field : $Keys<AppState>) { | |
return function(state: AppState, ...args: A[]) : R { | |
return selector(state[field], ...args); | |
} | |
} | |
const wrapped = wrap(getNumSources, "sources"); | |
wrapped({ sources: { count: 5 }}, 10); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In response @gcanti
There was a babel issue (can remember the number) that I've reported and has being solved not too long ago, so in latest versions of babel it works fine.
Seems like another bug in flow, but can be avoid by annotating
getNumSources
Yeah I have suggested to use getter function to @jlongster as well on IRC, which avoids
$Keys<object>
hacks and is also more JIT friendly approach. To be honest going all the way and use something like lenses makes the most sense to me, but there were some Redux related issues preventing it, if I understood correctly.