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.
trezor-wallet/src/views/Wallet/views/Initialize/index.js

57 lines
1.4 KiB

/* @flow */
import styled from 'styled-components';
import { H4, Button, P } from 'trezor-ui-components';
import { getOldWalletUrl } from 'utils/url';
import React from 'react';
import { FormattedMessage } from 'react-intl';
import l10nCommonMessages from 'views/common.messages';
import type { TrezorDevice } from 'flowtype';
import l10nMessages from './index.messages';
type Props = {
device: ?TrezorDevice,
};
const Wrapper = styled.div`
display: flex;
flex-direction: column;
padding: 40px 35px 40px 35px;
`;
const Row = styled.div`
display: flex;
flex-direction: column;
align-items: center;
padding: 50px 0;
`;
const A = styled.a``;
const StyledParagraph = styled(P)`
&& {
padding: 0 0 15px 0;
text-align: center;
}
`;
const Initialize = (props: Props) => (
<Wrapper data-test="Page__device__not__initialized">
<Row>
<H4>
<FormattedMessage {...l10nMessages.TR_YOUR_DEVICE_IS_NOT_INITIALIZED} />
</H4>
<StyledParagraph>
<FormattedMessage {...l10nMessages.TR_PLEASE_USE_TO_START_INITIALIZATION} />
</StyledParagraph>
<A href={getOldWalletUrl(props.device)} target="_self">
<Button>
<FormattedMessage {...l10nCommonMessages.TR_TAKE_ME_TO_BITCOIN_WALLET} />
</Button>
</A>
</Row>
</Wrapper>
);
export default Initialize;