/** * 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. * */ import React, { useState } from "react"; // eslint-disable-next-line import { BrowserRouter as Router, Route, withRouter, Switch, RouteComponentProps } from "react-router-dom"; 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"; import TableOfContentsPage from "./pages/TableOfContentsPage"; import { useEffect } from "react"; import { useUser } from "./user-context"; import { AT } from "@lingdocs/lingdocs-main"; import ReactGA from "react-ga"; const chapters = content.reduce((chapters, item) => ( item.content ? [...chapters, item] : [...chapters, ...item.chapters] ), []); const prod = document.location.hostname === "grammar.lingdocs.com"; if (prod) { ReactGA.initialize("UA-196576671-2"); ReactGA.set({ anonymizeIp: true }); } function App(props: RouteComponentProps) { const [navOpen, setNavOpen] = useState(false); const { setUser } = useUser(); useEffect(() => { ReactGA.pageview(window.location.pathname); fetch("https://account.lingdocs.com/api/user", { credentials: "include" }) .then((res) => res.json()) .then((res) => { console.log("fetched user info"); if (res.user) { const user = res.user as AT.LingdocsUser setUser(user); } else { setUser(undefined); } }).catch(console.error); // eslint-disable-next-line }, []); useEffect(() => { window.scroll(0, 0); if (prod) { ReactGA.pageview(window.location.pathname); } }, [props.location.pathname]); return ( <>
{chapters.map((chapter: any) => ( {chapter} ))}
); } export default withRouter(App);