blob: 9596deb41f660b06d998db90780c7c42c59da039 [file] [log] [blame]
simon26e79f72022-10-05 22:16:08 -04001/*
2 * Copyright (C) 2022 Savoir-faire Linux Inc.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU Affero General Public License as
6 * published by the Free Software Foundation; either version 3 of the
7 * License, or (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU Affero General Public License for more details.
13 *
14 * You should have received a copy of the GNU Affero General Public
15 * License along with this program. If not, see
16 * <https://www.gnu.org/licenses/>.
17 */
simond47ef9e2022-09-28 22:24:28 -040018'use strict';
19import './index.scss';
idillon5815c732022-09-16 13:54:45 -040020import './i18n';
Larbi Gharibe9af9732021-03-31 15:08:01 +010021
idillon08f77172022-09-13 19:14:17 -040022import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
simon07b4eb02022-09-29 17:50:26 -040023import { createRoot } from 'react-dom/client';
24import { Provider } from 'react-redux';
simon3f5f3e72022-11-08 21:01:57 -050025import { RouterProvider } from 'react-router-dom';
simon07b4eb02022-09-29 17:50:26 -040026
idillon3470d072022-11-22 15:22:34 -050027import CustomThemeProvider from './contexts/CustomThemeProvider';
simond8ca2f22022-10-11 23:30:55 -040028import { store } from './redux/store';
simon3f5f3e72022-11-08 21:01:57 -050029import { router } from './router';
idillon08f77172022-09-13 19:14:17 -040030
31const queryClient = new QueryClient({
32 defaultOptions: {
33 queries: {
34 cacheTime: Infinity, // websocket is responsible to tell when data needs to be updated
35 },
36 },
simond47ef9e2022-09-28 22:24:28 -040037});
idillon5e897432022-09-16 13:28:09 -040038
simond47ef9e2022-09-28 22:24:28 -040039const container = document.getElementById('root');
simon218d3d12022-10-01 17:27:01 -040040if (!container) {
41 throw new Error('Failed to get the root element');
42}
idillon169f64f2022-09-16 14:01:22 -040043const root = createRoot(container);
44root.render(
45 <Provider store={store}>
simon8b4756f2022-11-27 17:15:50 -050046 {/* TODO: Put back StrictMode once issues with calling are fixed */}
47 {/* <StrictMode> */}
48 <QueryClientProvider client={queryClient}>
49 <CustomThemeProvider>
50 <RouterProvider router={router} />
51 </CustomThemeProvider>
52 </QueryClientProvider>
53 {/* </StrictMode> */}
idillon169f64f2022-09-16 14:01:22 -040054 </Provider>
55);