Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

reducer factory without state #3

Open
goblindegook opened this issue Jan 15, 2019 · 0 comments
Open

reducer factory without state #3

goblindegook opened this issue Jan 15, 2019 · 0 comments
Labels
enhancement New feature or request flux-actions

Comments

@goblindegook
Copy link
Member

Expose a factory function for reducers that does not require passing the initial state:

function reducer<S>(): EnhancedReducer<S>

This would allow for a more concise use with the useReducer React hook, which provides the initial state separately, so instead of...

const example = reducerFromState(INITIAL_STATE)
  .on(action, state => state)

const [state, dispatch] = useReducer(example, INITIAL_STATE)

...we'd have...

const example = reducer<typeof INITIAL_STATE>()
  .on(action, state => state)

const [state, dispatch] = useReducer(example, INITIAL_STATE)
@goblindegook goblindegook added flux-actions enhancement New feature or request labels Jan 15, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request flux-actions
Projects
None yet
Development

No branches or pull requests

1 participant