forked from jimmychu0807/substrate-front-end-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AccountSelector.js
142 lines (126 loc) · 3.84 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
import React, { useState, useEffect } from 'react'
import { CopyToClipboard } from 'react-copy-to-clipboard'
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])
const onChange = 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}
<CopyToClipboard text={acctAddr(currentAccount)}>
<Button
basic
circular
size="large"
icon="user"
color={currentAccount ? 'green' : 'red'}
/>
</CopyToClipboard>
<Dropdown
search
selection
clearable
placeholder="Select an account"
options={keyringOptions}
onChange={(_, dropdown) => {
onChange(dropdown.value)
}}
value={acctAddr(currentAccount)}
/>
<BalanceAnnotation />
</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), balance =>
setAccountBalance(balance.data.free.toHuman())
)
.then(unsub => (unsubscribe = unsub))
.catch(console.error)
return () => unsubscribe && unsubscribe()
}, [api, currentAccount])
return currentAccount ? (
<Label pointing="left">
<Icon name="money" color="green" />
{accountBalance}
</Label>
) : null
}
export default function AccountSelector(props) {
const { api, keyring } = useSubstrateState()
return keyring.getPairs && api.query ? <Main {...props} /> : null
}