Skip to content

Commit 95701b5

Browse files
committed
feat: Created styled components file. Darkmode/lightmode now works as expected. Created a commonComponents folder.
1 parent 97c4186 commit 95701b5

File tree

5 files changed

+48
-22
lines changed

5 files changed

+48
-22
lines changed

public/index.html

-5
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,6 @@
88
content="width=device-width, initial-scale=1, shrink-to-fit=no"
99
/>
1010
<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" />
1611
<!--
1712
Notice the use of %PUBLIC_URL% in the tags above.
1813
It will be replaced with the URL of the `public` folder during the build.

src/App.tsx

+15-10
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
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";
85
const HomeContainer = lazy(() => import("./HomeContainer/HomeContainer"));
9-
// const ExampleRoute = lazy(() => import("./ExampleRoute/ExampleRoute"));
6+
const ExampleRoute = lazy(() => import("./ExampleRoute/ExampleRoute"));
7+
108
const App = () => {
119
return (
1210
<Router>
@@ -16,19 +14,26 @@ const App = () => {
1614
path="/"
1715
render={WaitingComponent(HomeContainer)}
1816
/>
19-
{/* <Route
17+
<Route
2018
exact
2119
path="/Example"
2220
render={WaitingComponent(ExampleRoute)}
23-
/> */}
21+
/>
2422
</Switch>
2523
</Router>
2624
);
2725
};
2826

27+
//Function that wraps the component in a React Suspense component. Provides a fallback Loading screen
2928
function WaitingComponent(Component: any) {
3029
return (props: any) => (
31-
<Suspense fallback={<div> Loading</div>}>
30+
<Suspense
31+
fallback={
32+
<Flex style={{justifyContent: "center"}}>
33+
<CircularProgress />
34+
</Flex>
35+
}
36+
>
3237
<Component {...props} />
3338
</Suspense>
3439
);

src/index.tsx

+17-7
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,21 @@
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+
);
717

818
// If you want your app to work offline and load faster, you can change
919
// unregister() to register() below. Note this comes with some pitfalls.
1020
// Learn more about service workers: https://bit.ly/CRA-PWA
11-
serviceWorker.unregister()
21+
serviceWorker.unregister();

src/types.tsx

+11
Original file line numberDiff line numberDiff line change
@@ -41,3 +41,14 @@ export type TableRowData = {
4141
export type DelayType = {
4242
charIndex: number;
4343
};
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+
};

src/util/commonComponents.tsx

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import styled from "@emotion/styled";
2+
3+
export const Flex = styled.div`
4+
display: flex;
5+
`;

0 commit comments

Comments
 (0)