mirror of https://github.com/portainer/portainer
27 lines
774 B
TypeScript
27 lines
774 B
TypeScript
import { ComponentType } from 'react';
|
|
import { QueryClientProvider } from 'react-query';
|
|
|
|
import { queryClient as defaultQueryClient } from './react-query';
|
|
|
|
export function withReactQuery<T>(
|
|
WrappedComponent: ComponentType<T>,
|
|
queryClient = defaultQueryClient
|
|
): ComponentType<T> {
|
|
// Try to create a nice displayName for React Dev Tools.
|
|
const displayName =
|
|
WrappedComponent.displayName || WrappedComponent.name || 'Component';
|
|
|
|
function WrapperComponent(props: T) {
|
|
return (
|
|
<QueryClientProvider client={queryClient}>
|
|
{/* eslint-disable-next-line react/jsx-props-no-spreading */}
|
|
<WrappedComponent {...props} />
|
|
</QueryClientProvider>
|
|
);
|
|
}
|
|
|
|
WrapperComponent.displayName = displayName;
|
|
|
|
return WrapperComponent;
|
|
}
|