-
Notifications
You must be signed in to change notification settings - Fork 1
/
AccountSelector.js
132 lines (118 loc) · 3.47 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
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);
};
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' }}>
{ !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>
</Container>
</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;
}