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-03-06 10:40:31 +00:00
|
|
|
// eslint-disable-next-line
|
2021-09-18 04:43:00 +00:00
|
|
|
import { BrowserRouter as Router, 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";
|
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";
|
2021-09-18 13:11:08 +00:00
|
|
|
|
2021-06-25 13:56:57 +00:00
|
|
|
import ReactGA from "react-ga";
|
2021-09-27 02:28:43 +00:00
|
|
|
import { useUser } from "./user-context";
|
2021-03-06 10:40:31 +00:00
|
|
|
const chapters = content.reduce((chapters, item) => (
|
|
|
|
item.content
|
|
|
|
? [...chapters, item]
|
|
|
|
: [...chapters, ...item.chapters]
|
|
|
|
), []);
|
|
|
|
|
2021-06-25 13:56:57 +00:00
|
|
|
const prod = document.location.hostname === "grammar.lingdocs.com";
|
|
|
|
|
|
|
|
if (prod) {
|
|
|
|
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);
|
2021-09-27 02:28:43 +00:00
|
|
|
const { user } = useUser();
|
2021-08-04 09:58:50 +00:00
|
|
|
useEffect(() => {
|
|
|
|
ReactGA.pageview(window.location.pathname);
|
|
|
|
}, []);
|
2021-03-06 10:40:31 +00:00
|
|
|
useEffect(() => {
|
|
|
|
window.scroll(0, 0);
|
2021-09-27 02:28:43 +00:00
|
|
|
if (prod && !(user?.admin)) {
|
2021-08-04 09:58:50 +00:00
|
|
|
ReactGA.pageview(window.location.pathname);
|
|
|
|
}
|
2021-09-30 19:48:19 +00:00
|
|
|
}, [props.location.pathname, user]);
|
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>
|
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);
|