-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_app.tsx
More file actions
417 lines (382 loc) · 11.9 KB
/
_app.tsx
File metadata and controls
417 lines (382 loc) · 11.9 KB
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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
import { ChakraProvider, ToastPosition } from "@chakra-ui/react";
import { GoogleTagManager } from "@next/third-parties/google";
import { ErrorBoundary, RouteProtecter } from "components";
import { KBarLazyProvider } from "components/CommandBar";
import {
AppSourceProvider,
CommissionSummaryProvider,
EarningSummaryProvider,
GlobalSearchProvider,
NetworkUsersProvider,
NotificationProvider,
OrgDetailProvider,
OrgDetailSessionStorageKey,
PubSubProvider,
TodoProvider,
UserProvider,
WalletProvider,
} from "contexts";
import { MenuProvider } from "contexts/MenuContext";
import { localStorageProvider } from "helpers";
import { fetchOrgDetails } from "helpers/fetchOrgDetailsHelper";
import { Layout } from "layout-components";
import App from "next/app";
// import { Inter } from "next/font/google";
import { MockAdminUser, MockUser } from "__tests__/fixtures/session";
import { CopilotProvider } from "libs";
import Head from "next/head";
import { SWRConfig } from "swr";
import { light } from "../styles/themes";
// Variable Font
// const inter = Inter({
// weight: "variable",
// subsets: ["latin"],
// fallback: ["system-ui", "sans-serif"],
// });
// Configure Chakra Toast default properties
const toastDefaultOptions = {
position: "bottom-right" as ToastPosition,
duration: 6000,
isClosable: true,
};
/**
* Main App component for the Infinity application.
* This component wraps the entire application and provides global context providers.
* It also handles the initial loading of organization details and sets up the theme.
* @param {object} props - The properties passed to the component.
* @param {object} props.Component - The current page component.
* @param {object} props.pageProps - The properties passed to the current page component.
* @param {object} props.router - The Next.js router object.
* @param {object} props.org - The organization details.
* @returns {JSX.Element} The rendered component.
*/
export default function InfinityApp({ Component, pageProps, router, org }) {
console.log("[_app.tsx] Started: ", {
org,
is_local: typeof window === "undefined" ? false : true,
path: router.pathname,
});
// Read initial data from SessionStorage (if available)
if (typeof window !== "undefined") {
// Fallback if org data not received from getInitialProps()
// Fix: this may not be required as we are loading org details
// from local storage within getInitialProps()
if (!org) {
try {
org = JSON.parse(
sessionStorage.getItem(OrgDetailSessionStorageKey)
);
console.log("[_app.tsx] loading org details from local: ", org);
} catch (err) {
console.error(
"[_app.tsx] Error reading initial org data from SessionStorage: ",
err
);
}
}
}
// Setup custom theme...
const colors = org?.metadata?.theme;
const theme = colors
? {
...light,
colors: {
...light.colors,
navstyle: colors.navstyle,
primary: {
...light.colors.primary,
light:
colors?.primary_light || light.colors.primary.light,
DEFAULT:
colors?.primary || light.colors.primary.DEFAULT,
dark: colors?.primary_dark || light.colors.primary.dark,
},
accent: {
...light.colors.accent,
light:
colors?.accent_light || light.colors.accent.light,
DEFAULT: colors?.accent || light.colors.accent.DEFAULT,
dark: colors?.accent_dark || light.colors.accent.dark,
},
},
}
: {
...light,
};
// Add NavBar style colors (light or default dark)...
const lightNav = colors?.navstyle === "light";
theme.colors = {
...theme.colors,
navbar: {
...light.colors.navbar,
bg: lightNav ? theme.colors.primary.DEFAULT : "#FFF",
bgAlt: lightNav ? "#FFFFFF30" : "#00000020",
text: lightNav ? "#FFFFFFEE" : "#000000DD",
textLight: lightNav ? "#FFFFFF70" : "#00000070",
dark: lightNav ? "#FFFFFF" : "#000000",
},
sidebar: {
...light.colors.sidebar,
bg: lightNav ? "#FFF" : theme.colors.primary.DEFAULT,
text: lightNav ? "#333" : "#FFF",
dark: lightNav ? "#000000" : "#FFFFFF",
sel: lightNav
? theme.colors.primary.DEFAULT // theme.colors.primary.DEFAULT + "40"
: theme.colors.primary.dark, // Selection color
divider: lightNav
? theme.colors.primary.light + "40"
: theme.colors.primary.light,
},
status: {
...light.colors.status,
bg: lightNav ? theme.colors.primary.DEFAULT + "30" : "#00000050",
bgLight: lightNav ? "#FFF" : "#00000030",
text: lightNav ? "#111" : "#FFF",
wm: lightNav ? "#00000050" : "#FFFFFF50", // Watermark color
wmLight: lightNav ? "#00000030" : "#FFFFFF25",
title: lightNav ? theme.colors.primary.dark : "#FFD93B",
borderRightColor: lightNav ? "#FFF" : "#00000050",
},
logo: {
text: lightNav ? "#fff" : "primary.dark",
},
};
// Setup default toast options for small screen...
if (typeof window !== "undefined") {
if (window.innerWidth < 768) {
toastDefaultOptions.position = "top-right" as ToastPosition;
}
}
// Mock login for local testing...
let mockUser = null;
if (process.env.NEXT_PUBLIC_ENV === "development") {
if (process.env.NEXT_PUBLIC_MOCK_LOGIN === "agent") {
mockUser = MockUser;
} else if (process.env.NEXT_PUBLIC_MOCK_LOGIN === "admin") {
mockUser = MockAdminUser;
}
console.log("[_app.tsx] !! Mock User: ", mockUser);
}
// Get standard or custom Layout for the page...
// - For custom layout, define the getLayout function in the page Component (pages/<MyPage>/index.jsx). Eg: See the login page (pages/index.tsx)
// - For hiding the top navbar on small screens, define isSubPage = true in the page Component (pages/<MyPage>/index.jsx).
const getLayout = (page) => {
const CurrentLayout = Component.getLayout || Layout;
return (
<CurrentLayout
// fontClassName={inter.className}
appName={org?.app_name}
pageMeta={Component?.pageMeta || {}}
>
{page}
</CurrentLayout>
);
};
// Is this a login page? This should help decide if features like CommandBar should be loaded.
const isLoginPage =
router.pathname === "/" || router.pathname === "/signup" ? true : false;
const AppCompArray = (
<ChakraProvider
theme={theme}
resetCSS={true}
toastOptions={{ defaultOptions: toastDefaultOptions }}
>
<AppSourceProvider>
<OrgDetailProvider initialData={org || null}>
<UserProvider userMockData={mockUser}>
<CopilotProvider
runtimeUrl={
process.env.NEXT_PUBLIC_API_BASE_URL +
"/copilotkit"
}
showPopup
>
<KBarLazyProvider load={!isLoginPage}>
<GlobalSearchProvider>
<MenuProvider>
<WalletProvider>
<RouteProtecter
router={router}
pageMeta={
Component?.pageMeta || {}
}
>
<SWRConfig
value={{
provider:
localStorageProvider,
}}
>
<PubSubProvider>
<NotificationProvider>
<EarningSummaryProvider>
<CommissionSummaryProvider>
<NetworkUsersProvider>
<TodoProvider>
<ErrorBoundary>
{getLayout(
<Component
{...pageProps}
/>
)}
</ErrorBoundary>
</TodoProvider>
</NetworkUsersProvider>
</CommissionSummaryProvider>
</EarningSummaryProvider>
</NotificationProvider>
</PubSubProvider>
</SWRConfig>
</RouteProtecter>
</WalletProvider>
</MenuProvider>
</GlobalSearchProvider>
</KBarLazyProvider>
</CopilotProvider>
</UserProvider>
</OrgDetailProvider>
</AppSourceProvider>
</ChakraProvider>
);
// const useDefaultGoogleLogin = org?.login_types?.google?.default
// ? true
// : false;
// const showGoogleLogin =
// useDefaultGoogleLogin || org?.login_types?.google?.client_id;
// const AppCompArrayWithSocialLogin = showGoogleLogin && false ? (
// <GoogleOAuthProvider
// clientId={
// useDefaultGoogleLogin
// ? process.env.NEXT_PUBLIC_GOOGLE_CLIENT_ID || ""
// : org?.login_types?.google?.client_id
// }
// >
// {AppCompArray}
// </GoogleOAuthProvider>
// ) : (
// AppCompArray
// );
return (
<>
<Head>
<meta
name="viewport"
content="minimum-scale=1, initial-scale=1, width=device-width, shrink-to-fit=no, user-scalable=no, viewport-fit=cover"
/>
<link
rel="icon"
type="image/png"
href="/favicon-32x32.png"
sizes="32x32"
/>
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link
rel="manifest"
href="/manifest.json"
crossOrigin="anonymous"
/>
<link rel="canonical" href={org?.canonicalUrl} />
</Head>
{/* {process.env.NEXT_PUBLIC_GTM_ID ? (
<Script id="google-tag-manager" strategy="lazyOnload">
{`(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','${process.env.NEXT_PUBLIC_GTM_ID}');`}
</Script>
) : null} */}
{/* {AppCompArrayWithSocialLogin} */}
{AppCompArray}
{/* Delay-Load Google Tag Manager after the page is hydrated */}
{process.env.NEXT_PUBLIC_GTM_ID ? (
<GoogleTagManager gtmId={process.env.NEXT_PUBLIC_GTM_ID} />
) : null}
</>
);
}
InfinityApp.getInitialProps = async function (appContext) {
const { ctx } = appContext;
const defaultProps = App.getInitialProps(appContext);
if (ctx?.pathname === "/404") {
return {
...defaultProps,
};
}
// If we are on the client side, try to get org details from SessionStorage
// This can happen on page refresh or when user navigates to a different page
if (typeof window !== "undefined" && window.sessionStorage) {
console.log("[_app.tsx] getInitialProps from SessionStorage.");
const orgDetails = window.sessionStorage.getItem(
OrgDetailSessionStorageKey
);
if (orgDetails) {
return {
...defaultProps,
org: {
...JSON.parse(orgDetails),
canonicalUrl: window?.location?.href?.replace(
/^http:\/\//i,
"https://"
),
},
};
}
}
const { req, res } = ctx;
// This should be executed server-side only...
const host = req?.headers?.host; // || window?.location?.host;
if (!host) {
console.error("[_app.tsx - getInitialProps] Host not found");
return {
...defaultProps,
};
}
// Get org details (like, logo, name, etc) from server
const org_details = await fetchOrgDetails(host, false);
console.debug(
"[_app.tsx] getInitialProps:: ",
JSON.stringify(
{
host: host,
org: org_details?.props?.data,
},
null,
2
)
);
if (org_details?.props?.data?.not_found || org_details?.notFound) {
const source = org_details?.props?.data?.not_found
? "backend"
: "cache";
console.error(
"[_app.tsx - getInitialProps] Org not found. Redirecting to 404. Source=" +
source
);
// TODO: Redirect to marketing landing page...
// res.writeHead(302, { Location: "https://eko.in/eloka" });
// res.end();
res.statusCode = 404;
res.end();
return {};
}
return {
...defaultProps,
org: {
...org_details?.props?.data,
canonicalUrl: "https://" + host + req?.url,
},
};
};
// TODO: Remove from production...
// export function reportWebVitals(metric) {
// console.log("📈 WebVitals: ", metric.name + "=" + metric.value, metric);
// }
// Console warning to show to end users in the browser...
if (typeof window !== "undefined") {
console.info(
`%cWARNING!\n\n%cUsing this console may allow attackers to pretend to be you and steal your information using an attack called Self-XSS.\nAvoid entering or pasting code if you're unsure about it. (${process.env.NEXT_PUBLIC_ENV})`,
"color:red;background:yellow;font-size:20px",
"font-size:16px"
);
}