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'; 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 accountNameExists = (allAccounts, accountName) => { return Boolean(allAccounts.find((item) => item.name === accountName)); }; const existingAccountName = accountNameExists(accounts, newAccountName); return (
{this.context.t('accountName')}
this.setState({ newAccountName: event.target.value }) } autoFocus /> {existingAccountName ? (
{this.context.t('accountNameDuplicate')}
) : null}
); } } NewAccountCreateForm.propTypes = { createAccount: PropTypes.func, newAccountNumber: PropTypes.number, history: PropTypes.object, mostRecentOverviewPage: PropTypes.string.isRequired, accounts: PropTypes.array, }; NewAccountCreateForm.contextTypes = { t: PropTypes.func, trackEvent: PropTypes.func, };