react-web的延迟滚动列表组件 使用分页抓取支持到中继连接, 同时提供良好的性能和记忆特性。
要管理的两件事
是否有一些特定的列表组件可以很好地处理这个问题? 是否存在实施这种共同机制的既定模式?
答案 0 :(得分:7)
这种模式几乎是连接的代表性场景。这是一个假设的<PostsIndex>
组件,其中显示了一个帖子列表,其中包含更多&#34;加载更多&#34;按钮。如果您不想在isLoading
状态时明确更改用户界面,则可以删除构造函数和setVariables
回调。添加基于视口的无限滚动也不难;您只需要将滚动侦听器连接到setVariables
电话。
class PostsIndex extends React.Component {
constructor(props) {
super(props);
this.state = {isLoading: false};
}
_handleLoadMore = () => {
this.props.relay.setVariables({
count: this.props.relay.variables.count + 10,
}, ({ready, done, error, aborted}) => {
this.setState({isLoading: !ready && !(done || error || aborted)});
});
}
render() {
return (
<div>
{
this.props.viewer.posts.edges.map(({node}) => (
<Post key={node.id} post={node} />
))
}
{
this.props.viewer.posts.pageInfo.hasNextPage ?
<LoadMoreButton
isLoading={this.state.isLoading}
onLoadMore={this._handleLoadMore}
/> :
null
}
</div>
);
}
}
export default Relay.createContainer(PostsIndex, {
initialVariables: {
count: 10,
},
fragments: {
viewer: () => Relay.QL`
fragment on User {
posts(first: $count) {
edges {
node {
id
${Post.getFragment('post')}
}
}
pageInfo {
hasNextPage
}
}
}
`,
},
});