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/transaction-status/transaction-status.component.js
Whymarrh Whitby 9662f9b8b5 Show failed tx RPC error messages in tooltips
This changeset displays the error messages attached to txMeta for a failed tx
in a tooltip on hover in the tx list view. This will only display for txs with
the `txMeta.err.rpc.value` property, not all failed txs.
2018-09-08 20:50:31 -02:30

60 lines
1.5 KiB
JavaScript

import React, { PureComponent } from 'react'
import PropTypes from 'prop-types'
import classnames from 'classnames'
import Tooltip from '../tooltip-v2'
import {
UNAPPROVED_STATUS,
REJECTED_STATUS,
APPROVED_STATUS,
SIGNED_STATUS,
SUBMITTED_STATUS,
CONFIRMED_STATUS,
FAILED_STATUS,
DROPPED_STATUS,
} from '../../constants/transactions'
const statusToClassNameHash = {
[UNAPPROVED_STATUS]: 'transaction-status--unapproved',
[REJECTED_STATUS]: 'transaction-status--rejected',
[APPROVED_STATUS]: 'transaction-status--approved',
[SIGNED_STATUS]: 'transaction-status--signed',
[SUBMITTED_STATUS]: 'transaction-status--submitted',
[CONFIRMED_STATUS]: 'transaction-status--confirmed',
[FAILED_STATUS]: 'transaction-status--failed',
[DROPPED_STATUS]: 'transaction-status--dropped',
}
const statusToTextHash = {
[APPROVED_STATUS]: 'pending',
[SUBMITTED_STATUS]: 'pending',
}
export default class TransactionStatus extends PureComponent {
static defaultProps = {
title: null,
}
static contextTypes = {
t: PropTypes.func,
}
static propTypes = {
statusKey: PropTypes.string,
className: PropTypes.string,
title: PropTypes.string,
}
render () {
const { className, statusKey, title } = this.props
const statusText = this.context.t(statusToTextHash[statusKey] || statusKey)
return (
<div className={classnames('transaction-status', className, statusToClassNameHash[statusKey])}>
<Tooltip position="top" title={title}>
{ statusText }
</Tooltip>
</div>
)
}
}