Modernizes the whole i18n stack:
- 48 translate([], {wait:true}) / translate() HOCs -> withTranslation()
- react.wait:true -> react.useSuspense:false
- whitelist -> supportedLngs; added compatibilityJSON: 'v3' so our
natural-language keys + v3 _plural layout keep working (custom
separators ss/eth/dj preserved)
- backends: xhr -> i18next-http-backend (client), sync-fs ->
i18next-fs-backend (server); dropped i18next-localstorage-cache
(was enabled:false); languagedetector 2 -> 8
- ReSendEmail: <Interpolate> (removed in v10) -> <Trans values={{email}}/>,
dropped the removed bare t export
- saveMissing handler signature (lngs, ns, key, fallbackValue)
Silences the per-component Translate/I18n legacy-context warnings.
Browser-verified es/en switch and <Trans> interpolation on /fires;
REST smoke byte-identical.
69 lines
1.6 KiB
JavaScript
69 lines
1.6 KiB
JavaScript
/* eslint-disable react/jsx-indent-props */
|
|
/* eslint-disable import/no-absolute-path */
|
|
|
|
import React, { Component } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { withTracker } from 'meteor/react-meteor-data';
|
|
import Chronos from '/imports/ui/components/Chronos/Chronos';
|
|
import { withTranslation } from 'react-i18next';
|
|
import { dateLongFormat } from '/imports/api/Common/dates';
|
|
|
|
import './FromNow.scss';
|
|
|
|
class FromNow extends Component {
|
|
constructor(props) {
|
|
super(props);
|
|
this.state = {
|
|
when: props.when
|
|
};
|
|
}
|
|
|
|
UNSAFE_componentWillReceiveProps(nextProps) {
|
|
if (this.props.when !== nextProps.when) {
|
|
// console.log(`Next when ${nextProps.when}`);
|
|
this.setState({
|
|
when: nextProps.when
|
|
});
|
|
}
|
|
}
|
|
|
|
shouldComponentUpdate(nextProps, nextState) {
|
|
return !(nextState.when === this.state.when);
|
|
}
|
|
|
|
thatIs() {
|
|
return this.props.t('esDecirTalDia', { date: dateLongFormat(this.props.whenDate) });
|
|
}
|
|
|
|
render() {
|
|
console.log(`Render from now ${this.state.when}`);
|
|
return (
|
|
<span data-toggle="tooltip" className="from-now" title={this.thatIs()}>{this.state.when}</span>
|
|
);
|
|
}
|
|
}
|
|
|
|
FromNow.propTypes = {
|
|
t: PropTypes.func.isRequired,
|
|
when: PropTypes.string,
|
|
whenDate: PropTypes.instanceOf(Date)
|
|
};
|
|
|
|
FromNow.defaultProps = {
|
|
};
|
|
|
|
/*
|
|
* const FromNowContainer = withTracker((props) => {
|
|
*
|
|
* })(FromNow);
|
|
*
|
|
* export default FromNowContainer;
|
|
* */
|
|
|
|
export default withTranslation()(withTracker((props) => {
|
|
const whenDate = props.when;
|
|
return {
|
|
when: whenDate ? Chronos.moment(whenDate).fromNow() : null,
|
|
whenDate
|
|
};
|
|
})(FromNow));
|