mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 01:47:00 +01:00
00d155ce2f
* feat(878): implement new incoming transaction toggle networks for setting and onboarding * Update state snapshots * feat(878): change gaps, migration types based on comment --------- Co-authored-by: Mark Stacey <markjstacey@gmail.com>
63 lines
1.9 KiB
JavaScript
63 lines
1.9 KiB
JavaScript
import { InvisibleCharacter } from '../../components/component-library';
|
|
import {
|
|
GOERLI_DISPLAY_NAME,
|
|
LINEA_GOERLI_DISPLAY_NAME,
|
|
SEPOLIA_DISPLAY_NAME,
|
|
} from '../../../shared/constants/network';
|
|
import { BackgroundColor } from '../constants/design-system';
|
|
|
|
export function getAccountNameErrorMessage(
|
|
accounts,
|
|
context,
|
|
newAccountName,
|
|
defaultAccountName,
|
|
) {
|
|
const isDuplicateAccountName = accounts.some(
|
|
(item) => item.name.toLowerCase() === newAccountName.toLowerCase(),
|
|
);
|
|
|
|
const isEmptyAccountName = newAccountName === '';
|
|
|
|
const localizedWordForAccount = context
|
|
.t('newAccountNumberName')
|
|
.replace(' $1', '');
|
|
|
|
// Match strings starting with ${localizedWordForAccount} and then any numeral, case insensitive
|
|
// Trim spaces before and after
|
|
const reservedRegEx = new RegExp(
|
|
`^\\s*${localizedWordForAccount} \\d+\\s*$`,
|
|
'iu',
|
|
);
|
|
const isReservedAccountName = reservedRegEx.test(newAccountName);
|
|
|
|
const isValidAccountName =
|
|
newAccountName.toLowerCase() === defaultAccountName.toLowerCase() || // What is written in the text field is the same as the placeholder
|
|
(!isDuplicateAccountName && !isReservedAccountName && !isEmptyAccountName);
|
|
|
|
let errorMessage;
|
|
if (isValidAccountName) {
|
|
errorMessage = InvisibleCharacter; // Using an invisible character, so the spacing stays constant
|
|
} else if (isDuplicateAccountName) {
|
|
errorMessage = context.t('accountNameDuplicate');
|
|
} else if (isReservedAccountName) {
|
|
errorMessage = context.t('accountNameReserved');
|
|
} else if (isEmptyAccountName) {
|
|
errorMessage = context.t('required');
|
|
}
|
|
|
|
return { isValidAccountName, errorMessage };
|
|
}
|
|
|
|
export function getAvatarNetworkColor(name) {
|
|
switch (name) {
|
|
case GOERLI_DISPLAY_NAME:
|
|
return BackgroundColor.goerli;
|
|
case LINEA_GOERLI_DISPLAY_NAME:
|
|
return BackgroundColor.lineaGoerli;
|
|
case SEPOLIA_DISPLAY_NAME:
|
|
return BackgroundColor.sepolia;
|
|
default:
|
|
return undefined;
|
|
}
|
|
}
|