Last active
January 28, 2025 16:31
-
-
Save mohadib/8d8d3bfbdc4938961d584fb500963650 to your computer and use it in GitHub Desktop.
zustand connect, like redux connect for class components
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
import React, {ComponentType} from 'react' | |
import {useShallow} from 'zustand/react/shallow' | |
import {AnnotationApiShape} from './AnnotationApi' | |
import hoistNonReactStatics from 'hoist-non-react-statics' | |
export const zustandConnect = (useStore: any, selector: (state: AnnotationApiShape) => any) => { | |
return (Component: ComponentType) => { | |
const forwarded = React.forwardRef( | |
(props, ref) => ( | |
<Component | |
ref={ref} | |
{...props} | |
{...useStore(useShallow(selector))} | |
/> | |
) | |
) | |
return hoistNonReactStatics(forwarded, Component) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
added hoistNonReactStatics so static fields from original component are on wrapped component