-
Notifications
You must be signed in to change notification settings - Fork 1
/
AccountSelector.js
159 lines (145 loc) · 3.93 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
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 } from './substrate-lib'
function Main(props) {
const { keyring } = useSubstrate()
const { setAccountAddress } = props
const [accountSelected, setAccountSelected] = useState('')
// 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(() => {
setAccountAddress(initialAddress)
setAccountSelected(initialAddress)
}, [setAccountAddress, initialAddress])
const onChange = address => {
// Update state with new account address
setAccountAddress(address)
setAccountSelected(address)
}
const optionsRole = [
{
//provider
key: 'provider',
text: `Provider`,
value: 0,
image: null,
},
{
//player
key: 'player',
text: `Player`,
value: 1,
image: null,
},
]
return (
<Menu
attached="top"
tabular
style={{
backgroundColor: '#fff',
borderColor: '#fff',
padding: '1em',
}}
>
<>
{/* remove container */}
<Menu.Menu>
<Image
src={`${process.env.PUBLIC_URL}/assets/substrate-logo.png`}
size="mini"
/>
</Menu.Menu>
<Menu.Menu position="right" style={{ alignItems: 'center' }}>
<Dropdown
selection
options={optionsRole}
value={props.role}
onChange={(_, { value }) => props.setRole(value)}
style={{ marginRight: '1rem' }}
/>
{!accountSelected ? (
<span>
Add your account with the{' '}
<a
target="_blank"
rel="noopener noreferrer"
href="https://github.com/polkadot-js/extension"
>
Polkadot JS Extension
</a>
</span>
) : null}
<CopyToClipboard text={accountSelected}>
<Button
basic
circular
size="large"
icon="user"
color={accountSelected ? 'green' : 'red'}
/>
</CopyToClipboard>
<Dropdown
search
selection
clearable
placeholder="Select an account"
options={keyringOptions}
onChange={(_, dropdown) => {
onChange(dropdown.value)
}}
value={accountSelected}
/>
<BalanceAnnotation accountSelected={accountSelected} />
</Menu.Menu>
</>
</Menu>
)
}
function BalanceAnnotation(props) {
const { accountSelected } = props
const { api } = useSubstrate()
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
accountSelected &&
api.query.system
.account(accountSelected, balance => {
setAccountBalance(balance.data.free.toHuman())
})
.then(unsub => {
unsubscribe = unsub
})
.catch(console.error)
return () => unsubscribe && unsubscribe()
}, [api, accountSelected])
return accountSelected ? (
<Label pointing="left">
<Icon name="money" color="green" />
{accountBalance}
</Label>
) : null
}
export default function AccountSelector(props) {
const { api, keyring } = useSubstrate()
return keyring.getPairs && api.query ? <Main {...props} /> : null
}