mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 04:00:13 +08:00
cb528da8ed
* fix: rtl direction bug * 📝 dark theme usage docs * fix: sketch download * fix: theme dark * 📝 empty image * fix: dark form with mixture components like picker, input * 📝 update sketch release download * fix: remove inline-menu sub shadow
238 lines
7.1 KiB
JavaScript
238 lines
7.1 KiB
JavaScript
import React from 'react';
|
|
import ReactDOM from 'react-dom';
|
|
import PropTypes from 'prop-types';
|
|
import { enquireScreen } from 'enquire-js';
|
|
import { IntlProvider } from 'react-intl';
|
|
import { presetPalettes, presetDarkPalettes } from '@ant-design/colors';
|
|
import themeSwitcher from 'theme-switcher';
|
|
import { setTwoToneColor } from '@ant-design/icons';
|
|
import { Helmet, HelmetProvider } from 'react-helmet-async';
|
|
import 'moment/locale/zh-cn';
|
|
import { ConfigProvider } from 'antd';
|
|
import LogRocket from 'logrocket';
|
|
import setupLogRocketReact from 'logrocket-react';
|
|
// eslint-disable-next-line import/no-unresolved
|
|
import zhCN from 'antd/es/locale/zh_CN';
|
|
import Header from './Header';
|
|
import enLocale from '../../en-US';
|
|
import cnLocale from '../../zh-CN';
|
|
import * as utils from '../utils';
|
|
|
|
if (typeof window !== 'undefined' && navigator.serviceWorker) {
|
|
navigator.serviceWorker.getRegistrations().then(registrations => {
|
|
registrations.forEach(registration => registration.unregister());
|
|
});
|
|
}
|
|
|
|
if (typeof window !== 'undefined') {
|
|
// eslint-disable-next-line global-require
|
|
require('../../static/style');
|
|
|
|
// Expose to iframe
|
|
window.react = React;
|
|
window['react-dom'] = ReactDOM;
|
|
// eslint-disable-next-line global-require
|
|
window.antd = require('antd');
|
|
// eslint-disable-next-line global-require
|
|
window['@ant-design/icons'] = require('@ant-design/icons');
|
|
|
|
// Error log statistic
|
|
window.addEventListener('error', function onError(e) {
|
|
// Ignore ResizeObserver error
|
|
if (e.message === 'ResizeObserver loop limit exceeded') {
|
|
e.stopPropagation();
|
|
e.stopImmediatePropagation();
|
|
}
|
|
});
|
|
|
|
if (process.env.NODE_ENV === 'production') {
|
|
LogRocket.init('kpuw4z/ant-design');
|
|
setupLogRocketReact(LogRocket);
|
|
}
|
|
}
|
|
|
|
let isMobile = false;
|
|
enquireScreen(b => {
|
|
isMobile = b;
|
|
});
|
|
const SITE_THEME_STORE_KEY = 'site-theme';
|
|
|
|
// for dark.css timestamp to remove cache
|
|
const timestamp = new Date().getTime();
|
|
const themeMap = {
|
|
dark: `/dark.css?${timestamp}`,
|
|
};
|
|
const themeConfig = {
|
|
themeMap,
|
|
};
|
|
const { switcher } = themeSwitcher(themeConfig);
|
|
|
|
export default class Layout extends React.Component {
|
|
static contextTypes = {
|
|
router: PropTypes.object.isRequired,
|
|
};
|
|
|
|
static childContextTypes = {
|
|
isMobile: PropTypes.bool,
|
|
theme: PropTypes.oneOf(['default', 'dark']),
|
|
setTheme: PropTypes.func,
|
|
direction: PropTypes.string,
|
|
setIframeTheme: PropTypes.func,
|
|
};
|
|
|
|
constructor(props) {
|
|
super(props);
|
|
const { pathname } = props.location;
|
|
const appLocale = utils.isZhCN(pathname) ? cnLocale : enLocale;
|
|
|
|
this.state = {
|
|
appLocale,
|
|
isMobile,
|
|
theme:
|
|
typeof localStorage !== 'undefined'
|
|
? localStorage.getItem(SITE_THEME_STORE_KEY) || 'default'
|
|
: 'default',
|
|
setTheme: this.setTheme,
|
|
direction: 'ltr',
|
|
setIframeTheme: this.setIframeTheme,
|
|
};
|
|
|
|
this.changeDirection = this.changeDirection.bind(this);
|
|
}
|
|
|
|
getChildContext() {
|
|
const { isMobile: mobile, theme, setTheme, direction, setIframeTheme } = this.state;
|
|
return { isMobile: mobile, theme, setTheme, direction, setIframeTheme };
|
|
}
|
|
|
|
componentDidMount() {
|
|
const { theme } = this.state;
|
|
const { location } = this.props;
|
|
const { router } = this.context;
|
|
router.listen(loc => {
|
|
if (typeof window.ga !== 'undefined') {
|
|
window.ga('send', 'pageview', loc.pathname + loc.search);
|
|
}
|
|
// eslint-disable-next-line
|
|
if (typeof window._hmt !== 'undefined') {
|
|
// eslint-disable-next-line
|
|
window._hmt.push(['_trackPageview', loc.pathname + loc.search]);
|
|
}
|
|
const { pathname } = loc;
|
|
const componentPage = /^\/?components/.test(pathname);
|
|
// only component page can use `dark` theme
|
|
if (!componentPage) {
|
|
this.setTheme('default', false);
|
|
}
|
|
});
|
|
this.setTheme(/^\/?components/.test(location.pathname) ? theme : 'default');
|
|
|
|
const nprogressHiddenStyle = document.getElementById('nprogress-style');
|
|
if (nprogressHiddenStyle) {
|
|
this.timer = setTimeout(() => {
|
|
nprogressHiddenStyle.parentNode.removeChild(nprogressHiddenStyle);
|
|
}, 0);
|
|
}
|
|
|
|
enquireScreen(b => {
|
|
this.setState({
|
|
isMobile: !!b,
|
|
});
|
|
});
|
|
}
|
|
|
|
componentWillUnmount() {
|
|
clearTimeout(this.timer);
|
|
}
|
|
|
|
setIframeTheme = (iframeNode, theme) => {
|
|
iframeNode.contentWindow.postMessage(
|
|
JSON.stringify({
|
|
action: 'change.theme',
|
|
data: {
|
|
themeConfig,
|
|
theme,
|
|
},
|
|
}),
|
|
'*',
|
|
);
|
|
};
|
|
|
|
setTheme = (theme, persist = true) => {
|
|
if (typeof window === 'undefined') {
|
|
return;
|
|
}
|
|
|
|
switcher({
|
|
theme,
|
|
useStorage: persist,
|
|
});
|
|
|
|
const iframeNodes = document.querySelectorAll('.iframe-demo');
|
|
// loop element node
|
|
[].forEach.call(iframeNodes, iframeNode => {
|
|
this.setIframeTheme(iframeNode, theme);
|
|
});
|
|
|
|
this.setState({
|
|
theme,
|
|
});
|
|
const iconTwoToneThemeMap = {
|
|
dark: [presetDarkPalettes.blue.primary, '#111d2c'],
|
|
default: presetPalettes.blue.primary,
|
|
};
|
|
setTwoToneColor(iconTwoToneThemeMap[theme] || iconTwoToneThemeMap.default);
|
|
};
|
|
|
|
changeDirection(direction) {
|
|
this.setState({
|
|
direction,
|
|
});
|
|
}
|
|
|
|
render() {
|
|
const { children, helmetContext = {}, ...restProps } = this.props;
|
|
const { appLocale, direction } = this.state;
|
|
const title =
|
|
appLocale.locale === 'zh-CN'
|
|
? 'Ant Design - 一套企业级 UI 设计语言和 React 组件库'
|
|
: 'Ant Design - A UI Design Language and React UI library';
|
|
const description =
|
|
appLocale.locale === 'zh-CN'
|
|
? '基于 Ant Design 设计体系的 React UI 组件库,用于研发企业级中后台产品。'
|
|
: 'An enterprise-class UI design language and React UI library with a set of high-quality React components, one of best React UI library for enterprises';
|
|
let pageWrapperClass = 'page-wrapper';
|
|
if (direction === 'rtl') {
|
|
pageWrapperClass += ' page-wrapper-rtl';
|
|
}
|
|
return (
|
|
<HelmetProvider context={helmetContext}>
|
|
<Helmet encodeSpecialCharacters={false}>
|
|
<html lang={appLocale.locale === 'zh-CN' ? 'zh' : 'en'} data-direction={direction} />
|
|
<title>{title}</title>
|
|
<link
|
|
rel="apple-touch-icon-precomposed"
|
|
sizes="144x144"
|
|
href="https://gw.alipayobjects.com/zos/antfincdn/UmVnt3t4T0/antd.png"
|
|
/>
|
|
<meta name="description" content={description} />
|
|
<meta property="og:title" content={title} />
|
|
<meta property="og:type" content="website" />
|
|
<meta
|
|
property="og:image"
|
|
content="https://gw.alipayobjects.com/zos/rmsportal/rlpTLlbMzTNYuZGGCVYM.png"
|
|
/>
|
|
</Helmet>
|
|
<IntlProvider locale={appLocale.locale} messages={appLocale.messages} defaultLocale="en-US">
|
|
<ConfigProvider locale={appLocale.locale === 'zh-CN' ? zhCN : null} direction={direction}>
|
|
<div className={pageWrapperClass}>
|
|
<Header {...restProps} changeDirection={this.changeDirection} />
|
|
{children}
|
|
</div>
|
|
</ConfigProvider>
|
|
</IntlProvider>
|
|
</HelmetProvider>
|
|
);
|
|
}
|
|
}
|