-
Notifications
You must be signed in to change notification settings - Fork 240
/
Copy path_app.tsx
235 lines (215 loc) · 7.9 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
224
225
226
227
228
229
230
231
232
233
234
235
// Must be the first import
if (process.env.NODE_ENV === 'development') {
// Must use require here as import statements are only allowed
// to exist at top-level.
require('preact/debug');
}
import React, {
ReactElement,
ReactNode,
useEffect,
useMemo,
useState,
} from 'react';
import { AppProps } from 'next/app';
import dynamic from 'next/dynamic';
import Head from 'next/head';
import 'focus-visible';
import Modal from 'react-modal';
import { DefaultSeo } from 'next-seo';
import { QueryClient, QueryClientProvider } from 'react-query';
import Seo from '../next-seo';
import AuthContext, { AuthContextData } from '../contexts/AuthContext';
import { logout as dispatchLogout } from '../lib/user';
import { Router } from 'next/router';
import { useCookieBanner } from '../hooks/useCookieBanner';
import useLoggedUser from '../hooks/useLoggedUser';
import { LoginModalMode } from '../components/modals/LoginModal';
import ProgressiveEnhancementContext from '../contexts/ProgressiveEnhancementContext';
import {
initializeAnalyticsQueue,
loadAnalyticsScript,
trackPageView,
} from '../lib/analytics';
import useOnboarding from '../hooks/useOnboarding';
import OnboardingContext from '../contexts/OnboardingContext';
import SubscriptionContext from '../contexts/SubscriptionContext';
import useSubscriptionClient from '../hooks/useSubscriptionClient';
import useProgressiveEnhancement from '../hooks/useProgressiveEnhancement';
import { canonicalFromRouter } from '../lib/canonical';
import useSettings from '../hooks/useSettings';
import SettingsContext from '../contexts/SettingsContext';
import '../styles/globals.css';
const queryClient = new QueryClient();
const LoginModal = dynamic(
() =>
import(
/* webpackChunkName: "loginModal"*/ '../components/modals/LoginModal'
),
);
const CookieBanner = dynamic(() => import('../components/CookieBanner'));
const HelpUsGrowModal = dynamic(
() => import('../components/modals/HelpUsGrowModal'),
);
Modal.setAppElement('#__next');
Modal.defaultStyles = {};
interface CompnentGetLayout {
getLayout?: (
page: ReactNode,
pageProps: Record<string, unknown>,
layoutProps: Record<string, unknown>,
) => ReactNode;
layoutProps?: Record<string, unknown>;
}
Router.events.on('routeChangeComplete', trackPageView);
function InternalApp({ Component, pageProps, router }: AppProps): ReactElement {
const [initializedGA, setInitializedGA] = useState(false);
const [
user,
setUser,
trackingId,
loadingUser,
tokenRefreshed,
loadedUserFromCache,
] = useLoggedUser();
const progressiveContext = useProgressiveEnhancement();
const [loginMode, setLoginMode] = useState<LoginModalMode | null>(null);
const [showCookie, acceptCookies, updateCookieBanner] = useCookieBanner();
const closeLogin = () => setLoginMode(null);
const logout = async (): Promise<void> => {
await dispatchLogout();
location.reload();
};
const authContext: AuthContextData = useMemo(
() => ({
user,
shouldShowLogin: loginMode !== null,
showLogin: (mode: LoginModalMode = LoginModalMode.Default) =>
setLoginMode(mode),
updateUser: setUser,
logout,
loadingUser,
tokenRefreshed,
loadedUserFromCache,
}),
[user, loginMode, loadingUser, tokenRefreshed],
);
const canFetchUserData = progressiveContext.windowLoaded && tokenRefreshed;
const onboardingContext = useOnboarding(user, loadedUserFromCache);
const subscriptionContext = useSubscriptionClient(canFetchUserData);
const settingsContext = useSettings(user?.id, canFetchUserData);
useEffect(() => {
if (trackingId && !initializedGA) {
initializeAnalyticsQueue(trackingId);
trackPageView(`${window.location.pathname}${window.location.search}`);
setInitializedGA(true);
}
}, [trackingId]);
useEffect(() => {
if (trackingId && progressiveContext.windowLoaded && !showCookie) {
loadAnalyticsScript();
}
}, [trackingId, progressiveContext.windowLoaded, showCookie]);
useEffect(() => {
if (
user &&
!user.infoConfirmed &&
window.location.pathname.indexOf('/register') !== 0
) {
window.location.replace(
`/register?redirect_uri=${encodeURI(window.location.pathname)}`,
);
}
updateCookieBanner(user);
}, [user, loadingUser]);
const getLayout =
(Component as CompnentGetLayout).getLayout || ((page) => page);
const { layoutProps } = Component as CompnentGetLayout;
return (
<ProgressiveEnhancementContext.Provider value={progressiveContext}>
<AuthContext.Provider value={authContext}>
<SubscriptionContext.Provider value={subscriptionContext}>
<SettingsContext.Provider value={settingsContext}>
<OnboardingContext.Provider value={onboardingContext}>
<Head>
<meta
name="viewport"
content="initial-scale=1.0, width=device-width"
/>
<meta name="theme-color" content="#151618" />
<meta name="msapplication-navbutton-color" content="#151618" />
<meta
name="apple-mobile-web-app-status-bar-style"
content="#151618"
/>
<meta name="application-name" content="daily.dev" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta
name="apple-mobile-web-app-status-bar-style"
content="default"
/>
<meta name="apple-mobile-web-app-title" content="daily.dev" />
<meta name="format-detection" content="telephone=no" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="msapplication-TileColor" content="#151618" />
<meta name="msapplication-tap-highlight" content="no" />
<link
rel="apple-touch-icon"
sizes="180x180"
href="/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/favicon-16x16.png"
/>
<link rel="manifest" href="/manifest.json" />
<script
dangerouslySetInnerHTML={{
__html: `window.addEventListener('load', () => { window.windowLoaded = true; }, {
once: true,
});`,
}}
/>
<link rel="preconnect" href="https://res.cloudinary.com" />
</Head>
<DefaultSeo {...Seo} canonical={canonicalFromRouter(router)} />
{getLayout(<Component {...pageProps} />, pageProps, layoutProps)}
{!user &&
!loadingUser &&
(progressiveContext.windowLoaded || loginMode !== null) && (
<LoginModal
isOpen={loginMode !== null}
onRequestClose={closeLogin}
contentLabel="Login Modal"
mode={loginMode}
/>
)}
{showCookie && <CookieBanner onAccepted={acceptCookies} />}
{onboardingContext.showReferral && (
<HelpUsGrowModal
isOpen={true}
onRequestClose={onboardingContext.closeReferral}
/>
)}
</OnboardingContext.Provider>
</SettingsContext.Provider>
</SubscriptionContext.Provider>
</AuthContext.Provider>
</ProgressiveEnhancementContext.Provider>
);
}
export default function App(props: AppProps): ReactElement {
return (
<QueryClientProvider client={queryClient}>
<InternalApp {...props} />
</QueryClientProvider>
);
}