blob: 6dc238de75b7f923b15cc0670b0f700a62e4b3e9 [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';
Ziwei Wang4eaa1e22023-01-17 16:02:59 -050023import { ReactQueryDevtools } from '@tanstack/react-query-devtools';
idillon02884e12023-02-10 18:15:22 -050024import { StrictMode } from 'react';
simon07b4eb02022-09-29 17:50:26 -040025import { createRoot } from 'react-dom/client';
26import { Provider } from 'react-redux';
simon3f5f3e72022-11-08 21:01:57 -050027import { RouterProvider } from 'react-router-dom';
simon07b4eb02022-09-29 17:50:26 -040028
Ziwei Wang49765ec2023-02-13 16:35:32 -050029import AlertSnackbarProvider from './contexts/AlertSnackbarProvider';
idillon3470d072022-11-22 15:22:34 -050030import CustomThemeProvider from './contexts/CustomThemeProvider';
simond8ca2f22022-10-11 23:30:55 -040031import { store } from './redux/store';
simon3f5f3e72022-11-08 21:01:57 -050032import { router } from './router';
idillon08f77172022-09-13 19:14:17 -040033
idillon8fdcd272023-08-02 22:52:18 -040034const queryClient = new QueryClient();
idillon5e897432022-09-16 13:28:09 -040035
simond47ef9e2022-09-28 22:24:28 -040036const container = document.getElementById('root');
simon218d3d12022-10-01 17:27:01 -040037if (!container) {
38 throw new Error('Failed to get the root element');
39}
idillon169f64f2022-09-16 14:01:22 -040040const root = createRoot(container);
41root.render(
42 <Provider store={store}>
idillon02884e12023-02-10 18:15:22 -050043 <StrictMode>
44 <QueryClientProvider client={queryClient}>
45 <CustomThemeProvider>
46 <AlertSnackbarProvider>
47 <RouterProvider router={router} />
48 <ReactQueryDevtools initialIsOpen={false} />
49 </AlertSnackbarProvider>
50 </CustomThemeProvider>
51 </QueryClientProvider>
52 </StrictMode>
idillon169f64f2022-09-16 14:01:22 -040053 </Provider>
54);