-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathOnboardingModal.tsx
More file actions
385 lines (344 loc) · 13.3 KB
/
OnboardingModal.tsx
File metadata and controls
385 lines (344 loc) · 13.3 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
/**
* OnboardingModal Component
* Orchestrates the onboarding flow using subcomponents
*/
import { useEffect, useState } from 'react';
import { Dialog, DialogTitle, DialogContent, Box, Alert, Button, IconButton, Collapse } from '@mui/material';
import CloseIcon from '@mui/icons-material/Close';
import RefreshIcon from '@mui/icons-material/Refresh';
import { useOnboarding } from '../contexts/onboarding';
import { useWallet } from '../contexts/wallet';
import { useNetwork } from '../contexts/network';
import type { AztecAddress } from '@aztec/aztec.js/addresses';
import type { Aliased } from '@aztec/aztec.js/wallet';
import type { WalletProvider, PendingConnection } from '@aztec/wallet-sdk/manager';
import { createGregoSwapCapabilities } from '../config/capabilities';
import {
OnboardingProgress,
WalletDiscovery,
WalletSelection,
EmojiVerification,
AccountSelection,
ConnectingWallet,
DripPasswordInput,
CompletionTransition,
FlowMessages,
} from './onboarding';
type WalletConnectionPhase = 'discovering' | 'selecting_wallet' | 'verifying' | 'connecting' | 'selecting_account';
interface OnboardingModalProps {
open: boolean;
onAccountSelect: (address: AztecAddress) => void;
}
export function OnboardingModal({ open, onAccountSelect }: OnboardingModalProps) {
const {
status,
error,
currentStep,
totalSteps,
steps,
resetOnboarding,
closeModal,
completeDripOnboarding,
isSwapPending,
dripPhase,
dripError,
dismissDripError,
setSimulationGrant,
hasSimulationGrant,
selectEmbeddedWallet,
useEmbeddedWallet,
} = useOnboarding();
const { discoverWallets, initiateConnection, confirmConnection, cancelConnection, onWalletDisconnect } = useWallet();
const { activeNetwork } = useNetwork();
// Wallet connection state
const [accounts, setAccounts] = useState<Aliased<AztecAddress>[]>([]);
const [isLoadingAccounts, setIsLoadingAccounts] = useState(false);
const [accountsError, setAccountsError] = useState<string | null>(null);
const [connectionPhase, setConnectionPhase] = useState<WalletConnectionPhase>('discovering');
const [discoveredWallets, setDiscoveredWallets] = useState<WalletProvider[]>([]);
const [selectedWallet, setSelectedWallet] = useState<WalletProvider | null>(null);
const [pendingConnection, setPendingConnection] = useState<PendingConnection | null>(null);
const [needsRediscovery, setNeedsRediscovery] = useState(false);
const [cancelledWalletIds, setCancelledWalletIds] = useState<Set<string>>(new Set());
// Transition animation state
const [showCompletionCheck, setShowCompletionCheck] = useState(false);
const [showSwapIcon, setShowSwapIcon] = useState(false);
const isLoading = status !== 'idle' && status !== 'completed' && status !== 'error';
// Listen for unexpected wallet disconnection
useEffect(() => {
const unsubscribe = onWalletDisconnect(() => {
setNeedsRediscovery(true);
setDiscoveredWallets([]);
setAccounts([]);
if (status === 'connecting') {
setConnectionPhase('discovering');
setAccountsError('Wallet disconnected. Please reconnect.');
}
});
return unsubscribe;
}, [onWalletDisconnect, status]);
// Start wallet discovery when modal opens and status is connecting
useEffect(() => {
if (!open || status !== 'connecting') return;
setConnectionPhase('discovering');
setDiscoveredWallets([]);
setSelectedWallet(null);
setPendingConnection(null);
setAccounts([]);
setAccountsError(null);
setNeedsRediscovery(false);
setCancelledWalletIds(new Set());
const discovery = discoverWallets();
(async () => {
let foundAny = false;
for await (const wallet of discovery.wallets) {
foundAny = true;
setConnectionPhase('selecting_wallet');
setDiscoveredWallets(prev => [...prev, wallet]);
}
if (!foundAny) {
// No external wallets found — still show wallet selection phase so the embedded option is visible
setConnectionPhase('selecting_wallet');
}
})();
return () => {
discovery.cancel();
};
}, [open, status, discoverWallets]);
// Handle manual re-discovery
const handleRediscover = async () => {
if (pendingConnection) {
cancelConnection(pendingConnection);
}
setConnectionPhase('discovering');
setDiscoveredWallets([]);
setSelectedWallet(null);
setPendingConnection(null);
setAccounts([]);
setAccountsError(null);
setNeedsRediscovery(false);
setCancelledWalletIds(new Set());
const discovery = discoverWallets();
let foundAny = false;
for await (const wallet of discovery.wallets) {
foundAny = true;
setConnectionPhase('selecting_wallet');
setDiscoveredWallets(prev => [...prev, wallet]);
}
if (!foundAny) {
// No external wallets found — still show wallet selection phase so the embedded option is visible
setConnectionPhase('selecting_wallet');
}
};
// Handle wallet selection
const handleWalletSelect = async (provider: WalletProvider) => {
try {
setSelectedWallet(provider);
setConnectionPhase('verifying');
setAccountsError(null);
const pending = await initiateConnection(provider);
setPendingConnection(pending);
} catch (err) {
setAccountsError(err instanceof Error ? err.message : 'Failed to initiate connection');
setConnectionPhase('selecting_wallet');
setSelectedWallet(null);
setPendingConnection(null);
}
};
// Handle emoji verification confirmation
const handleConfirmConnection = async () => {
if (!selectedWallet || !pendingConnection) return;
try {
setConnectionPhase('connecting');
setIsLoadingAccounts(true);
const wallet = await confirmConnection(selectedWallet, pendingConnection);
// Request capabilities with full manifest (includes account selection)
const manifest = createGregoSwapCapabilities(activeNetwork);
const capabilitiesResponse = await wallet.requestCapabilities(manifest);
// Check if simulation capabilities were granted (affects step labels)
const simulationCapability = capabilitiesResponse.granted.find(cap => cap.type === 'simulation');
setSimulationGrant(!!simulationCapability);
// Extract granted accounts from capability response
const accountsCapability = capabilitiesResponse.granted.find(cap => cap.type === 'accounts') as
| (typeof capabilitiesResponse.granted[0] & { accounts?: Aliased<AztecAddress>[] })
| undefined;
if (!accountsCapability || !accountsCapability.accounts || accountsCapability.accounts.length === 0) {
throw new Error('No accounts were granted. Please select at least one account in your wallet.');
}
// Accounts are already in Aliased format from wallet response
const walletAccounts: Aliased<AztecAddress>[] = accountsCapability.accounts;
setAccounts(walletAccounts);
setConnectionPhase('selecting_account');
setIsLoadingAccounts(false);
setPendingConnection(null);
} catch (err) {
setAccountsError(err instanceof Error ? err.message : 'Failed to connect to wallet');
setConnectionPhase('selecting_wallet');
setSelectedWallet(null);
setPendingConnection(null);
setIsLoadingAccounts(false);
}
};
// Handle emoji verification cancellation
const handleCancelConnection = () => {
if (pendingConnection) {
cancelConnection(pendingConnection);
}
if (selectedWallet) {
setCancelledWalletIds(prev => new Set(prev).add(selectedWallet.id));
}
setPendingConnection(null);
setSelectedWallet(null);
setConnectionPhase('selecting_wallet');
};
// Handle completion animation and auto-close
useEffect(() => {
if (status === 'completed' && isSwapPending) {
setShowCompletionCheck(true);
const iconTimer = setTimeout(() => {
setShowSwapIcon(true);
}, 800);
const closeTimer = setTimeout(() => {
closeModal();
}, 2000);
return () => {
clearTimeout(iconTimer);
clearTimeout(closeTimer);
};
} else if (status === 'completed' && !isSwapPending) {
closeModal();
} else {
setShowCompletionCheck(false);
setShowSwapIcon(false);
}
}, [status, closeModal, isSwapPending]);
// Computed display states
const showWalletSelection =
status === 'connecting' && connectionPhase === 'selecting_wallet';
const showEmojiVerification = status === 'connecting' && connectionPhase === 'verifying' && pendingConnection !== null;
const showAccountSelection = status === 'connecting' && connectionPhase === 'selecting_account' && accounts.length > 0;
const showCompletionTransition = status === 'completed';
return (
<Dialog
open={open}
maxWidth="sm"
fullWidth
disableEscapeKeyDown
sx={{
backgroundColor: 'background.paper',
backgroundImage: 'none',
}}
>
<DialogTitle
sx={{ fontWeight: 600, pb: 1, display: 'flex', alignItems: 'center', justifyContent: 'space-between' }}
>
Setting Up Your Wallet
<IconButton
onClick={closeModal}
size="small"
sx={{
color: 'text.secondary',
'&:hover': {
backgroundColor: 'rgba(255, 255, 255, 0.08)',
},
}}
aria-label="close"
>
<CloseIcon />
</IconButton>
</DialogTitle>
<DialogContent>
{showCompletionTransition ? (
<CompletionTransition
showCheck={showCompletionCheck}
showActionIcon={showSwapIcon}
hasPendingSwap={isSwapPending}
/>
) : (
<>
{/* Progress Bar and Steps */}
<OnboardingProgress
currentStep={currentStep}
totalSteps={totalSteps}
steps={steps}
status={status}
isLoading={isLoading}
/>
{/* Error Display */}
{(error || accountsError) && (
<Alert
severity="error"
sx={{ mb: 3 }}
action={
needsRediscovery || accountsError?.includes('disconnected') ? (
<Button size="small" color="inherit" startIcon={<RefreshIcon />} onClick={handleRediscover}>
Reconnect
</Button>
) : (
<Button size="small" color="inherit" onClick={resetOnboarding}>
Retry
</Button>
)
}
>
{error || accountsError}
</Alert>
)}
{/* Wallet Connection Flow */}
<Collapse in={status === 'connecting'} timeout={400}>
<Box sx={{ pl: 5, pr: 2, pb: 2 }}>
{connectionPhase === 'discovering' ? (
<WalletDiscovery onUseEmbedded={selectEmbeddedWallet} />
) : isLoadingAccounts && connectionPhase === 'connecting' && selectedWallet ? (
<ConnectingWallet wallet={selectedWallet} />
) : showWalletSelection ? (
<WalletSelection
wallets={discoveredWallets}
cancelledWalletIds={cancelledWalletIds}
onSelect={handleWalletSelect}
onRefresh={handleRediscover}
onUseEmbedded={selectEmbeddedWallet}
/>
) : showEmojiVerification && selectedWallet && pendingConnection ? (
<EmojiVerification
wallet={selectedWallet}
pendingConnection={pendingConnection}
onConfirm={handleConfirmConnection}
onCancel={handleCancelConnection}
/>
) : showAccountSelection ? (
<AccountSelection accounts={accounts} onSelect={onAccountSelect} />
) : null}
</Box>
</Collapse>
{/* Flow-specific Messages */}
<FlowMessages status={status} hasSimulationGrant={hasSimulationGrant} useEmbeddedWallet={useEmbeddedWallet} />
{/* Drip Password Input (shown when balance is 0) */}
<Collapse in={status === 'awaiting_drip'} timeout={400}>
{status === 'awaiting_drip' && <DripPasswordInput onSubmit={completeDripOnboarding} />}
</Collapse>
{/* Drip Error Display (shown when drip fails during execution) */}
<Collapse in={status === 'executing_drip' && dripPhase === 'error'} timeout={400}>
{status === 'executing_drip' && dripPhase === 'error' && (
<Box sx={{ mt: 3 }}>
<Alert
severity="error"
sx={{ mb: 2 }}
action={
<Button size="small" color="inherit" onClick={dismissDripError}>
Retry
</Button>
}
>
{dripError || 'Failed to claim tokens. Please try again.'}
</Alert>
<DripPasswordInput onSubmit={completeDripOnboarding} />
</Box>
)}
</Collapse>
</>
)}
</DialogContent>
</Dialog>
);
}