我尝试使用React Motion UI Pack为我的侧面导航设置滑入/滑出动画的动画。就是这样:
constructor(props){
super(props);
this.state = {
isThere: false,
showOverlay: false
}
this.updatePredicate = this.updatePredicate.bind(this);
this.handleToggleClick = this.handleToggleClick.bind(this);
this.handleOverlayClick = this.handleOverlayClick.bind(this);
}
componentDidMount() {
this.updatePredicate();
window.addEventListener("resize", this.updatePredicate);
}
componentWillUnmount() {
window.removeEventListener("resize", this.updatePredicate);
}
updatePredicate() {
this.setState({ isThere: window.innerWidth > this.props.breakWidth })
}
handleToggleClick(){
this.setState({
isThere: true,
showOverlay: true
})
}
handleOverlayClick(){
this.setState({
isThere: false,
showOverlay: false
});
}
let sidenav = (
<Tag {...attributes} className={classes} key="sidenav">
<ul className="custom-scrollbar">
{src &&
<li>
<div className="logo-wrapper">
<a href={href}>
<img src={src} className="img-fluid"/>
</a>
</div>
</li>
}
{children}
</ul>
</Tag>
);
return (
<div>
{ isThere ? (
<Transition
component={false}
appear={{ opacity: 0.2, translateX: -300 }}
enter={{ opacity: 1, translateX: 0 }}
leave={{ opacity: 0.2, translateX: -300 }}
>
{ sidenav }
</Transition>
) : (
<Button color="primary" onClick={this.handleToggleClick} key="sideNavToggles">ClickMe</Button>
) }
{showOverlay && (
<div id="sidenav-overlay" onClick={this.handleOverlayClick} key="overlay"></div>
)}
</div>
);
}
}
实用程序看起来很棒,但有些东西我无法绕过我的脑袋。我的组件呈现按钮或sidenav取决于breakWith
道具。单击渲染按钮会导致SideNav无论如何都会滑入,这次与叠加层一起。 Transition
允许平滑的滑入式动画,但现在我想在点击叠加层时应用滑出式动画。
几个小时过去了,我开始认为这是不可能的。组件的渲染是有条件的&amp;基于状态(isThere ? (...
中的render()
部分),对吧?由于包没有提供willLeave
道具,似乎没有时间在状态更改和重新渲染之间设置leave
动画,而条件渲染元素已经丢失。
或者我错过了什么?
答案 0 :(得分:2)
是 - 找到的答案here有效地解决了问题。为了解决这个问题,我移动了向上组件的条件逻辑,创建了适当的变量,并将其封装在<Transition>
中的render()
内。如果要在这里学习一课,那么来自Reakt Motion UI Pack的<Transition>
(也许,在其他地方)如果被条件语句包围,则不会触发其leave
动画,如果您不希望ternary operator
组件也设置为动画,则无法与false
一起使用。