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.
55 lines
1.1 KiB
55 lines
1.1 KiB
// After
|
|
class ExampleComponent extends React.Component {
|
|
state = {
|
|
externalData: null,
|
|
};
|
|
|
|
// highlight-range{1-13}
|
|
static getDerivedStateFromProps(props, state) {
|
|
// Store prevId in state so we can compare when props change.
|
|
// Clear out previously-loaded data (so we don't render stale stuff).
|
|
if (props.id !== state.prevId) {
|
|
return {
|
|
externalData: null,
|
|
prevId: props.id,
|
|
};
|
|
}
|
|
|
|
// No state update necessary
|
|
return null;
|
|
}
|
|
|
|
componentDidMount() {
|
|
this._loadAsyncData(this.props.id);
|
|
}
|
|
|
|
// highlight-range{1-5}
|
|
componentDidUpdate(prevProps, prevState) {
|
|
if (this.state.externalData === null) {
|
|
this._loadAsyncData(this.props.id);
|
|
}
|
|
}
|
|
|
|
componentWillUnmount() {
|
|
if (this._asyncRequest) {
|
|
this._asyncRequest.cancel();
|
|
}
|
|
}
|
|
|
|
render() {
|
|
if (this.state.externalData === null) {
|
|
// Render loading state ...
|
|
} else {
|
|
// Render real UI ...
|
|
}
|
|
}
|
|
|
|
_loadAsyncData(id) {
|
|
this._asyncRequest = loadMyAsyncData(id).then(
|
|
externalData => {
|
|
this._asyncRequest = null;
|
|
this.setState({externalData});
|
|
}
|
|
);
|
|
}
|
|
}
|
|
|