pashto-grammar/src/App.tsx

99 lines
2.8 KiB
TypeScript
Raw Normal View History

2021-03-06 10:40:31 +00:00
/**
* Copyright (c) 2021 lingdocs.com
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
*/
2021-10-11 00:39:59 +00:00
import { useState } from "react";
2021-10-18 05:00:02 +00:00
import { Route, withRouter, Switch, RouteComponentProps } from "react-router-dom";
2021-03-06 10:40:31 +00:00
import "./App.css";
import Page404 from "./pages/404";
import Chapter from "./components/Chapter";
import { content } from "./content/index";
import Sidebar from "./components/Sidebar";
import Header from "./components/Header";
2021-04-14 12:31:13 +00:00
import TableOfContentsPage from "./pages/TableOfContentsPage";
2022-09-10 19:10:54 +00:00
import LandingPage from "./pages/LandingPage";
2021-09-19 00:08:06 +00:00
import AccountPage from "./pages/AccountPage";
2021-03-06 10:40:31 +00:00
import { useEffect } from "react";
2022-05-11 03:52:31 +00:00
import { isProd } from "./lib/isProd";
2021-09-18 13:11:08 +00:00
2021-06-25 13:56:57 +00:00
import ReactGA from "react-ga";
import { useUser } from "./user-context";
2022-09-16 13:27:24 +00:00
import PrivacyPolicy from "./pages/PrivacyPolicy";
2021-03-06 10:40:31 +00:00
const chapters = content.reduce((chapters, item) => (
item.content
? [...chapters, item]
: [...chapters, ...item.chapters]
), []);
2022-05-11 03:52:31 +00:00
if (isProd) {
2021-06-25 13:56:57 +00:00
ReactGA.initialize("UA-196576671-2");
ReactGA.set({ anonymizeIp: true });
}
2021-09-18 04:43:00 +00:00
function App(props: RouteComponentProps) {
2021-03-06 10:40:31 +00:00
const [navOpen, setNavOpen] = useState(false);
const { user } = useUser();
2021-10-18 04:50:24 +00:00
function logAnalytics() {
2022-05-11 03:52:31 +00:00
if (isProd && !(user?.admin)) {
2021-10-18 04:50:24 +00:00
ReactGA.pageview(window.location.pathname);
};
}
2021-08-04 09:58:50 +00:00
useEffect(() => {
2021-10-18 04:50:24 +00:00
logAnalytics();
if (props.location.pathname === "/") {
if (localStorage.getItem("visitedOnce")) {
props.history.replace("/table-of-contents");
} else {
localStorage.setItem("visitedOnce", "true");
}
}
2021-10-18 05:00:02 +00:00
// eslint-disable-next-line
2021-08-04 09:58:50 +00:00
}, []);
2021-03-06 10:40:31 +00:00
useEffect(() => {
window.scroll(0, 0);
2021-10-18 04:50:24 +00:00
logAnalytics();
2021-10-18 05:00:02 +00:00
// eslint-disable-next-line
2022-01-29 20:26:38 +00:00
}, [props.location.pathname]);
2021-03-06 10:40:31 +00:00
return (
<>
<Header setNavOpen={setNavOpen} />
<div className="container-fluid">
<div className="main-row row">
<Sidebar
content={content}
navOpen={navOpen}
setNavOpen={setNavOpen}
pathname={props.location.pathname}
/>
<Switch>
<Route path="/" exact>
2022-09-10 19:10:54 +00:00
<LandingPage />
</Route>
2022-09-16 13:27:24 +00:00
<Route path="/privacy" exact>
<PrivacyPolicy />
</Route>
2022-09-10 19:10:54 +00:00
<Route path="/table-of-contents" exact>
2021-04-14 12:31:13 +00:00
<TableOfContentsPage />
2021-03-06 10:40:31 +00:00
</Route>
2021-09-18 04:43:00 +00:00
{chapters.map((chapter: any) => (
2021-03-06 10:40:31 +00:00
<Route key={chapter.path} path={chapter.path}>
<Chapter>{chapter}</Chapter>
</Route>
))}
2021-09-19 00:08:06 +00:00
<Route path="/account" exact>
<AccountPage />
</Route>
2021-03-06 10:40:31 +00:00
<Route component={Page404} />
</Switch>
</div>
</div>
</>
);
}
export default withRouter(App);