-
Notifications
You must be signed in to change notification settings - Fork 5
/
App.tsx
223 lines (208 loc) · 6.04 KB
/
App.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
import React, {
Suspense,
createContext,
lazy,
useState,
useEffect,
} from "react";
import {
createBrowserRouter,
RouterProvider,
Outlet,
useLocation,
Navigate,
} from "react-router-dom";
import GlobalStyles from "./styling/GlobalStyles";
import Helmet from "react-helmet";
import { Root } from "./styling/Grid";
import { Routes as routingRoutes } from "./routing/routes";
import debounce from "lodash/debounce";
import "./styling/fonts/fonts.css";
import Loading from "./components/general/Loading";
import { ApolloClient, InMemoryCache, ApolloProvider } from "@apollo/client";
import ReactGA from "react-ga4";
import { overlayPortalContainerId } from "./Utils";
import styled from "styled-components";
if (process.env.REACT_APP_GOOGLE_ANALYTICS_GA4_ID) {
ReactGA.initialize([
{
trackingId: process.env.REACT_APP_GOOGLE_ANALYTICS_GA4_ID,
},
]);
}
const useTrackPageView = () => {
const routerLocation = useLocation();
useEffect(() => {
const page = routerLocation.pathname + window.location.search;
ReactGA.send({ hitType: "pageview", page: page });
}, [routerLocation]);
};
const GATracker = () => {
useTrackPageView();
return null;
};
const overlayPortalZIndex = 3000;
const OverlayPortal = styled.div`
position: relative;
z-index: ${overlayPortalZIndex};
`;
const LandingPage = lazy(() => import("./pages/landingPage"));
const AboutPage = lazy(() => import("./pages/landingPage/About"));
const CommunityPage = lazy(() => import("./pages/landingPage/Community"));
const AlbaniaTool = lazy(() => import("./pages/albaniaTool"));
const AlbaniaStory = lazy(() => import("./pages/stories/albania"));
const NamibiaWalvisBayStory = lazy(
() => import("./pages/stories/namibiaWalvisBay"),
);
const PortEcosystemsStory = lazy(
() => import("./pages/stories/portEcosystems"),
);
const JordanTool = lazy(() => import("./pages/jordanTool"));
const JordanOverview = lazy(() => import("./pages/jordanTool/overviewPage"));
const BestOf2020 = lazy(() => import("./pages/stories/bestOf/2020"));
const BestOf2021 = lazy(() => import("./pages/stories/bestOf/2021"));
const BestOf2022 = lazy(() => import("./pages/stories/bestOf/2022"));
const BestOf2024 = lazy(() => import("./pages/stories/bestOf/2024"));
const NamibiaTool = lazy(() => import("./pages/namibiaTool"));
const CustomProductSpaceTool = lazy(
() => import("./pages/iframeTools/CreateYourProductSpace"),
);
const CustomIndustrySpaceTool = lazy(
() => import("./pages/iframeTools/CreateYourIndustrySpace"),
);
const PageNotFound = lazy(() => import("./pages/pageNotFound"));
const GreenGrowth = lazy(() => import("./pages/stories/greenGrowth"));
export interface IAppContext {
windowWidth: number;
}
export const AppContext = createContext<IAppContext>({
windowWidth: window.innerWidth,
});
const client = new ApolloClient({
uri: process.env.REACT_APP_API_URL,
cache: new InMemoryCache(),
});
const defaultMetaTitle = "Harvard Growth Lab Viz Hub";
const defaultMetaDescription =
"Translating Growth Lab research into powerful online tools and interactive storytelling";
const AppWrapper = () => {
const [windowWidth, setWindowWidth] = useState<number>(window.innerWidth);
const appContext = { windowWidth };
useEffect(() => {
const updateWindowWidth = debounce(() => {
setWindowWidth(window.innerWidth);
}, 500);
window.addEventListener("resize", updateWindowWidth);
return () => {
window.removeEventListener("resize", updateWindowWidth);
};
}, []);
return (
<AppContext.Provider value={appContext}>
<Helmet>
<title>{defaultMetaTitle}</title>
<meta name="description" content={defaultMetaDescription} />
<meta property="og:title" content={defaultMetaTitle} />
<meta property="og:description" content={defaultMetaDescription} />
</Helmet>
<ApolloProvider client={client}>
<Root>
<GlobalStyles />
<GATracker />
<Suspense fallback={<Loading />}>
<Outlet />
</Suspense>
<OverlayPortal id={overlayPortalContainerId} />
</Root>
</ApolloProvider>
</AppContext.Provider>
);
};
const router = createBrowserRouter([
{
path: "/",
element: <AppWrapper />,
children: [
{
path: routingRoutes.Landing,
element: <LandingPage />,
},
{
path: routingRoutes.About,
element: <AboutPage />,
},
{
path: routingRoutes.Community,
element: <CommunityPage />,
},
{
path: routingRoutes.AlbaniaTool,
element: <AlbaniaTool />,
},
{
path: routingRoutes.JordanTool,
element: <JordanTool />,
},
{
path: routingRoutes.JordanOverview,
element: <JordanOverview />,
},
{
path: routingRoutes.AlbaniaStory,
element: <AlbaniaStory />,
},
{
path: routingRoutes.BestOf2020,
element: <BestOf2020 />,
},
{
path: routingRoutes.BestOf2021,
element: <BestOf2021 />,
},
{
path: routingRoutes.BestOf2022,
element: <BestOf2022 />,
},
{
path: routingRoutes.BestOf2024,
element: <BestOf2024 />,
},
{
path: routingRoutes.NamibiaTool,
element: <NamibiaTool />,
},
{
path: routingRoutes.CustomProductSpace,
element: <CustomProductSpaceTool />,
},
{
path: routingRoutes.CustomIndustrySpace,
element: <CustomIndustrySpaceTool />,
},
{
path: routingRoutes.NamibiaWalvisBay,
element: <NamibiaWalvisBayStory />,
},
{
path: routingRoutes.PortEcosystemsStory,
element: <PortEcosystemsStory />,
},
{
path: routingRoutes.GreenGrowth,
element: <GreenGrowth />,
},
{
path: "green-growth",
element: <Navigate to="/greenplexity" replace />,
},
{
path: "*",
element: <PageNotFound />,
},
],
},
]);
function App() {
return <RouterProvider router={router} />;
}
export default App;