99 lines
3.3 KiB
TypeScript
Raw Normal View History

import React from 'react';
import Cookies from 'js-cookie';
import { BrowserRouter as Router } from 'react-router-dom';
import { ApolloClient, ApolloProvider, createHttpLink, InMemoryCache, ServerError } from '@apollo/client';
import { onError } from '@apollo/client/link/error';
import { Helmet, HelmetProvider } from 'react-helmet-async';
import './App.less';
import { Routes } from './app/Routes';
import { PageRoutes } from './conf/Global';
import { isLoggedInVar } from './app/auth/checkAuthStatus';
import { GlobalCfg } from './conf';
import possibleTypesResult from './possibleTypes.generated';
import { ErrorCodes } from './app/shared/constants';
import CustomThemeProvider from './CustomThemeProvider';
import { useCustomTheme } from './customThemeContext';
/*
Construct Apollo Client
*/
const httpLink = createHttpLink({ uri: '/api/v2/graphql' });
const errorLink = onError((error) => {
const { networkError } = error;
if (networkError) {
const serverError = networkError as ServerError;
if (serverError.statusCode === ErrorCodes.Unauthorized) {
isLoggedInVar(false);
Cookies.remove(GlobalCfg.CLIENT_AUTH_COOKIE);
const currentPath = window.location.pathname + window.location.search;
window.location.replace(`${PageRoutes.AUTHENTICATE}?redirect_uri=${encodeURIComponent(currentPath)}`);
}
}
// Disabled behavior for now -> Components are expected to handle their errors.
// if (graphQLErrors && graphQLErrors.length) {
// const firstError = graphQLErrors[0];
// const { extensions } = firstError;
// const errorCode = extensions && (extensions.code as number);
// // Fallback in case the calling component does not handle.
// message.error(`${firstError.message} (code ${errorCode})`, 3); // TODO: Decide if we want this back.
// }
});
const client = new ApolloClient({
connectToDevTools: true,
link: errorLink.concat(httpLink),
cache: new InMemoryCache({
typePolicies: {
Query: {
fields: {
dataset: {
merge: (oldObj, newObj) => {
return { ...oldObj, ...newObj };
},
},
entity: {
merge: (oldObj, newObj) => {
return { ...oldObj, ...newObj };
},
},
},
},
},
// need to define possibleTypes to allow us to use Apollo cache with union types
possibleTypes: possibleTypesResult.possibleTypes,
}),
credentials: 'include',
defaultOptions: {
watchQuery: {
fetchPolicy: 'no-cache',
},
query: {
fetchPolicy: 'no-cache',
},
},
});
export const InnerApp: React.VFC = () => {
return (
<HelmetProvider>
<CustomThemeProvider>
<Helmet>
2024-12-12 20:49:25 +05:30
<title>{useCustomTheme().theme?.content?.title}</title>
</Helmet>
<Router>
<Routes />
</Router>
</CustomThemeProvider>
</HelmetProvider>
);
};
export const App: React.VFC = () => {
return (
<ApolloProvider client={client}>
<InnerApp />
</ApolloProvider>
);
};