You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.3 KiB
53 lines
1.3 KiB
// After
|
|
class ExampleComponent extends React.Component {
|
|
// highlight-range{1-3}
|
|
state = {
|
|
subscribedValue: this.props.dataSource.value,
|
|
};
|
|
// highlight-line
|
|
// highlight-range{1-3}
|
|
componentDidMount() {
|
|
this.finalizeSubscription();
|
|
}
|
|
// highlight-line
|
|
// highlight-range{1-9}
|
|
componentDidUpdate(prevProps, prevState) {
|
|
if (this.props.dataSource !== prevProps.dataSource) {
|
|
// Similar to adding subscriptions,
|
|
// It's only safe to unsubscribe during the commit phase.
|
|
prevProps.dataSource.dispose();
|
|
|
|
this.finalizeSubscription();
|
|
}
|
|
}
|
|
|
|
componentWillUnmount() {
|
|
this.props.dataSource.unsubscribe(
|
|
this.handleSubscriptionChange
|
|
);
|
|
}
|
|
|
|
// highlight-range{1-18}
|
|
finalizeSubscription() {
|
|
// Event listeners are only safe to add during the commit phase,
|
|
// So they won't leak if render is interrupted or errors.
|
|
this.props.dataSource.subscribe(
|
|
this.handleSubscriptionChange
|
|
);
|
|
|
|
// External values could change between render and mount,
|
|
// In some cases it may be important to handle this case.
|
|
if (
|
|
this.state.subscribedValue !==
|
|
this.props.dataSource.value
|
|
) {
|
|
this.setState({
|
|
subscribedValue: this.props.dataSource.value,
|
|
});
|
|
}
|
|
}
|
|
|
|
handleSubscriptionChange = subscribedValue => {
|
|
this.setState({subscribedValue});
|
|
};
|
|
}
|
|
|