generated from jimmychu0807/substrate-front-end-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AccountSelector.js
174 lines (152 loc) · 4.8 KB
/
AccountSelector.js
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
/* eslint-disable no-unused-vars */
import React, { useState, useEffect } from 'react'
import { CopyToClipboard } from 'react-copy-to-clipboard'
import { encodeAddress } from '@polkadot/util-crypto';
import {
Menu,
Button,
Dropdown,
Container,
Icon,
Image,
Label,
} from 'semantic-ui-react'
import { useSubstrate, useSubstrateState } from './substrate-lib'
const CHROME_EXT_URL =
'https://chrome.google.com/webstore/detail/polkadot%7Bjs%7D-extension/mopnmbcafieddcagagdcbnhejhlodfdd'
const FIREFOX_ADDON_URL =
'https://addons.mozilla.org/en-US/firefox/addon/polkadot-js-extension/'
const acctAddr = acct => (acct ? acct.address : '')
function Main(props) {
const {
setCurrentAccount,
state: { keyring, currentAccount },
} = useSubstrate()
// Get the list of accounts we possess the private key for
const keyringOptions = keyring.getPairs().map(account => ({
key: account.address,
value: account.address,
text: account.meta.name.toUpperCase(),
icon: 'user',
}))
const initialAddress =
keyringOptions.length > 0 ? keyringOptions[0].value : ''
// Set the initial address
// useEffect(() => {
// // `setCurrentAccount()` is called only when currentAccount is null (uninitialized)
// !currentAccount &&
// initialAddress.length > 0 &&
// setCurrentAccount(keyring.getPair(initialAddress))
// }, [currentAccount, setCurrentAccount, keyring, initialAddress])
console.log(`Account: ${currentAccount?.address}`)
const onChange = addr => {
console.log(keyring.getPair(addr))
//setCurrentAccount(keyring.getPair(addr))
}
return (
<Menu
attached="top"
tabular
style={{
backgroundColor: '#fff',
borderColor: '#fff',
paddingTop: '1em',
paddingBottom: '1em',
}}
>
<Container>
<Menu.Menu>
<Image
src={`${process.env.PUBLIC_URL}/assets/substrate-logo.png`}
size="mini"
/>
</Menu.Menu>
<Menu.Menu position="right" style={{ alignItems: 'center' }}>
{/* {!currentAccount ? (
<span>
Create an account with Polkadot-JS Extension (
<a target="_blank" rel="noreferrer" href={CHROME_EXT_URL}>
Chrome
</a>
,
<a target="_blank" rel="noreferrer" href={FIREFOX_ADDON_URL}>
Firefox
</a>
)
</span>
) : null} */}
{!currentAccount ? (
<span>
Please generate a new account
</span>
) : null}
<CopyToClipboard text={currentAccount?.address}>
<Button
basic
circular
size="large"
icon="user"
color={currentAccount?.address ? 'green' : 'red'}
/>
</CopyToClipboard>
<span>{currentAccount?.address}</span>
</Menu.Menu>
</Container>
</Menu>
)
}
function BalanceAnnotation(props) {
const { api, currentAccount } = useSubstrateState()
const [accountBalance, setAccountBalance] = useState(0)
// When account address changes, update subscriptions
useEffect(() => {
let unsubscribe
// If the user has selected an address, create a new subscription
currentAccount &&
api.query.system
.account(acctAddr(currentAccount?.address), balance =>
setAccountBalance(balance.data.free.toHuman())
)
.then(unsub => (unsubscribe = unsub))
.catch(console.error)
return () => unsubscribe && unsubscribe()
}, [api, currentAccount])
return currentAccount?.address ? (
<Label pointing="left">
<Icon name="money" color="green" />
{accountBalance}
</Label>
) : null
}
function TempBalanceAnnotation(props) {
const { api, currentAccount } = useSubstrateState()
const [balance, setBalance] = useState(0);
useEffect(() => {
const fetchBalance = async () => {
try {
// Fetch the account balance
const { data: { free: currentBalance } } = await api.query.system.account(currentAccount?.address);
console.log(encodeAddress(currentAccount?.address, 42));
// Update state with the balance
setBalance(currentBalance.toString());
console.log(currentBalance.toString());
} catch (error) {
console.error(error);
setBalance('Error fetching balance');
}
};
if (currentAccount) {
fetchBalance();
}
}, [currentAccount]);
return currentAccount?.address ? (
<Label pointing="left">
<Icon name="money" color="green" />
{balance}
</Label>
) : null
};
export default function AccountSelector(props) {
const { api, keyring } = useSubstrateState()
return keyring.getPairs && api.query ? <Main {...props} /> : null
}