The 4 class components on UNSAFE_componentWillReceiveProps converted: - FromNow, FireStats: state is a pure mirror of props -> getDerivedStateFromProps - Fires: split the derived state (getDerivedStateFromProps) from the URL- canonicalization side effect (componentDidUpdate, guarded by prevProps) so the side effect never runs inside the pure gDSFP - SelectionMap: marker is also locally draggable, so gDSFP would clobber a drag -> componentDidUpdate guarded on a real center/distance value change (no clobber, no setState loop), merged with the existing fit() Browser-verified: /fires count, fire detail + FromNow, active-fire URL canonicalizes to /fire/archive/:id, home SelectionMap renders stably (no render loop). No UNSAFE_ warnings remain from our code. REST smoke byte-identical.
59 lines
2 KiB
JavaScript
59 lines
2 KiB
JavaScript
/* eslint-disable react/jsx-indent-props */
|
|
/* eslint-disable import/no-absolute-path */
|
|
/* eslint-disable import/no-absolute-path */
|
|
|
|
import React, { Component, Fragment } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { withTranslation, Trans } from 'react-i18next';
|
|
import FromNow from '/imports/ui/components/FromNow/FromNow';
|
|
|
|
class FireStats extends Component {
|
|
constructor(props) {
|
|
super(props);
|
|
this.state = {
|
|
lastFireDetected: props.lastFireDetected,
|
|
lastCheck: props.lastCheck,
|
|
loadingAll: props.loadingAll
|
|
};
|
|
}
|
|
|
|
// state mirrors props (was UNSAFE_componentWillReceiveProps)
|
|
static getDerivedStateFromProps(props, state) {
|
|
if (props.lastCheck !== state.lastCheck ||
|
|
props.lastFireDetected !== state.lastFireDetected ||
|
|
props.loadingAll !== state.loadingAll
|
|
) {
|
|
return {
|
|
lastFireDetected: props.lastFireDetected,
|
|
lastCheck: props.lastCheck,
|
|
loadingAll: props.loadingAll
|
|
};
|
|
}
|
|
return null;
|
|
}
|
|
|
|
shouldComponentUpdate(nextProps, nextState) {
|
|
return !(nextState.lastCheck === this.state.lastCheck &&
|
|
nextState.lastFireDetected === this.state.lastFireDetected &&
|
|
nextState.loadingAll === this.state.loadingAll);
|
|
}
|
|
|
|
render() {
|
|
if (this.state.loadingAll) return (<Fragment><br /><em><Trans>Actualizando...</Trans></em></Fragment>);
|
|
if (this.state.lastCheck && !this.state.lastFireDetected) {
|
|
return (<Fragment><br /><Trans>Actualizado <FromNow when={this.state.lastCheck} />.</Trans></Fragment>);
|
|
}
|
|
if (this.state.lastCheck && this.state.lastFireDetected) {
|
|
return (<Fragment><br /><Trans>Actualizado <FromNow when={this.state.lastCheck} />, último fuego detectado <FromNow when={this.state.lastFireDetected.when} />.</Trans></Fragment>);
|
|
}
|
|
return null;
|
|
}
|
|
}
|
|
|
|
FireStats.propTypes = {
|
|
lastFireDetected: PropTypes.object,
|
|
loadingAll: PropTypes.bool.isRequired,
|
|
lastCheck: PropTypes.instanceOf(Date)
|
|
};
|
|
|
|
export default withTranslation()(FireStats);
|