A Metamask fork with Infura removed and default networks editable
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ciphermask/ui/pages/onboarding-flow/recovery-phrase/recovery-phrase-chips.js

108 lines
3.2 KiB

import React from 'react';
import classnames from 'classnames';
import PropTypes from 'prop-types';
import Chip from '../../../components/ui/chip';
import Box from '../../../components/ui/box';
import Typography from '../../../components/ui/typography';
import { ChipWithInput } from '../../../components/ui/chip/chip-with-input';
import { useI18nContext } from '../../../hooks/useI18nContext';
import {
TYPOGRAPHY,
COLORS,
BORDER_STYLE,
SIZES,
DISPLAY,
} from '../../../helpers/constants/design-system';
export default function RecoveryPhraseChips({
secretRecoveryPhrase,
phraseRevealed,
confirmPhase,
setInputValue,
inputValue,
indicesToCheck,
}) {
const t = useI18nContext();
const hideSeedPhrase = phraseRevealed === false;
return (
<Box
borderColor={COLORS.UI2}
borderStyle={BORDER_STYLE.SOLID}
padding={4}
borderWidth={1}
borderRadius={SIZES.MD}
display={DISPLAY.GRID}
marginBottom={4}
className="recovery-phrase__secret"
>
<div
data-testid="recovery-phrase-chips"
className={classnames('recovery-phrase__chips', {
'recovery-phrase__chips--hidden': hideSeedPhrase,
})}
>
{secretRecoveryPhrase.map((word, index) => {
if (
confirmPhase &&
indicesToCheck &&
indicesToCheck.includes(index)
) {
return (
<div className="recovery-phrase__chip-item" key={index}>
<div className="recovery-phrase__chip-item__number">
{`${index + 1}.`}
</div>
<ChipWithInput
dataTestId={`recovery-phrase-input-${index}`}
borderColor={COLORS.PRIMARY1}
className="recovery-phrase__chip--with-input"
inputValue={inputValue[index]}
setInputValue={(value) => {
setInputValue({ ...inputValue, [index]: value });
}}
/>
</div>
);
}
return (
<div className="recovery-phrase__chip-item" key={index}>
<div className="recovery-phrase__chip-item__number">
{`${index + 1}.`}
</div>
<Chip
dataTestId={`recovery-phrase-chip-${index}`}
className="recovery-phrase__chip"
borderColor={COLORS.UI3}
>
{word}
</Chip>
</div>
);
})}
</div>
{hideSeedPhrase && (
<div className="recovery-phrase__secret-blocker">
<i className="far fa-eye-slash" color="white" />
<Typography
variant={TYPOGRAPHY.H6}
color={COLORS.WHITE}
className="recovery-phrase__secret-blocker--text"
>
{t('makeSureNoOneWatching')}
</Typography>
</div>
)}
</Box>
);
}
RecoveryPhraseChips.propTypes = {
secretRecoveryPhrase: PropTypes.array,
phraseRevealed: PropTypes.bool,
confirmPhase: PropTypes.bool,
setInputValue: PropTypes.func,
inputValue: PropTypes.string,
indicesToCheck: PropTypes.array,
};