1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 20:05:27 +02:00
metamask-extension/ui/app/components/dropdowns/account-dropdown-mini.js

76 lines
1.7 KiB
JavaScript
Raw Normal View History

2017-10-25 18:01:58 +02:00
const Component = require('react').Component
const h = require('react-hyperscript')
const inherits = require('util').inherits
const AccountListItem = require('../send/account-list-item/account-list-item.component').default
2017-10-25 18:01:58 +02:00
module.exports = AccountDropdownMini
inherits(AccountDropdownMini, Component)
function AccountDropdownMini () {
Component.call(this)
}
AccountDropdownMini.prototype.getListItemIcon = function (currentAccount, selectedAccount) {
const listItemIcon = h(`i.fa.fa-check.fa-lg`, { style: { color: '#02c9b1' } })
return currentAccount.address === selectedAccount.address
? listItemIcon
: null
}
AccountDropdownMini.prototype.renderDropdown = function () {
const {
accounts,
selectedAccount,
closeDropdown,
onSelect,
} = this.props
return h('div', {}, [
h('div.account-dropdown-mini__close-area', {
onClick: closeDropdown,
}),
h('div.account-dropdown-mini__list', {}, [
...accounts.map(account => h(AccountListItem, {
account,
displayBalance: false,
2017-11-02 13:15:59 +01:00
displayAddress: false,
2017-10-25 18:01:58 +02:00
handleClick: () => {
onSelect(account)
closeDropdown()
2017-11-02 13:15:59 +01:00
},
2017-10-25 18:01:58 +02:00
icon: this.getListItemIcon(account, selectedAccount),
2017-11-02 13:15:59 +01:00
})),
2017-10-25 18:01:58 +02:00
]),
])
}
AccountDropdownMini.prototype.render = function () {
const {
selectedAccount,
openDropdown,
dropdownOpen,
} = this.props
return h('div.account-dropdown-mini', {}, [
h(AccountListItem, {
account: selectedAccount,
handleClick: openDropdown,
displayBalance: false,
displayAddress: false,
2017-11-02 13:15:59 +01:00
icon: h(`i.fa.fa-caret-down.fa-lg`, { style: { color: '#dedede' } }),
2017-10-25 18:01:58 +02:00
}),
dropdownOpen && this.renderDropdown(),
])
2017-11-02 13:15:59 +01:00
2017-10-25 18:01:58 +02:00
}