feat: updated restore account screen with new design
parent
57ed811d65
commit
ef0f3ba434
@ -1,55 +0,0 @@
|
||||
import { SpacerLG } from '../basic/Text';
|
||||
import { SessionInput } from '../inputs';
|
||||
|
||||
const RecoveryPhraseInput = (props: {
|
||||
recoveryPhrase: string;
|
||||
onSeedChanged: (val: string) => any;
|
||||
handlePressEnter: () => any;
|
||||
stealAutoFocus?: boolean;
|
||||
}) => {
|
||||
return (
|
||||
<SessionInput
|
||||
type="password"
|
||||
value={props.recoveryPhrase}
|
||||
autoFocus={props.stealAutoFocus || false}
|
||||
placeholder={window.i18n('enterRecoveryPhrase')}
|
||||
enableShowHide={true}
|
||||
onValueChanged={props.onSeedChanged}
|
||||
onEnterPressed={props.handlePressEnter}
|
||||
inputDataTestId="recovery-phrase-input"
|
||||
/>
|
||||
);
|
||||
};
|
||||
|
||||
export interface Props {
|
||||
showDisplayNameField: boolean;
|
||||
showSeedField: boolean;
|
||||
stealAutoFocus?: boolean;
|
||||
recoveryPhrase?: string;
|
||||
displayName: string;
|
||||
handlePressEnter: () => any;
|
||||
onSeedChanged?: (val: string) => any;
|
||||
onDisplayNameChanged: (val: string) => any;
|
||||
}
|
||||
|
||||
export const RegistrationUserDetails = (props: Props) => {
|
||||
if (props.showSeedField && (props.recoveryPhrase === undefined || !props.onSeedChanged)) {
|
||||
throw new Error('if show seed is true, we need callback + value');
|
||||
}
|
||||
|
||||
return (
|
||||
<div style={{ margin: 0 }}>
|
||||
{props.showSeedField && (
|
||||
<>
|
||||
<RecoveryPhraseInput
|
||||
recoveryPhrase={props.recoveryPhrase as string}
|
||||
handlePressEnter={props.handlePressEnter}
|
||||
onSeedChanged={props.onSeedChanged as any}
|
||||
stealAutoFocus={props.stealAutoFocus}
|
||||
/>
|
||||
<SpacerLG />
|
||||
</>
|
||||
)}
|
||||
</div>
|
||||
);
|
||||
};
|
@ -1,4 +1,21 @@
|
||||
import styled from 'styled-components';
|
||||
import { BackButton } from './BackButton';
|
||||
import { Hero } from './Hero';
|
||||
|
||||
export { BackButton, Hero };
|
||||
const OnboardContainer = styled.div`
|
||||
width: 100%;
|
||||
`;
|
||||
|
||||
const OnboardHeading = styled.h3`
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
font-size: var(--font-size-h2);
|
||||
`;
|
||||
|
||||
const OnboardDescription = styled.p`
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
letter-spacing: normal;
|
||||
`;
|
||||
|
||||
export { BackButton, Hero, OnboardContainer, OnboardDescription, OnboardHeading };
|
||||
|
Loading…
Reference in New Issue