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/components/TopNavigationAccount/index.js

133 lines
3.6 KiB

/* @flow */
import styled from 'styled-components';
import React from 'react';
import { FONT_SIZE, FONT_WEIGHT, SCREEN_SIZE } from 'config/variables';
import { NavLink } from 'react-router-dom';
import { connect } from 'react-redux';
import { colors } from 'trezor-ui-components';
import type { State } from 'flowtype';
import { FormattedMessage } from 'react-intl';
import l10nMessages from './index.messages';
import Indicator from './components/Indicator';
type OwnProps = {||};
type StateProps = {|
router: $ElementType<State, 'router'>,
selectedAccount: $ElementType<State, 'selectedAccount'>,
|};
type Props = {| ...OwnProps, ...StateProps |};
type LocalState = {
wrapper: ?HTMLElement,
};
const Wrapper = styled.div`
position: relative;
display: flex;
height: 100%;
flex: 1;
align-items: center;
padding: 0px 30px 0 35px;
overflow-y: hidden;
overflow-x: auto;
@media screen and (max-width: ${SCREEN_SIZE.MD}) {
justify-content: space-between;
}
@media screen and (max-width: ${SCREEN_SIZE.SM}) {
padding: 0px 16px;
}
`;
const StyledNavLink = styled(NavLink)`
font-weight: ${FONT_WEIGHT.MEDIUM};
font-size: ${FONT_SIZE.TOP_MENU};
color: ${colors.TEXT_SECONDARY};
margin: 0px 4px;
padding: 20px 35px;
white-space: nowrap;
@media screen and (max-width: ${SCREEN_SIZE.MD}) {
padding: 20px 10px;
}
@media screen and (max-width: ${SCREEN_SIZE.XS}) {
font-size: ${FONT_SIZE.BASE};
padding: 20px 10px;
}
&.active,
&:hover {
transition: all 0.3s ease-in-out;
color: ${colors.TEXT_PRIMARY};
}
&:first-child {
margin-left: 0px;
}
&:last-child {
margin-right: 0px;
}
`;
class TopNavigationAccount extends React.PureComponent<Props, LocalState> {
constructor(props: Props) {
super(props);
this.state = {
wrapper: null,
};
}
wrapperRefCallback = (element: ?HTMLElement) => {
this.setState({
wrapper: element,
});
};
wrapper: ?HTMLElement;
render() {
const { state, pathname } = this.props.router.location;
if (!state) return null;
const { network } = this.props.selectedAccount;
if (!network) return null;
const basePath = `/device/${state.device}/network/${state.network}/account/${
state.account
}`;
return (
<Wrapper className="account-tabs" ref={this.wrapperRefCallback}>
<StyledNavLink exact to={`${basePath}`}>
<FormattedMessage {...l10nMessages.TR_NAV_SUMMARY} />
</StyledNavLink>
<StyledNavLink to={`${basePath}/receive`}>
<FormattedMessage {...l10nMessages.TR_NAV_RECEIVE} />
</StyledNavLink>
<StyledNavLink to={`${basePath}/send`}>
<FormattedMessage {...l10nMessages.TR_NAV_SEND} />
</StyledNavLink>
{network.type === 'ethereum' && (
<StyledNavLink to={`${basePath}/signverify`}>
<FormattedMessage {...l10nMessages.TR_NAV_SIGN_AND_VERIFY} />
</StyledNavLink>
)}
<Indicator pathname={pathname} wrapper={() => this.state.wrapper} />
</Wrapper>
);
}
}
export default connect<Props, OwnProps, StateProps, _, State, _>(
(state: State): StateProps => ({
router: state.router,
selectedAccount: state.selectedAccount,
})
)(TopNavigationAccount);