mirror of
https://github.com/snowball-tools/snowballtools-base.git
synced 2025-04-03 03:41:16 +00:00
* Integrate gql-client in frontend app * Populate home page information using gql-client * Remove non required fields from organizations query --------- Co-authored-by: neeraj <neeraj.rtly@gmail.com>
25 lines
579 B
TypeScript
25 lines
579 B
TypeScript
import React, { createContext, useContext, ReactNode } from 'react';
|
|
import { GQLClient } from 'gql-client';
|
|
|
|
const GQLClientContext = createContext({} as GQLClient);
|
|
|
|
export const GQLClientProvider = ({
|
|
client,
|
|
children,
|
|
}: {
|
|
children: ReactNode;
|
|
client: GQLClient;
|
|
}) => (
|
|
<GQLClientContext.Provider value={client}>
|
|
{children}
|
|
</GQLClientContext.Provider>
|
|
);
|
|
|
|
export const useGQLClient = () => {
|
|
const client = useContext(GQLClientContext);
|
|
if (!client) {
|
|
throw new Error('useGQLClient must be used within a GQLClientProvider');
|
|
}
|
|
return client;
|
|
};
|