import * as React from 'react'; import { useQuery } from '@apollo/client'; import { GET_AUTOMATISCH_INFO } from 'graphql/queries/get-automatisch-info'; export type AutomatischInfoContextParams = { isCloud: boolean; }; export const AutomatischInfoContext = React.createContext({ isCloud: false, }); type AutomatischInfoProviderProps = { children: React.ReactNode; }; export const AutomatischInfoProvider = ( props: AutomatischInfoProviderProps ): React.ReactElement => { const { children } = props; const { data, loading } = useQuery(GET_AUTOMATISCH_INFO); const isCloud = data?.getAutomatischInfo?.isCloud; const value = React.useMemo(() => { return { isCloud, loading }; }, [isCloud, loading]); return ( {children} ); };