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.
50 lines
1.4 KiB
JavaScript
50 lines
1.4 KiB
JavaScript
/* eslint-disable react/jsx-indent-props */
|
|
/* eslint-disable import/no-absolute-path */
|
|
/* eslint-disable import/no-absolute-path */
|
|
|
|
import React, { Fragment, Component } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { withTranslation } from 'react-i18next';
|
|
import { withTracker } from 'meteor/react-meteor-data';
|
|
import Blaze from 'meteor/gadicc:blaze-react-component';
|
|
import { Helmet } from 'react-helmet-async';
|
|
|
|
/*
|
|
https://github.com/meteor/docs/blob/version-NEXT/long-form/oplog-observe-driver.md
|
|
(...)
|
|
Now look at your app. The facts template will render a variety of metrics; the ones we're looking for are observe-drivers-oplog and observe-drivers-polling in the mongo-livedata section. If observe-drivers-polling is zero or not rendered at all, then all of your observeChanges calls are using OplogObserveDriver!
|
|
(...)
|
|
*/
|
|
|
|
class Status extends Component {
|
|
constructor(props) {
|
|
super(props);
|
|
this.t = props.t;
|
|
this.state = {
|
|
};
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<Fragment>
|
|
<Helmet>
|
|
<title>{this.t('AppName')}: Status</title>
|
|
</Helmet>
|
|
<h4 className="page-header">Status</h4>
|
|
<Blaze template="serverFacts" />
|
|
</Fragment>
|
|
);
|
|
}
|
|
}
|
|
|
|
Status.propTypes = {
|
|
t: PropTypes.func.isRequired
|
|
};
|
|
|
|
Status.defaultProps = {
|
|
};
|
|
|
|
// export default withTranslation()(Status);
|
|
export default withTranslation()(withTracker(props => ({
|
|
// props.something
|
|
}))(Status));
|