mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
See [`prefer-destructuring`](https://eslint.org/docs/rules/prefer-destructuring) for more information. This change enables `prefer-destructuring` and fixes the issues raised by the rule.
152 lines
4.4 KiB
JavaScript
152 lines
4.4 KiB
JavaScript
import React from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import { useHistory } from 'react-router-dom'
|
|
import { useDispatch, useSelector } from 'react-redux'
|
|
|
|
import { showModal } from '../../../store/actions'
|
|
import { CONNECTED_ROUTE } from '../../../helpers/constants/routes'
|
|
import { Menu, MenuItem } from '../../ui/menu'
|
|
import getAccountLink from '../../../../lib/account-link'
|
|
import { getCurrentKeyring, getCurrentNetwork, getRpcPrefsForCurrentProvider, getSelectedIdentity } from '../../../selectors'
|
|
import { useI18nContext } from '../../../hooks/useI18nContext'
|
|
import { useMetricEvent } from '../../../hooks/useMetricEvent'
|
|
import { getEnvironmentType } from '../../../../../app/scripts/lib/util'
|
|
import { ENVIRONMENT_TYPE_FULLSCREEN } from '../../../../../app/scripts/lib/enums'
|
|
|
|
export default function AccountOptionsMenu ({ anchorElement, onClose }) {
|
|
const t = useI18nContext()
|
|
const dispatch = useDispatch()
|
|
const history = useHistory()
|
|
const openFullscreenEvent = useMetricEvent({
|
|
eventOpts: {
|
|
category: 'Navigation',
|
|
action: 'Account Options',
|
|
name: 'Clicked Expand View',
|
|
},
|
|
})
|
|
const viewAccountDetailsEvent = useMetricEvent({
|
|
eventOpts: {
|
|
category: 'Navigation',
|
|
action: 'Account Options',
|
|
name: 'Viewed Account Details',
|
|
},
|
|
})
|
|
const viewOnEtherscanEvent = useMetricEvent({
|
|
eventOpts: {
|
|
category: 'Navigation',
|
|
action: 'Account Options',
|
|
name: 'Clicked View on Etherscan',
|
|
},
|
|
})
|
|
const openConnectedSitesEvent = useMetricEvent({
|
|
eventOpts: {
|
|
category: 'Navigation',
|
|
action: 'Account Options',
|
|
name: 'Opened Connected Sites',
|
|
},
|
|
})
|
|
|
|
const keyring = useSelector(getCurrentKeyring)
|
|
const network = useSelector(getCurrentNetwork)
|
|
const rpcPrefs = useSelector(getRpcPrefsForCurrentProvider)
|
|
const selectedIdentity = useSelector(getSelectedIdentity)
|
|
|
|
const { address } = selectedIdentity
|
|
const isRemovable = keyring.type !== 'HD Key Tree'
|
|
|
|
return (
|
|
<Menu
|
|
anchorElement={anchorElement}
|
|
className="account-options-menu"
|
|
onHide={onClose}
|
|
>
|
|
{
|
|
getEnvironmentType() === ENVIRONMENT_TYPE_FULLSCREEN
|
|
? null
|
|
: (
|
|
<MenuItem
|
|
onClick={() => {
|
|
openFullscreenEvent()
|
|
global.platform.openExtensionInBrowser()
|
|
onClose()
|
|
}}
|
|
iconClassName="fas fa-expand-alt"
|
|
>
|
|
{ t('expandView') }
|
|
</MenuItem>
|
|
)
|
|
}
|
|
<MenuItem
|
|
data-testid="account-options-menu__account-details"
|
|
onClick={() => {
|
|
dispatch(showModal({ name: 'ACCOUNT_DETAILS' }))
|
|
viewAccountDetailsEvent()
|
|
onClose()
|
|
}}
|
|
iconClassName="fas fa-qrcode"
|
|
>
|
|
{ t('accountDetails') }
|
|
</MenuItem>
|
|
<MenuItem
|
|
onClick={() => {
|
|
viewOnEtherscanEvent()
|
|
global.platform.openTab({ url: getAccountLink(address, network, rpcPrefs) })
|
|
onClose()
|
|
}}
|
|
subtitle={
|
|
rpcPrefs.blockExplorerUrl
|
|
? (
|
|
<span className="account-options-menu__explorer-origin">
|
|
{ rpcPrefs.blockExplorerUrl.match(/^https?:\/\/(.+)/u)[1] }
|
|
</span>
|
|
)
|
|
: null
|
|
}
|
|
iconClassName="fas fa-external-link-alt"
|
|
>
|
|
{
|
|
rpcPrefs.blockExplorerUrl
|
|
? t('viewinExplorer')
|
|
: t('viewOnEtherscan')
|
|
}
|
|
</MenuItem>
|
|
<MenuItem
|
|
data-testid="account-options-menu__connected-sites"
|
|
onClick={() => {
|
|
openConnectedSitesEvent()
|
|
history.push(CONNECTED_ROUTE)
|
|
onClose()
|
|
}}
|
|
iconClassName="account-options-menu__connected-sites"
|
|
>
|
|
{ t('connectedSites') }
|
|
</MenuItem>
|
|
{
|
|
isRemovable
|
|
? (
|
|
<MenuItem
|
|
data-testid="account-options-menu__remove-account"
|
|
onClick={() => {
|
|
dispatch(showModal({ name: 'CONFIRM_REMOVE_ACCOUNT', identity: selectedIdentity }))
|
|
onClose()
|
|
}}
|
|
iconClassName="fas fa-trash-alt"
|
|
>
|
|
{ t('removeAccount') }
|
|
</MenuItem>
|
|
)
|
|
: null
|
|
}
|
|
</Menu>
|
|
)
|
|
}
|
|
|
|
AccountOptionsMenu.propTypes = {
|
|
anchorElement: PropTypes.instanceOf(window.Element),
|
|
onClose: PropTypes.func.isRequired,
|
|
}
|
|
|
|
AccountOptionsMenu.defaultProps = {
|
|
anchorElement: undefined,
|
|
}
|