1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-23 10:30:04 +01:00
metamask-extension/ui/pages/create-account/new-account.component.js
Ariella Vu 78f4684b2a
MetaMetrics: Add EVENT.CATEGORIES const (#14474)
* MetaMetrics: add EVENT.CATEGORIES const

* MetaMetrics: add EVENT.CATEGORIES.INPAGE_PROVIDER

* MetaMetrics: add EVENT.CATEGORIES.AUTH

* MetaMetrics: add EVENT.CATEGORIES.ACCOUNTS pt. 1

* MetaMetrics: add EVENT.CATEGORIES.ACCOUNTS pt. 2
confirm we want to use 'Accounts' instead of 'Account'

* MetaMetrics: add EVENT.CATEGORIES.MESSAGES

* MetaMetrics: add EVENT.CATEGORIES.RETENTION const

* MetaMetrics: add EVENT.CATEGORIES.SETTINGS

* MetaMask: add missing EVENT.CATEGORIES.SNAPS

* MetaMetrics: add EVENT.CATEGORIES.WALLET const

* MetaMetrics: add EVENT.CATEGORIES.ONBOARDING const

* MetaMetrics: add EVENT.CATEGORIES.ONBOARDING
& EVENT.CATEGORIES.TRANSACTIONS consts

* MetaMetrics: use EVENT.CATEGORIES

* ducks/swaps: revert slice name

* MetaMetrics: add missing EVENT.CATEGORIES.NETWORK
2022-04-22 13:09:10 -03:00

126 lines
3.5 KiB
JavaScript

import React, { Component } from 'react';
import PropTypes from 'prop-types';
import classnames from 'classnames';
import Button from '../../components/ui/button';
import { EVENT } 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 = (_) => {
createAccount(newAccountName || defaultAccountName)
.then(() => {
this.context.trackEvent({
category: EVENT.CATEGORIES.ACCOUNTS,
event: 'Added New Account',
properties: {
action: 'Add New Account',
legacy_event: true,
},
});
history.push(mostRecentOverviewPage);
})
.catch((e) => {
this.context.trackEvent({
category: EVENT.CATEGORIES.ACCOUNTS,
event: 'Error',
properties: {
action: 'Add New Account',
legacy_event: true,
errorMessage: e.message,
},
});
});
};
const accountNameExists = (allAccounts, accountName) => {
const accountsNames = allAccounts.map((item) => item.name);
return accountsNames.includes(accountName);
};
const existingAccountName = accountNameExists(accounts, newAccountName);
return (
<div className="new-account-create-form">
<div className="new-account-create-form__input-label">
{this.context.t('accountName')}
</div>
<div>
<input
className={classnames('new-account-create-form__input', {
'new-account-create-form__input__error': existingAccountName,
})}
value={newAccountName}
placeholder={defaultAccountName}
onChange={(event) =>
this.setState({ newAccountName: event.target.value })
}
autoFocus
/>
{existingAccountName ? (
<div
className={classnames(
' new-account-create-form__error',
' new-account-create-form__error-amount',
)}
>
{this.context.t('accountNameDuplicate')}
</div>
) : null}
<div className="new-account-create-form__buttons">
<Button
type="secondary"
large
className="new-account-create-form__button"
onClick={() => history.push(mostRecentOverviewPage)}
>
{this.context.t('cancel')}
</Button>
<Button
type="primary"
large
className="new-account-create-form__button"
onClick={createClick}
disabled={existingAccountName}
>
{this.context.t('create')}
</Button>
</div>
</div>
</div>
);
}
}
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,
};