📝 Add lang attribute to html

This commit is contained in:
afc163 2019-08-19 11:08:20 +08:00
parent a707050c05
commit 62aeb5aff2
2 changed files with 15 additions and 12 deletions

View File

@ -166,6 +166,7 @@
"react-document-title": "^2.0.3",
"react-dom": "^16.5.2",
"react-github-button": "^0.1.11",
"react-helmet": "^6.0.0-beta",
"react-highlight-words": "^0.16.0",
"react-infinite-scroller": "^1.2.4",
"react-intl": "^3.1.1",

View File

@ -3,6 +3,7 @@ import ReactDOM from 'react-dom';
import PropTypes from 'prop-types';
import { enquireScreen } from 'enquire-js';
import { IntlProvider } from 'react-intl';
import { Helmet } from 'react-helmet';
import 'moment/locale/zh-cn';
import { ConfigProvider } from 'antd';
import LogRocket from 'logrocket';
@ -110,11 +111,11 @@ export default class Layout extends React.Component {
const { children, ...restProps } = this.props;
const { appLocale } = this.state;
return (
<IntlProvider
locale={appLocale.locale}
messages={appLocale.messages}
defaultLocale="en-US"
>
<>
<Helmet>
<html lang={appLocale.locale === 'zh-CN' ? 'zh' : 'en'} />
</Helmet>
<IntlProvider locale={appLocale.locale} messages={appLocale.messages} defaultLocale="en-US">
<ConfigProvider locale={appLocale.locale === 'zh-CN' ? zhCN : null}>
<div className="page-wrapper">
<Header {...restProps} />
@ -122,6 +123,7 @@ export default class Layout extends React.Component {
</div>
</ConfigProvider>
</IntlProvider>
</>
);
}
}