mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 11:01:41 +01:00
64 lines
1.6 KiB
JavaScript
64 lines
1.6 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,
|
|
CANCELLED_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',
|
|
[CANCELLED_STATUS]: 'transaction-status--failed',
|
|
}
|
|
|
|
const statusToTextHash = {
|
|
[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>
|
|
)
|
|
}
|
|
}
|