mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
3aa5b7d362
* refactor: use new importaccount from keyring controller * Update LavaMoat policies * Update LavaMoat policies * Update LavaMoat policies --------- Co-authored-by: MetaMask Bot <metamaskbot@users.noreply.github.com>
107 lines
2.7 KiB
JavaScript
107 lines
2.7 KiB
JavaScript
import PropTypes from 'prop-types';
|
|
import React, { useState } from 'react';
|
|
import { useSelector } from 'react-redux';
|
|
import FileInput from 'react-simple-file-input';
|
|
import {
|
|
ButtonLink,
|
|
FormTextField,
|
|
TEXT_FIELD_SIZES,
|
|
TEXT_FIELD_TYPES,
|
|
Text,
|
|
} from '../../component-library';
|
|
import {
|
|
Size,
|
|
TextVariant,
|
|
TextAlign,
|
|
} from '../../../helpers/constants/design-system';
|
|
import ZENDESK_URLS from '../../../helpers/constants/zendesk-url';
|
|
import { useI18nContext } from '../../../hooks/useI18nContext';
|
|
import { displayWarning } from '../../../store/actions';
|
|
import BottomButtons from './bottom-buttons';
|
|
|
|
JsonImportSubview.propTypes = {
|
|
importAccountFunc: PropTypes.func.isRequired,
|
|
onActionComplete: PropTypes.func.isRequired,
|
|
};
|
|
|
|
export default function JsonImportSubview({
|
|
importAccountFunc,
|
|
onActionComplete,
|
|
}) {
|
|
const t = useI18nContext();
|
|
const warning = useSelector((state) => state.appState.warning);
|
|
const [password, setPassword] = useState('');
|
|
const [fileContents, setFileContents] = useState('');
|
|
|
|
const isPrimaryDisabled = fileContents === '';
|
|
|
|
function handleKeyPress(event) {
|
|
if (!isPrimaryDisabled && event.key === 'Enter') {
|
|
event.preventDefault();
|
|
_importAccountFunc();
|
|
}
|
|
}
|
|
|
|
function _importAccountFunc() {
|
|
if (isPrimaryDisabled) {
|
|
displayWarning(t('needImportFile'));
|
|
} else {
|
|
importAccountFunc('json', [fileContents, password]);
|
|
}
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<Text variant={TextVariant.bodyMd} textAlign={TextAlign.Center}>
|
|
{t('usedByClients')}
|
|
<ButtonLink
|
|
size={Size.inherit}
|
|
href={ZENDESK_URLS.IMPORTED_ACCOUNTS}
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>
|
|
{t('fileImportFail')}
|
|
</ButtonLink>
|
|
</Text>
|
|
|
|
<FileInput
|
|
id="file-input"
|
|
data-testid="file-input"
|
|
readAs="text"
|
|
onLoad={(event) => setFileContents(event.target.result)}
|
|
style={{
|
|
padding: '20px 0px 12px 15%',
|
|
fontSize: '16px',
|
|
display: 'flex',
|
|
justifyContent: 'center',
|
|
width: '100%',
|
|
}}
|
|
/>
|
|
|
|
<FormTextField
|
|
id="json-password-box"
|
|
size={TEXT_FIELD_SIZES.LARGE}
|
|
autoFocus
|
|
type={TEXT_FIELD_TYPES.PASSWORD}
|
|
helpText={warning}
|
|
error
|
|
placeholder={t('enterOptionalPassword')}
|
|
value={password}
|
|
onChange={(event) => {
|
|
setPassword(event.target.value);
|
|
}}
|
|
inputProps={{
|
|
onKeyPress: handleKeyPress,
|
|
}}
|
|
marginBottom={4}
|
|
/>
|
|
|
|
<BottomButtons
|
|
importAccountFunc={_importAccountFunc}
|
|
isPrimaryDisabled={isPrimaryDisabled}
|
|
onActionComplete={onActionComplete}
|
|
/>
|
|
</>
|
|
);
|
|
}
|