* chore: inject enviroment at the deployment phase (#2174) * Dockerfile CMD env.sh * env.sh generates env-config.js file * index.html imports env-config.js * front/src/config/index.ts imports REACT_APP_SERVER_BASE_URL * Upgrade Dockerfiles * Add compute pg_database_url for render * fix tests --------- Co-authored-by: Charles Bochet <charles@twenty.com>
38 lines
1.0 KiB
TypeScript
38 lines
1.0 KiB
TypeScript
/* eslint-disable no-console */
|
|
import { useMemo } from 'react';
|
|
import { ApolloClient, InMemoryCache } from '@apollo/client';
|
|
import { useRecoilState } from 'recoil';
|
|
|
|
import { tokenPairState } from '@/auth/states/tokenPairState';
|
|
import { REACT_APP_SERVER_BASE_URL } from '~/config';
|
|
|
|
import { ApolloMetadataClientContext } from '../context/ApolloClientMetadataContext';
|
|
|
|
export const ApolloMetadataClientProvider = ({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) => {
|
|
const [tokenPair] = useRecoilState(tokenPairState);
|
|
|
|
const apolloMetadataClient = useMemo(() => {
|
|
if (tokenPair?.accessToken.token) {
|
|
return new ApolloClient({
|
|
uri: `${REACT_APP_SERVER_BASE_URL}/metadata`,
|
|
cache: new InMemoryCache(),
|
|
headers: {
|
|
Authorization: `Bearer ${tokenPair.accessToken.token}`,
|
|
},
|
|
});
|
|
} else {
|
|
return null;
|
|
}
|
|
}, [tokenPair]);
|
|
|
|
return (
|
|
<ApolloMetadataClientContext.Provider value={apolloMetadataClient}>
|
|
{children}
|
|
</ApolloMetadataClientContext.Provider>
|
|
);
|
|
};
|