import React, { Component } from 'react'; import PropTypes from 'prop-types'; import classnames from 'classnames'; import Button from '../../components/ui/button'; import { EVENT, EVENT_NAMES } from '../../../shared/constants/metametrics'; import { getAccountNameErrorMessage } from '../../helpers/utils/accounts'; export default class NewAccountCreateForm extends Component { static defaultProps = { newAccountNumber: 0, }; state = { newAccountName: '', defaultAccountName: this.context.t('newAccountNumberName', [ this.props.newAccountNumber, ]), }; render() { const { newAccountName, defaultAccountName } = this.state; const { history, createAccount, mostRecentOverviewPage, accounts } = this.props; const createClick = (event) => { event.preventDefault(); createAccount(newAccountName || defaultAccountName) .then(() => { this.context.trackEvent({ category: EVENT.CATEGORIES.ACCOUNTS, event: EVENT_NAMES.ACCOUNT_ADDED, properties: { account_type: EVENT.ACCOUNT_TYPES.DEFAULT, }, }); history.push(mostRecentOverviewPage); }) .catch((e) => { this.context.trackEvent({ category: EVENT.CATEGORIES.ACCOUNTS, event: EVENT_NAMES.ACCOUNT_ADD_FAILED, properties: { account_type: EVENT.ACCOUNT_TYPES.DEFAULT, error: e.message, }, }); }); }; const { isValidAccountName, errorMessage } = getAccountNameErrorMessage( accounts, this.context, newAccountName, defaultAccountName, ); return (