Skip to content

Instantly share code, notes, and snippets.

@mohadib
Last active January 28, 2025 16:31
Show Gist options
  • Save mohadib/8d8d3bfbdc4938961d584fb500963650 to your computer and use it in GitHub Desktop.
Save mohadib/8d8d3bfbdc4938961d584fb500963650 to your computer and use it in GitHub Desktop.
zustand connect, like redux connect for class components
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)
}
}
@mohadib
Copy link
Author

mohadib commented Jan 28, 2025

added hoistNonReactStatics so static fields from original component are on wrapped component

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment