1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 11:46:13 +02:00
metamask-extension/ui/app/pages/send/send-footer/send-footer.component.js
Mark Stacey df85ab6e10
Implement asset page (#8696)
A new page has been created for viewing assets. This replaces the old
`selectedToken` state, which previously would augment the home page
to show token-specific information.

The new asset page shows the standard token overview as seen previously
on the home page, plus a history filtered to show just transactions
relevant to that token.

The actions that were available in the old token list menu have been
moved to a "Token Options" menu that mirrors the "Account Options"
menu.

The `selectedTokenAddress` state has been removed, as it is no longer
being used for anything.

`getMetaMetricState` has been renamed to `getBackgroundMetaMetricState`
because its sole purpose is extracting data from the background state
to send metrics from the background. It's not really a selector, but
it was convenient for it to use the same selectors the UI uses to
extract background data, so I left it there for now.

A new Redux store has been added to track state related to browser history.
The most recent "overview" page (i.e. the home page or the asset page) is
currently being tracked, so that actions taken from the asset page can return
the user back to the asset page when the action has finished.
2020-06-01 14:54:32 -03:00

145 lines
3.8 KiB
JavaScript

import React, { Component } from 'react'
import PropTypes from 'prop-types'
import PageContainerFooter from '../../../components/ui/page-container/page-container-footer'
import { CONFIRM_TRANSACTION_ROUTE } from '../../../helpers/constants/routes'
export default class SendFooter extends Component {
static propTypes = {
addToAddressBookIfNew: PropTypes.func,
amount: PropTypes.string,
data: PropTypes.string,
clearSend: PropTypes.func,
editingTransactionId: PropTypes.string,
from: PropTypes.object,
gasLimit: PropTypes.string,
gasPrice: PropTypes.string,
gasTotal: PropTypes.string,
history: PropTypes.object,
inError: PropTypes.bool,
sendToken: PropTypes.object,
sign: PropTypes.func,
to: PropTypes.string,
toAccounts: PropTypes.array,
tokenBalance: PropTypes.string,
unapprovedTxs: PropTypes.object,
update: PropTypes.func,
sendErrors: PropTypes.object,
gasEstimateType: PropTypes.string,
gasIsLoading: PropTypes.bool,
mostRecentOverviewPage: PropTypes.string.isRequired,
}
static contextTypes = {
t: PropTypes.func,
metricsEvent: PropTypes.func,
}
onCancel () {
const { clearSend, history, mostRecentOverviewPage } = this.props
clearSend()
history.push(mostRecentOverviewPage)
}
async onSubmit (event) {
event.preventDefault()
const {
addToAddressBookIfNew,
amount,
data,
editingTransactionId,
from: { address: from },
gasLimit: gas,
gasPrice,
sendToken,
sign,
to,
unapprovedTxs,
// updateTx,
update,
toAccounts,
history,
gasEstimateType,
} = this.props
const { metricsEvent } = this.context
// Should not be needed because submit should be disabled if there are errors.
// const noErrors = !amountError && toError === null
// if (!noErrors) {
// return
// }
// TODO: add nickname functionality
await addToAddressBookIfNew(to, toAccounts)
const promise = editingTransactionId
? update({
amount,
data,
editingTransactionId,
from,
gas,
gasPrice,
sendToken,
to,
unapprovedTxs,
})
: sign({ data, sendToken, to, amount, from, gas, gasPrice })
Promise.resolve(promise)
.then(() => {
metricsEvent({
eventOpts: {
category: 'Transactions',
action: 'Edit Screen',
name: 'Complete',
},
customVariables: {
gasChanged: gasEstimateType,
},
})
history.push(CONFIRM_TRANSACTION_ROUTE)
})
}
formShouldBeDisabled () {
const { data, inError, sendToken, tokenBalance, gasTotal, to, gasLimit, gasIsLoading } = this.props
const missingTokenBalance = sendToken && !tokenBalance
const gasLimitTooLow = gasLimit < 5208 // 5208 is hex value of 21000, minimum gas limit
const shouldBeDisabled = inError || !gasTotal || missingTokenBalance || !(data || to) || gasLimitTooLow || gasIsLoading
return shouldBeDisabled
}
componentDidUpdate (prevProps) {
const { inError, sendErrors } = this.props
const { metricsEvent } = this.context
if (!prevProps.inError && inError) {
const errorField = Object.keys(sendErrors).find((key) => sendErrors[key])
const errorMessage = sendErrors[errorField]
metricsEvent({
eventOpts: {
category: 'Transactions',
action: 'Edit Screen',
name: 'Error',
},
customVariables: {
errorField,
errorMessage,
},
})
}
}
render () {
return (
<PageContainerFooter
onCancel={() => this.onCancel()}
onSubmit={(e) => this.onSubmit(e)}
disabled={this.formShouldBeDisabled()}
/>
)
}
}