mirror of
https://github.com/trezor/trezor-wallet
synced 2025-06-26 09:52:36 +00:00
indicator fixes
- indicator animation ignored on 'resize' event - fixed initial rendering - working with element ref insead of document.querySelector
This commit is contained in:
parent
d1eadc8033
commit
5a686cf9df
@ -1,18 +1,20 @@
|
|||||||
/* @flow */
|
/* @flow */
|
||||||
|
|
||||||
import styled from 'styled-components';
|
import styled, { css } from 'styled-components';
|
||||||
import colors from 'config/colors';
|
import colors from 'config/colors';
|
||||||
import React, { PureComponent } from 'react';
|
import React, { PureComponent } from 'react';
|
||||||
|
|
||||||
type Props = {
|
type Props = {
|
||||||
|
pathname: string;
|
||||||
|
wrapper: ?HTMLElement;
|
||||||
}
|
}
|
||||||
|
|
||||||
type State = {
|
type State = {
|
||||||
style: {
|
style: {
|
||||||
width: number;
|
width: number;
|
||||||
left: number;
|
left: number;
|
||||||
}
|
},
|
||||||
|
shouldAnimate: boolean,
|
||||||
}
|
}
|
||||||
|
|
||||||
const Wrapper = styled.div`
|
const Wrapper = styled.div`
|
||||||
@ -22,7 +24,9 @@ const Wrapper = styled.div`
|
|||||||
width: 100px;
|
width: 100px;
|
||||||
height: 2px;
|
height: 2px;
|
||||||
background: ${colors.GREEN_PRIMARY};
|
background: ${colors.GREEN_PRIMARY};
|
||||||
transition: all 0.3s ease-in-out;
|
${props => props.animation && css`
|
||||||
|
transition: all 0.3s ease-in-out;
|
||||||
|
`}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
class Indicator extends PureComponent<Props, State> {
|
class Indicator extends PureComponent<Props, State> {
|
||||||
@ -34,52 +38,62 @@ class Indicator extends PureComponent<Props, State> {
|
|||||||
width: 0,
|
width: 0,
|
||||||
left: 0,
|
left: 0,
|
||||||
},
|
},
|
||||||
|
shouldAnimate: false,
|
||||||
};
|
};
|
||||||
|
|
||||||
this.reposition = this.reposition.bind(this);
|
this.handleResize = this.handleResize.bind(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
componentDidMount() {
|
componentDidMount() {
|
||||||
this.reposition();
|
window.addEventListener('resize', this.handleResize, false);
|
||||||
window.addEventListener('resize', this.reposition, false);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
componentDidUpdate() {
|
componentWillReceiveProps(newProps: Props) {
|
||||||
this.reposition();
|
if (this.props.pathname !== newProps.pathname) {
|
||||||
}
|
|
||||||
|
|
||||||
componentWillUnmount() {
|
|
||||||
window.removeEventListener('resize', this.reposition, false);
|
|
||||||
}
|
|
||||||
|
|
||||||
reposition() {
|
|
||||||
const tabs = document.querySelector('.account-tabs');
|
|
||||||
if (!tabs) return;
|
|
||||||
const active = tabs.querySelector('.active');
|
|
||||||
if (!active) return;
|
|
||||||
const bounds = active.getBoundingClientRect();
|
|
||||||
|
|
||||||
const left = bounds.left - tabs.getBoundingClientRect().left;
|
|
||||||
|
|
||||||
if (this.state.style.left !== left) {
|
|
||||||
this.setState({
|
this.setState({
|
||||||
style: {
|
shouldAnimate: true,
|
||||||
width: bounds.width,
|
|
||||||
left,
|
|
||||||
},
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
reposition: () => void;
|
componentDidUpdate() {
|
||||||
|
this.reposition(false);
|
||||||
|
}
|
||||||
|
|
||||||
|
componentWillUnmount() {
|
||||||
|
window.removeEventListener('resize', this.handleResize, false);
|
||||||
|
}
|
||||||
|
|
||||||
handleResize() {
|
handleResize() {
|
||||||
this.reposition();
|
this.reposition();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
handleResize: () => void;
|
||||||
|
|
||||||
|
reposition(resetAnimation: boolean = true) {
|
||||||
|
if (!this.props.wrapper) return;
|
||||||
|
const { wrapper } = this.props;
|
||||||
|
const active = wrapper.querySelector('.active');
|
||||||
|
if (!active) return;
|
||||||
|
const bounds = active.getBoundingClientRect();
|
||||||
|
const left = bounds.left - wrapper.getBoundingClientRect().left;
|
||||||
|
const { state } = this;
|
||||||
|
|
||||||
|
if (state.style.left !== left) {
|
||||||
|
this.setState({
|
||||||
|
style: {
|
||||||
|
width: bounds.width,
|
||||||
|
left,
|
||||||
|
},
|
||||||
|
shouldAnimate: resetAnimation ? false : state.shouldAnimate,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
|
if (!this.props.wrapper) return null;
|
||||||
return (
|
return (
|
||||||
<Wrapper style={this.state.style} />
|
<Wrapper style={this.state.style} animation={this.state.shouldAnimate} />
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -47,22 +47,28 @@ const StyledNavLink = styled(NavLink)`
|
|||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
class TopNavigationAccount extends React.PureComponent<Props> {
|
||||||
|
wrapperRefCallback = (element: ?HTMLElement) => {
|
||||||
|
this.wrapper = element;
|
||||||
|
}
|
||||||
|
|
||||||
const TopNavigationAccount = (props: Props) => {
|
wrapper: ?HTMLElement;
|
||||||
const { state, pathname } = props.location;
|
|
||||||
if (!state) return null;
|
|
||||||
|
|
||||||
const basePath = `/device/${state.device}/network/${state.network}/account/${state.account}`;
|
render() {
|
||||||
|
const { state, pathname } = this.props.location;
|
||||||
|
if (!state) return null;
|
||||||
|
|
||||||
return (
|
const basePath = `/device/${state.device}/network/${state.network}/account/${state.account}`;
|
||||||
<Wrapper className="account-tabs">
|
return (
|
||||||
<StyledNavLink exact to={`${basePath}`}>Summary</StyledNavLink>
|
<Wrapper className="account-tabs" innerRef={this.wrapperRefCallback}>
|
||||||
<StyledNavLink to={`${basePath}/receive`}>Receive</StyledNavLink>
|
<StyledNavLink exact to={`${basePath}`}>Summary</StyledNavLink>
|
||||||
<StyledNavLink to={`${basePath}/send`}>Send</StyledNavLink>
|
<StyledNavLink to={`${basePath}/receive`}>Receive</StyledNavLink>
|
||||||
{/* <StyledNavLink to={`${basePath}/signverify`}>Sign & Verify</StyledNavLink> */}
|
<StyledNavLink to={`${basePath}/send`}>Send</StyledNavLink>
|
||||||
<Indicator pathname={pathname} />
|
{/* <StyledNavLink to={`${basePath}/signverify`}>Sign & Verify</StyledNavLink> */}
|
||||||
</Wrapper>
|
<Indicator pathname={pathname} wrapper={this.wrapper} />
|
||||||
);
|
</Wrapper>
|
||||||
};
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
export default TopNavigationAccount;
|
export default TopNavigationAccount;
|
Loading…
Reference in New Issue
Block a user