You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
801 B
25 lines
801 B
import React from 'react';
|
|
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>
|
|
);
|
|
};
|
|
}
|
|
|