mirror of https://github.com/grafana/grafana.git
26 lines
775 B
TypeScript
26 lines
775 B
TypeScript
import { connect, Provider } from 'react-redux';
|
|
|
|
import { store } from '../../store/store';
|
|
|
|
export function connectWithStore(WrappedComponent: any, ...args: any[]) {
|
|
const ConnectedWrappedComponent = (connect as any)(...args)(WrappedComponent);
|
|
|
|
// eslint-disable-next-line react/display-name
|
|
return (props: any) => {
|
|
return <ConnectedWrappedComponent {...props} store={store} />;
|
|
};
|
|
}
|
|
|
|
export function connectWithProvider(WrappedComponent: any, ...args: any[]) {
|
|
const ConnectedWrappedComponent = (connect as any)(...args)(WrappedComponent);
|
|
|
|
// eslint-disable-next-line react/display-name
|
|
return (props: any) => {
|
|
return (
|
|
<Provider store={store}>
|
|
<ConnectedWrappedComponent {...props} store={store} />
|
|
</Provider>
|
|
);
|
|
};
|
|
}
|