UPDATE Nope. This is buggy too. And so is every other Redux Hooks lib.
It also implements performance optimizations eg. does not render when the map state function does not produce new value and allows advanced optimizations with memoizing and dependency arrays.
Written in TypeScript so types are baked in and always up to date.
npm install @epeli/redux-hooks
import {useMapState, useActionCreators} from "@epeli/redux-hooks";
const ActionCreators = {
inc() {
return {type: "INCREMENT"};
},
};
function Counter() {
const count = useMapState(state => state.count);
const actions = useActionCreators(ActionCreators);
return <button onClick={actions.inc}>{count}</button>;
}
Your components must be wrapped with the HooksProvider
import {HooksProvider} from "@epeli/redux-hooks";
ReactDOM.render(
<HooksProvider store={store}>
<Counter />
</HooksProvider>,
document.getElementById("app"),
);
Custom provider is required for now because the official react-redux bindings do not use subscriptions and it's impossible to implement Redux hooks without efficiently. Read more about it here.
useMapState()
Renders when returned value differ usingObject.is()
checkuseSelect()
Renders when returned value differ using shallow equal checkuseActionCreators()
Bind object of action creators to dispatchuseDispatch()
Returns the plain dispatch-functionusePassiveMapState()
LikeuseMapState()
but does not subscribe to the store eg. is executed only when the component renders.
Please read the optimizations docs for details when to use these.
You can use createHooks()
factory to create custom typed version of the hooks
import {createHooks} from "@epeli/redux-hooks";
const AppHooks = createHooks<{foo: string}>();
function Foo() {
const foo = AppHooks.useMapState(state => state.foo);
return <div>String: {foo}</div>;
}
Codesandbox: https://codesandbox.io/s/github/epeli/typescript-redux-todoapp/tree/hooks
Github: https://github.com/epeli/typescript-redux-todoapp/tree/hooks
All the others I checked had the zombie child bug, poor performance or were missing TypeScript types.
Even the facebookincubator/redux-react-hook
one has the zombie bug which is stated in their FAQ. This one guarantees data flow top down like the official react-redux one does.
This also an experiment for the future of the react-redux: