blob: b1cfc8994c40487b336c45f373195d0db2ee2578 [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
Michelle Sepkap Sime51c00452022-10-31 21:26:38 -040022import { ThemeProvider } from '@mui/material/styles';
idillon08f77172022-09-13 19:14:17 -040023import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
simon07b4eb02022-09-29 17:50:26 -040024import { createRoot } from 'react-dom/client';
25import { Provider } from 'react-redux';
simon3f5f3e72022-11-08 21:01:57 -050026import { RouterProvider } from 'react-router-dom';
simon07b4eb02022-09-29 17:50:26 -040027
simond8ca2f22022-10-11 23:30:55 -040028import { store } from './redux/store';
simon3f5f3e72022-11-08 21:01:57 -050029import { router } from './router';
Michelle Sepkap Sime51c00452022-10-31 21:26:38 -040030import defaultTheme from './themes/Default';
idillon08f77172022-09-13 19:14:17 -040031
32const queryClient = new QueryClient({
33 defaultOptions: {
34 queries: {
35 cacheTime: Infinity, // websocket is responsible to tell when data needs to be updated
36 },
37 },
simond47ef9e2022-09-28 22:24:28 -040038});
idillon5e897432022-09-16 13:28:09 -040039
simond47ef9e2022-09-28 22:24:28 -040040const container = document.getElementById('root');
simon218d3d12022-10-01 17:27:01 -040041if (!container) {
42 throw new Error('Failed to get the root element');
43}
idillon169f64f2022-09-16 14:01:22 -040044const root = createRoot(container);
45root.render(
46 <Provider store={store}>
simonf929a362022-11-18 16:53:45 -050047 {/* TODO: Put back StrictMode (https://git.jami.net/savoirfairelinux/jami-web/-/issues/170) */}
48 {/*<StrictMode>*/}
49 <QueryClientProvider client={queryClient}>
50 <ThemeProvider theme={defaultTheme}>
51 <RouterProvider router={router} />
52 </ThemeProvider>
53 </QueryClientProvider>
54 {/*</StrictMode>*/}
idillon169f64f2022-09-16 14:01:22 -040055 </Provider>
56);