-
Notifications
You must be signed in to change notification settings - Fork 49
/
Wallet.tsx
235 lines (215 loc) · 5.88 KB
/
Wallet.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
// @ts-nocheck
import { useChain, useManager } from '@cosmos-kit/react';
import { Box, Stack, useTheme } from '@interchain-ui/react';
import { MouseEventHandler, useEffect, useMemo } from 'react';
import { FiAlertTriangle } from 'react-icons/fi';
import { ChainName, WalletStatus } from 'cosmos-kit';
import { defaultChainName } from '@/config';
import {
Connected,
Connecting,
Disconnected,
NotExist,
Error,
Rejected,
WalletConnectComponent,
ConnectWalletButton,
} from './WalletConnect';
import { ConnectStatusWarn, RejectedWarn } from './WarnBlock';
import { ChooseChain, ChooseChainProps } from './ChooseChain';
import { ConnectedShowAddress, CopyAddressBtn } from './AddressCard';
import { UserInfo } from './UserInfo';
import { Astronaut } from './Astronaut';
import { ChainCard } from './ChainCard';
export interface WalletSectionProps {
isMultiChain: boolean;
providedChainName?: ChainName;
setChainName?: (chainName: ChainName | undefined) => void;
}
export const WalletSection = ({
isMultiChain,
providedChainName,
setChainName,
}: WalletSectionProps) => {
const { chainRecords, getChainLogo } = useManager();
const {
connect,
openView,
status,
username,
address,
message,
wallet,
chain: chainInfo,
} = useChain(providedChainName || defaultChainName);
const { theme } = useTheme();
const chain = {
chainName: defaultChainName,
label: chainInfo.pretty_name,
value: defaultChainName,
icon: getChainLogo(defaultChainName),
};
const chainOptions = useMemo(
() =>
chainRecords.map((chainRecord) => {
return {
chainName: chainRecord?.name,
label: chainRecord?.chain?.pretty_name ?? '',
value: chainRecord?.name,
icon: getChainLogo(chainRecord.name),
};
}),
[chainRecords, getChainLogo]
);
// Events
const onClickConnect: MouseEventHandler = async (e) => {
e.preventDefault();
await connect();
};
const onClickOpenView: MouseEventHandler = (e) => {
e.preventDefault();
openView();
};
// Components
const connectWalletButton = (
<WalletConnectComponent
walletStatus={status}
disconnect={
<Disconnected buttonText="Connect Wallet" onClick={onClickConnect} />
}
connecting={<Connecting />}
connected={
<Connected buttonText={'My Wallet'} onClick={onClickOpenView} />
}
rejected={<Rejected buttonText="Reconnect" onClick={onClickConnect} />}
error={<Error buttonText="Change Wallet" onClick={onClickOpenView} />}
notExist={
<NotExist buttonText="Install Wallet" onClick={onClickOpenView} />
}
/>
);
const connectWalletWarn = message ? (
<ConnectStatusWarn
walletStatus={status}
rejected={
<RejectedWarn
icon={
<Box mt="$2">
<FiAlertTriangle />
</Box>
}
wordOfWarning={`${wallet?.prettyName}: ${message}`}
/>
}
error={
<RejectedWarn
icon={
<Box mt="$2">
<FiAlertTriangle />
</Box>
}
wordOfWarning={`${wallet?.prettyName}: ${message}`}
/>
}
/>
) : null;
useEffect(() => {
setChainName?.(
window.localStorage.getItem('selected-chain') || defaultChainName
);
}, [setChainName]);
const onChainChange: ChooseChainProps['onChange'] = async (selectedValue) => {
if (!selectedValue) return;
if (selectedValue?.value) {
setChainName?.(selectedValue?.value);
window?.localStorage.setItem('selected-chain', selectedValue?.value);
} else {
window?.localStorage.removeItem('selected-chain');
}
};
const chooseChain = (
<ChooseChain
chainName={providedChainName}
chainInfos={chainOptions}
onChange={onChainChange}
/>
);
const userInfo = username && (
<UserInfo username={username} icon={<Astronaut />} />
);
const addressBtn = (
<CopyAddressBtn
walletStatus={status}
connected={<ConnectedShowAddress address={address} isLoading={false} />}
/>
);
return (
<Box
display="flex"
justifyContent="center"
alignItems="center"
py="$12"
width="100%"
attributes={{
'data-part-id': 'wallet-section',
}}
>
<Box
display="grid"
width="$full"
maxWidth={{
mobile: '100%',
tablet: '450px',
}}
gridTemplateColumns="1fr"
rowGap="$10"
alignItems="center"
justifyContent="center"
>
{isMultiChain ? (
<Box>{chooseChain}</Box>
) : (
<Box marginBottom={'$9'}>
<ChainCard
prettyName={chain?.label || defaultChainName}
icon={chain?.icon}
/>
</Box>
)}
{!providedChainName && isMultiChain ? (
<ConnectWalletButton buttonText={'Connect Wallet'} isDisabled />
) : (
<Box px={6}>
<Stack
direction="vertical"
attributes={{
px: '$2',
py: '$12',
justifyContent: 'center',
alignItems: 'center',
borderRadius: '$lg',
backgroundColor: theme === 'light' ? '$white' : '$cardBg',
boxShadow:
theme === 'light'
? '0 0 2px #dfdfdf, 0 0 6px -2px #d3d3d3'
: '0 0 2px #363636, 0 0 8px -2px #4f4f4f',
}}
space="$8"
>
{userInfo}
{addressBtn}
<Box
width="100%"
maxWidth="200px"
attributes={{ id: 'connect-button' }}
>
{connectWalletButton}
</Box>
{connectWalletWarn}
</Stack>
</Box>
)}
</Box>
</Box>
);
};