我正在尝试获取无状态子组件的高度,以便我能够在父类中使用它的高度,但是我收到以下错误:Invariant Violation: Stateless function components cannot have refs.
class App extends React.Component {
componentDidMount() {
console.log(this.header);
}
render() {
return (
<Child ref={component => this.header = component} />
)
}
}
const Child = () => (
<header ref="header">
Some text
</header>
)
有办法做到这一点吗?
以下是指向a Codepen with the error的链接。
更新
所以我现在有一个Header组件,看起来像这样:
export const Header = ({dateDetailsButton, title, logo, backButton, signUpButton, inboxButton, header}) => (
<header header className="flex flex-row tc pa3 bb b--light-gray relative min-h-35 max-h-35">
{signUpButton ? <Link to="/edit-profile-contact" href="#" className="flex z-2"><AddUser /></Link> : null }
{backButton ? <BackButton className="flex z-2" /> : null }
<h1 className={logo ? "w-100 tc dark-gray lh-solid f4 fw5 tk-reklame-script lh-solid ma0" : "w-100 tc dark-gray lh-solid f4 fw4 absolute left-0 right-0 top-0 bottom-0 maa h1-5 z-0"}>{title}</h1>
{dateDetailsButton ? <Link to="/date-details" className="absolute link dark-gray right-1 top-0 bottom-0 maa h1-5 z-2">Details</Link> : null }
{inboxButton ? <Link to="/inbox" href="#" className="flex mla z-2"><SpeechBubble /></Link> : null}
</header>
)
在某些情况下,我想在此Header中添加逻辑以对其进行动画处理(例如,在用户滚动时在主页上,当我们滚动超过某个点时,我正在设置Header以使其固定 - 一个粘性标题,如果你愿意的话)。
我以前做过这种方式的方法是为一个具有特定功能的Header(如上所述)和一个没有的Header单独创建一个Class。但是为了保持我的代码DRY,我将Header分离为它自己的功能无状态组件,并将视图封装在Class中,为其提供了粘性标头功能。
以下是该类:
export default class FeedHeader extends React.Component {
constructor(props) {
super(props);
this.handleScroll = this.handleScroll.bind(this);
this.state = {
scrolledPastHeader: null,
from: 0,
to: 1,
}
}
componentDidMount() {
window.addEventListener('scroll', this.handleScroll);
this.setState({navHeight: this.navHeight.offsetHeight});
}
componentWillUnmount() {
window.removeEventListener('scroll', this.handleScroll);
}
handleScroll(e) {
const { navHeight, scrolledPastHeader } = this.state;
const wy = document.body.scrollTop;
if (wy < navHeight) this.setState({scrolledPastHeader: null})
else if (wy > navHeight && wy < 100) {
this.setState({scrolledPastHeader: false})
}
else this.setState({scrolledPastHeader: true})
}
getMotionProps() {
const { scrolledPastHeader } = this.state;
return scrolledPastHeader === false ?
{
style: {
value: this.state.from
}
}
: {
style: {
value: spring(this.state.to)
}
}
}
render() {
const { brand, blurb } = this.props;
const { scrolledPastHeader } = this.state;
return (
<Motion {...this.getMotionProps()}>
{({value}) => {
return (
<Header ref="child" title={this.props.title} backButton={false} signUpButton inboxButton logo/>
);
}}
</Motion>
)
}
}
所以这是这个特定问题的背景 - 我希望这会使事情变得更加清晰。
抱歉由于缺乏背景,我想象答案会比看起来更直接!
答案 0 :(得分:6)
好的,首先,感谢大家的回复 - 非常感谢!
我开始按照Win的推荐实现react-waypoints
,虽然很明显我需要修改我的代码以使其工作,所以我想我最后一次搜索试图找到使用refs
的替代解决方案。
我正在寻找的答案实际上非常简单,来自Github issue thread以下的mnpenner。
因为React不允许对无状态功能组件进行引用,所以你可以将功能组件包装在包装器中,同时为包装器提供自己的ref
,如下所示:
render() {
return (
<div ref={el => {this.childWrap = el;}}>
<Child />
</div>
)
}
然后,您可以通过定位包装器来访问组件的高度:
componentDidMount() {
if(this.childWrap && this.childWrap.firstChild) {
let childHeight = this.childWrap.offsetHeight;
console.log(childHeight);
}
}
虽然这可能不是最优雅的解决方案,但它确实解决了我的问题。
以下是a Codepen供参考。
答案 1 :(得分:1)
这是使用React-waypoint的解决方案。你可以在这里查看: https://codesandbox.io/s/qp3ly687
我已经在onEnter和onLeave上添加了一个debounce,这样它就不会像疯了一样更新状态,这样我们就可以在滚动时优化性能并且它不会锁定应用。同样,它是一个非常粗略的想法,你可以做什么,并有很多选项来改善实施。
===上一页
这是通过保留无状态组件来解决问题的一种方法。由于上下文没有进一步解释,这应该让您有机会了解如何获取位于无状态组件中的子组件的高度。
class App extends React.Component {
componentDidMount() {
console.log(this.child.offsetHeight);
}
render() {
return (
<div>
<Wrapper>
<div
ref={child => this.child = child}
style={{height: 500}}>
Some text!!
</div>
</Wrapper>
</div>
)
}
}
const Wrapper = ({children}) => {
return (
<div>
<header>Header</header>
<div>{children}</div>
<footer>Footer</footer>
</div>
)
}
ReactDOM.render(
<App />,
document.getElementById("main")
);
&#13;