我有一个react组件,它在apollo graphql查询上使用subscribeToMore方法来更新自己。它做得很好,但我想在订阅获得更改时调用一些外部函数。我想在UI中显示一些事情已经改变的提示,让我们调用我们的函数'onUpdate',我在哪里调用这个onUpdate函数?
我的组件在渲染函数之前有一些看起来像这样的代码:
subscribeToNewPoints = () => {
this.props.studentSessionPointsQuery.subscribeToMore({
document: NEW_POINT_STUDENT_SESSION_SUBSCRIPTION,
variables,
updateQuery: (previous, { subscriptionData }) => {
const newAllPoints = [
subscriptionData.data.Point.node,
...previous.allPoints
]
const result = {
...previous,
allPoints: newAllPoints
}
return result
}
})
}
componentDidMount() {
this.subscribeToNewPoints()
}
我应该把我的onUpdate函数放在这里或其他地方吗?
请原谅我,如果在另一个问题中回答这个问题,但我能找到的所有其他问题似乎都在询问如何更新查询的缓存或如何让订阅首先发挥作用。
答案 0 :(得分:0)
React拥有它的生命周期事件ComponentWillUpdate
,它会在您的组件获得更新之前调用。
或者您可以使用在组件获得更新后调用的ComponentDidUpdate
。
ComponentWillUpdate() {
/*called just before an update */
onUpdateFunc()
}
ComponentDidUpdate() {
/*called just after an update */
onUpdateFunc()
}