mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
df85ab6e10
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.
181 lines
5.0 KiB
JavaScript
181 lines
5.0 KiB
JavaScript
import React, { Component } from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import { withRouter } from 'react-router-dom'
|
|
import { compose } from 'redux'
|
|
import { connect } from 'react-redux'
|
|
import * as actions from '../../../store/actions'
|
|
import FileInput from 'react-simple-file-input'
|
|
import { getMetaMaskAccounts } from '../../../selectors'
|
|
import Button from '../../../components/ui/button'
|
|
import { getMostRecentOverviewPage } from '../../../ducks/history/history'
|
|
|
|
const HELP_LINK = 'https://metamask.zendesk.com/hc/en-us/articles/360015489331-Importing-an-Account'
|
|
|
|
class JsonImportSubview extends Component {
|
|
state = {
|
|
fileContents: '',
|
|
isEmpty: true,
|
|
}
|
|
|
|
inputRef = React.createRef()
|
|
|
|
render () {
|
|
const { error, history, mostRecentOverviewPage } = this.props
|
|
const enabled = !this.state.isEmpty && this.state.fileContents !== ''
|
|
|
|
return (
|
|
<div className="new-account-import-form__json">
|
|
<p>{this.context.t('usedByClients')}</p>
|
|
<a className="warning" href={HELP_LINK} target="_blank" rel="noopener noreferrer">{this.context.t('fileImportFail')}</a>
|
|
<FileInput
|
|
readAs="text"
|
|
onLoad={this.onLoad.bind(this)}
|
|
style={{
|
|
padding: '20px 0px 12px 15%',
|
|
fontSize: '15px',
|
|
display: 'flex',
|
|
justifyContent: 'center',
|
|
width: '100%',
|
|
}}
|
|
/>
|
|
<input
|
|
className="new-account-import-form__input-password"
|
|
type="password"
|
|
placeholder={this.context.t('enterPassword')}
|
|
id="json-password-box"
|
|
onKeyPress={this.createKeyringOnEnter.bind(this)}
|
|
onChange={() => this.checkInputEmpty()}
|
|
ref={this.inputRef}
|
|
/>
|
|
<div className="new-account-create-form__buttons">
|
|
<Button
|
|
type="default"
|
|
large
|
|
className="new-account-create-form__button"
|
|
onClick={() => history.push(mostRecentOverviewPage)}
|
|
>
|
|
{this.context.t('cancel')}
|
|
</Button>
|
|
<Button
|
|
type="secondary"
|
|
large
|
|
className="new-account-create-form__button"
|
|
onClick={() => this.createNewKeychain()}
|
|
disabled={!enabled}
|
|
>
|
|
{this.context.t('import')}
|
|
</Button>
|
|
</div>
|
|
{
|
|
error
|
|
? <span className="error">{error}</span>
|
|
: null
|
|
}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
onLoad (event) {
|
|
this.setState({
|
|
fileContents: event.target.result,
|
|
})
|
|
}
|
|
|
|
createKeyringOnEnter (event) {
|
|
if (event.key === 'Enter') {
|
|
event.preventDefault()
|
|
this.createNewKeychain()
|
|
}
|
|
}
|
|
|
|
createNewKeychain () {
|
|
const {
|
|
firstAddress,
|
|
displayWarning,
|
|
history,
|
|
importNewJsonAccount,
|
|
mostRecentOverviewPage,
|
|
setSelectedAddress,
|
|
} = this.props
|
|
const { fileContents } = this.state
|
|
|
|
if (!fileContents) {
|
|
const message = this.context.t('needImportFile')
|
|
return displayWarning(message)
|
|
}
|
|
|
|
const password = this.inputRef.current.value
|
|
|
|
importNewJsonAccount([ fileContents, password ])
|
|
.then(({ selectedAddress }) => {
|
|
if (selectedAddress) {
|
|
history.push(mostRecentOverviewPage)
|
|
this.context.metricsEvent({
|
|
eventOpts: {
|
|
category: 'Accounts',
|
|
action: 'Import Account',
|
|
name: 'Imported Account with JSON',
|
|
},
|
|
})
|
|
displayWarning(null)
|
|
} else {
|
|
displayWarning('Error importing account.')
|
|
this.context.metricsEvent({
|
|
eventOpts: {
|
|
category: 'Accounts',
|
|
action: 'Import Account',
|
|
name: 'Error importing JSON',
|
|
},
|
|
})
|
|
setSelectedAddress(firstAddress)
|
|
}
|
|
})
|
|
.catch((err) => err && displayWarning(err.message || err))
|
|
}
|
|
|
|
checkInputEmpty () {
|
|
const password = this.inputRef.current.value
|
|
let isEmpty = true
|
|
if (password !== '') {
|
|
isEmpty = false
|
|
}
|
|
this.setState({ isEmpty })
|
|
}
|
|
}
|
|
|
|
JsonImportSubview.propTypes = {
|
|
error: PropTypes.string,
|
|
displayWarning: PropTypes.func,
|
|
firstAddress: PropTypes.string,
|
|
importNewJsonAccount: PropTypes.func,
|
|
history: PropTypes.object,
|
|
setSelectedAddress: PropTypes.func,
|
|
mostRecentOverviewPage: PropTypes.string.isRequired,
|
|
}
|
|
|
|
const mapStateToProps = (state) => {
|
|
return {
|
|
error: state.appState.warning,
|
|
firstAddress: Object.keys(getMetaMaskAccounts(state))[0],
|
|
mostRecentOverviewPage: getMostRecentOverviewPage(state),
|
|
}
|
|
}
|
|
|
|
const mapDispatchToProps = (dispatch) => {
|
|
return {
|
|
displayWarning: (warning) => dispatch(actions.displayWarning(warning)),
|
|
importNewJsonAccount: (options) => dispatch(actions.importNewAccount('JSON File', options)),
|
|
setSelectedAddress: (address) => dispatch(actions.setSelectedAddress(address)),
|
|
}
|
|
}
|
|
|
|
JsonImportSubview.contextTypes = {
|
|
t: PropTypes.func,
|
|
metricsEvent: PropTypes.func,
|
|
}
|
|
|
|
export default compose(
|
|
withRouter,
|
|
connect(mapStateToProps, mapDispatchToProps)
|
|
)(JsonImportSubview)
|