mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 11:01:41 +01:00
86b165ea83
Maker has upgraded its Dai token to "Multi-Collateral Dai" (MCD) and requires all users interacting with Dai migrate their tokens to the new version. Dai now exclusively refers to Multi-Collateral Dai and what was previouly called Dai is now Sai (Single Collateral Dai). In this description, Sai refers to what was (prior to the 2019-11-18) known as Dai. Dai is the _new_ token. This changeset: 1. Only affects users who had non-zero Sai at the old contract address 2. Displays a persistent notification for users with Sai 3. Updates the token symbol for users already tracking the Sai token 4. Bumps our direct and indirect eth-contract-metadata dependencies The notification copy: > A message from Maker: The new Multi-Collateral Dai token has been released. Your old tokens are now called Sai. Please upgrade your Sai tokens to the new Dai. The copy is from the Maker team.
193 lines
6.2 KiB
JavaScript
193 lines
6.2 KiB
JavaScript
import React, { PureComponent } from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import Media from 'react-media'
|
|
import { Redirect } from 'react-router-dom'
|
|
import { formatDate } from '../../helpers/utils/util'
|
|
import HomeNotification from '../../components/app/home-notification'
|
|
import DaiMigrationNotification from '../../components/app/dai-migration-component'
|
|
import MultipleNotifications from '../../components/app/multiple-notifications'
|
|
import WalletView from '../../components/app/wallet-view'
|
|
import TransactionView from '../../components/app/transaction-view'
|
|
import ProviderApproval from '../provider-approval'
|
|
|
|
import {
|
|
RESTORE_VAULT_ROUTE,
|
|
CONFIRM_TRANSACTION_ROUTE,
|
|
CONFIRM_ADD_SUGGESTED_TOKEN_ROUTE,
|
|
INITIALIZE_BACKUP_SEED_PHRASE_ROUTE,
|
|
} from '../../helpers/constants/routes'
|
|
|
|
export default class Home extends PureComponent {
|
|
static contextTypes = {
|
|
t: PropTypes.func,
|
|
}
|
|
|
|
static defaultProps = {
|
|
unsetMigratedPrivacyMode: null,
|
|
hasDaiV1Token: false,
|
|
}
|
|
|
|
static propTypes = {
|
|
history: PropTypes.object,
|
|
forgottenPassword: PropTypes.bool,
|
|
suggestedTokens: PropTypes.object,
|
|
unconfirmedTransactionsCount: PropTypes.number,
|
|
providerRequests: PropTypes.array,
|
|
showPrivacyModeNotification: PropTypes.bool.isRequired,
|
|
unsetMigratedPrivacyMode: PropTypes.func,
|
|
shouldShowSeedPhraseReminder: PropTypes.bool,
|
|
isPopup: PropTypes.bool,
|
|
threeBoxSynced: PropTypes.bool,
|
|
setupThreeBox: PropTypes.func,
|
|
turnThreeBoxSyncingOn: PropTypes.func,
|
|
showRestorePrompt: PropTypes.bool,
|
|
selectedAddress: PropTypes.string,
|
|
restoreFromThreeBox: PropTypes.func,
|
|
setShowRestorePromptToFalse: PropTypes.func,
|
|
threeBoxLastUpdated: PropTypes.number,
|
|
hasDaiV1Token: PropTypes.bool,
|
|
}
|
|
|
|
componentWillMount () {
|
|
const {
|
|
history,
|
|
unconfirmedTransactionsCount = 0,
|
|
} = this.props
|
|
|
|
if (unconfirmedTransactionsCount > 0) {
|
|
history.push(CONFIRM_TRANSACTION_ROUTE)
|
|
}
|
|
}
|
|
|
|
componentDidMount () {
|
|
const {
|
|
history,
|
|
suggestedTokens = {},
|
|
} = this.props
|
|
|
|
// suggested new tokens
|
|
if (Object.keys(suggestedTokens).length > 0) {
|
|
history.push(CONFIRM_ADD_SUGGESTED_TOKEN_ROUTE)
|
|
}
|
|
}
|
|
|
|
componentDidUpdate () {
|
|
const {
|
|
threeBoxSynced,
|
|
setupThreeBox,
|
|
showRestorePrompt,
|
|
threeBoxLastUpdated,
|
|
} = this.props
|
|
if (threeBoxSynced && showRestorePrompt && threeBoxLastUpdated === null) {
|
|
setupThreeBox()
|
|
}
|
|
}
|
|
|
|
render () {
|
|
const { t } = this.context
|
|
const {
|
|
forgottenPassword,
|
|
providerRequests,
|
|
history,
|
|
hasDaiV1Token,
|
|
showPrivacyModeNotification,
|
|
unsetMigratedPrivacyMode,
|
|
shouldShowSeedPhraseReminder,
|
|
isPopup,
|
|
selectedAddress,
|
|
restoreFromThreeBox,
|
|
turnThreeBoxSyncingOn,
|
|
setShowRestorePromptToFalse,
|
|
showRestorePrompt,
|
|
threeBoxLastUpdated,
|
|
} = this.props
|
|
|
|
if (forgottenPassword) {
|
|
return <Redirect to={{ pathname: RESTORE_VAULT_ROUTE }} />
|
|
}
|
|
|
|
if (providerRequests && providerRequests.length > 0) {
|
|
return (
|
|
<ProviderApproval providerRequest={providerRequests[0]} />
|
|
)
|
|
}
|
|
return (
|
|
<div className="main-container">
|
|
<div className="account-and-transaction-details">
|
|
<Media
|
|
query="(min-width: 576px)"
|
|
render={() => <WalletView />}
|
|
/>
|
|
{ !history.location.pathname.match(/^\/confirm-transaction/)
|
|
? (
|
|
<TransactionView>
|
|
<MultipleNotifications>
|
|
{
|
|
showPrivacyModeNotification
|
|
? <HomeNotification
|
|
descriptionText={t('privacyModeDefault')}
|
|
acceptText={t('learnMore')}
|
|
onAccept={() => {
|
|
unsetMigratedPrivacyMode()
|
|
window.open('https://medium.com/metamask/42549d4870fa', '_blank', 'noopener')
|
|
}}
|
|
ignoreText={t('dismiss')}
|
|
onIgnore={() => {
|
|
unsetMigratedPrivacyMode()
|
|
}}
|
|
key="home-privacyModeDefault"
|
|
/>
|
|
: null
|
|
}
|
|
{
|
|
shouldShowSeedPhraseReminder
|
|
? <HomeNotification
|
|
descriptionText={t('backupApprovalNotice')}
|
|
acceptText={t('backupNow')}
|
|
onAccept={() => {
|
|
if (isPopup) {
|
|
global.platform.openExtensionInBrowser(INITIALIZE_BACKUP_SEED_PHRASE_ROUTE)
|
|
} else {
|
|
history.push(INITIALIZE_BACKUP_SEED_PHRASE_ROUTE)
|
|
}
|
|
}}
|
|
infoText={t('backupApprovalInfo')}
|
|
key="home-backupApprovalNotice"
|
|
/>
|
|
: null
|
|
}
|
|
{
|
|
threeBoxLastUpdated && showRestorePrompt
|
|
? <HomeNotification
|
|
descriptionText={t('restoreWalletPreferences', [ formatDate(threeBoxLastUpdated, 'M/d/y') ])}
|
|
acceptText={t('restore')}
|
|
ignoreText={t('noThanks')}
|
|
infoText={t('dataBackupFoundInfo')}
|
|
onAccept={() => {
|
|
restoreFromThreeBox(selectedAddress)
|
|
.then(() => {
|
|
turnThreeBoxSyncingOn()
|
|
})
|
|
}}
|
|
onIgnore={() => {
|
|
setShowRestorePromptToFalse()
|
|
}}
|
|
key="home-privacyModeDefault"
|
|
/>
|
|
: null
|
|
}
|
|
{
|
|
hasDaiV1Token
|
|
? <DaiMigrationNotification />
|
|
: null
|
|
}
|
|
</MultipleNotifications>
|
|
</TransactionView>
|
|
)
|
|
: null }
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
}
|