File tree 5 files changed +48
-22
lines changed
5 files changed +48
-22
lines changed Original file line number Diff line number Diff line change 8
8
content ="width=device-width, initial-scale=1, shrink-to-fit=no "
9
9
/>
10
10
< meta name ="theme-color " content ="#000000 " />
11
- <!--
12
- manifest.json provides metadata used when your web app is installed on a
13
- user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
14
- -->
15
- < link rel ="manifest " href ="%PUBLIC_URL%/manifest.json " />
16
11
<!--
17
12
Notice the use of %PUBLIC_URL% in the tags above.
18
13
It will be replaced with the URL of the `public` folder during the build.
Original file line number Diff line number Diff line change 1
1
import React , { Suspense , lazy } from "react" ;
2
- import {
3
- Route ,
4
- Redirect ,
5
- Switch ,
6
- HashRouter as Router
7
- } from "react-router-dom" ;
2
+ import { Route , Switch , HashRouter as Router } from "react-router-dom" ;
3
+ import CircularProgress from "@material-ui/core/CircularProgress" ;
4
+ import { Flex } from "./util/commonComponents" ;
8
5
const HomeContainer = lazy ( ( ) => import ( "./HomeContainer/HomeContainer" ) ) ;
9
- // const ExampleRoute = lazy(() => import("./ExampleRoute/ExampleRoute"));
6
+ const ExampleRoute = lazy ( ( ) => import ( "./ExampleRoute/ExampleRoute" ) ) ;
7
+
10
8
const App = ( ) => {
11
9
return (
12
10
< Router >
@@ -16,19 +14,26 @@ const App = () => {
16
14
path = "/"
17
15
render = { WaitingComponent ( HomeContainer ) }
18
16
/>
19
- { /* <Route
17
+ < Route
20
18
exact
21
19
path = "/Example"
22
20
render = { WaitingComponent ( ExampleRoute ) }
23
- /> */ }
21
+ />
24
22
</ Switch >
25
23
</ Router >
26
24
) ;
27
25
} ;
28
26
27
+ //Function that wraps the component in a React Suspense component. Provides a fallback Loading screen
29
28
function WaitingComponent ( Component : any ) {
30
29
return ( props : any ) => (
31
- < Suspense fallback = { < div > Loading</ div > } >
30
+ < Suspense
31
+ fallback = {
32
+ < Flex style = { { justifyContent : "center" } } >
33
+ < CircularProgress />
34
+ </ Flex >
35
+ }
36
+ >
32
37
< Component { ...props } />
33
38
</ Suspense >
34
39
) ;
Original file line number Diff line number Diff line change 1
- import React from "react"
2
- import ReactDOM from "react-dom"
3
- import App from "./App"
4
- import * as serviceWorker from "./serviceWorker"
5
- import "./index.css"
6
- ReactDOM . render ( < App /> , document . getElementById ( "root" ) )
1
+ import React from "react" ;
2
+ import ReactDOM from "react-dom" ;
3
+ import App from "./App" ;
4
+ import * as serviceWorker from "./serviceWorker" ;
5
+ import "./index.css" ;
6
+ import { ThemeProvider } from "./Theme/ThemeContext" ;
7
+ import NoSsr from "@material-ui/core/NoSsr" ;
8
+
9
+ ReactDOM . render (
10
+ < NoSsr >
11
+ < ThemeProvider >
12
+ < App />
13
+ </ ThemeProvider >
14
+ </ NoSsr > ,
15
+ document . getElementById ( "root" )
16
+ ) ;
7
17
8
18
// If you want your app to work offline and load faster, you can change
9
19
// unregister() to register() below. Note this comes with some pitfalls.
10
20
// Learn more about service workers: https://bit.ly/CRA-PWA
11
- serviceWorker . unregister ( )
21
+ serviceWorker . unregister ( ) ;
Original file line number Diff line number Diff line change @@ -41,3 +41,14 @@ export type TableRowData = {
41
41
export type DelayType = {
42
42
charIndex : number ;
43
43
} ;
44
+ export type themeHookType = {
45
+ darkmode : boolean ;
46
+ hasThemeMounted : boolean ;
47
+ } ;
48
+ export type themeType = {
49
+ background : string ;
50
+ body : string ;
51
+ }
52
+ export type HomeContainerPropType = {
53
+ theme : themeType ;
54
+ } ;
Original file line number Diff line number Diff line change
1
+ import styled from "@emotion/styled" ;
2
+
3
+ export const Flex = styled . div `
4
+ display: flex;
5
+ ` ;
You can’t perform that action at this time.
0 commit comments