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/components/modals/device/WalletType/index.js

186 lines
5.8 KiB

/* @flow */
import React, { PureComponent } from 'react';
import PropTypes from 'prop-types';
import styled, { css } from 'styled-components';
import type { IntlShape } from 'react-intl';
import { H5, P, Button, Tooltip, Link, Icon, icons, colors } from 'trezor-ui-components';
import WalletTypeIcon from 'components/images/WalletType';
import { FormattedMessage, injectIntl } from 'react-intl';
import type { TrezorDevice } from 'flowtype';
import l10nCommonMessages from 'views/common.messages';
import l10nMessages from './index.messages';
import type { Props as BaseProps } from '../../Container';
type Props = {
intl: IntlShape,
device: TrezorDevice,
onWalletTypeRequest: $ElementType<
$ElementType<BaseProps, 'modalActions'>,
'onWalletTypeRequest'
>,
onCancel: $ElementType<$ElementType<BaseProps, 'modalActions'>, 'onCancel'>,
};
const Wrapper = styled.div``;
const Header = styled.div`
display: flex;
justify-content: center;
align-items: center;
padding-bottom: 5px;
color: ${colors.TEXT_PRIMARY};
`;
const StyledHeading = styled(H5)`
padding: 30px 48px 10px 48px;
`;
const StyledLink = styled(Link)`
position: absolute;
right: 15px;
top: 10px;
`;
const StyledButton = styled(Button)`
margin: 10px 0 10px 0;
`;
const StyledIcon = styled(Icon)`
&:hover {
cursor: pointer;
}
`;
const TooltipContainer = styled.div`
position: absolute;
top: 10px;
right: 15px;
`;
const Content = styled.div`
padding: 55px 48px 40px 48px;
position: relative;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
${props =>
props.isTop &&
css`
padding-top: 40px;
border-bottom: 1px solid ${colors.DIVIDER};
`}
`;
const StyledWalletTypeIcon = styled(WalletTypeIcon)`
margin-right: 6px;
`;
class WalletType extends PureComponent<Props> {
constructor(props: Props) {
super(props);
this.keyboardHandler = this.keyboardHandler.bind(this);
}
componentDidMount() {
window.addEventListener('keydown', this.keyboardHandler, false);
}
componentWillUnmount() {
window.removeEventListener('keydown', this.keyboardHandler, false);
}
keyboardHandler(event: KeyboardEvent): void {
if (event.keyCode === 13) {
event.preventDefault();
this.props.onWalletTypeRequest(false);
}
}
keyboardHandler: (event: KeyboardEvent) => void;
render() {
const { device, onCancel, onWalletTypeRequest } = this.props;
return (
<Wrapper>
{device.state && (
<StyledLink onClick={onCancel}>
<Icon size={12} color={colors.TEXT_SECONDARY} icon={icons.CLOSE} />
</StyledLink>
)}
<StyledHeading>
{device.state ? (
<FormattedMessage
{...l10nMessages.TR_CHANGE_WALLET_TYPE_FOR}
values={{ deviceLabel: device.instanceLabel }}
/>
) : (
<FormattedMessage
{...l10nMessages.TR_SELECT_WALLET_TYPE_FOR}
values={{ deviceLabel: device.instanceLabel }}
/>
)}
</StyledHeading>
<Content isTop>
<Header>
<StyledWalletTypeIcon
type="standard"
size={16}
color={colors.TEXT_PRIMARY}
/>
<FormattedMessage {...l10nMessages.TR_STANDARD_WALLET} />
</Header>
<P size="small">
<FormattedMessage {...l10nMessages.TR_CONTINUE_TO_ACCESS_STANDARD_WALLET} />
</P>
<StyledButton onClick={() => onWalletTypeRequest(false)}>
<FormattedMessage {...l10nCommonMessages.TR_GO_TO_STANDARD_WALLET} />
</StyledButton>
</Content>
<Content>
<TooltipContainer>
<Tooltip
maxWidth={285}
placement="top"
content={this.props.intl.formatMessage(
l10nMessages.TR_PASSPHRASE_IS_OPTIONAL_FEATURE
)}
ctaLink="https://wiki.trezor.io/Passphrase"
ctaText={<FormattedMessage {...l10nCommonMessages.TR_LEARN_MORE} />}
>
<StyledIcon icon={icons.HELP} color={colors.TEXT_SECONDARY} size={16} />
</Tooltip>
</TooltipContainer>
<Header>
<StyledWalletTypeIcon type="hidden" size={16} color={colors.TEXT_PRIMARY} />
<FormattedMessage {...l10nMessages.TR_HIDDEN_WALLET} />
</Header>
<P size="small">
<FormattedMessage
{...l10nMessages.TR_ASKED_ENTER_YOUR_PASSPHRASE_TO_UNLOCK}
/>
</P>
<StyledButton isWhite onClick={() => onWalletTypeRequest(true)}>
<FormattedMessage {...l10nCommonMessages.TR_GO_TO_HIDDEN_WALLET} />
</StyledButton>
</Content>
</Wrapper>
);
}
}
WalletType.propTypes = {
device: PropTypes.object.isRequired,
onWalletTypeRequest: PropTypes.func.isRequired,
onCancel: PropTypes.func.isRequired,
};
export default injectIntl(WalletType);