2017-05-09 13:40:33 +08:00
|
|
|
import React from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
2019-12-26 15:27:52 +08:00
|
|
|
import GitHubButton from 'react-github-button';
|
2017-01-17 15:24:13 +08:00
|
|
|
import { Link } from 'bisheng/router';
|
2019-08-08 12:35:48 +08:00
|
|
|
import { FormattedMessage, injectIntl } from 'react-intl';
|
2016-04-28 15:42:02 +08:00
|
|
|
import classNames from 'classnames';
|
2019-12-26 15:27:52 +08:00
|
|
|
import { SearchOutlined, MenuOutlined } from '@ant-design/icons';
|
2019-12-31 14:52:53 +08:00
|
|
|
import { Select, Menu, Row, Col, Popover, Input, Button } from 'antd';
|
2019-08-13 14:07:17 +08:00
|
|
|
|
2016-12-09 13:02:16 +08:00
|
|
|
import * as utils from '../utils';
|
2017-02-09 19:46:23 +08:00
|
|
|
import { version as antdVersion } from '../../../../package.json';
|
2016-08-23 21:00:35 +08:00
|
|
|
|
2017-12-29 12:02:22 +08:00
|
|
|
const { Option } = Select;
|
|
|
|
|
|
|
|
let docsearch;
|
|
|
|
if (typeof window !== 'undefined') {
|
|
|
|
docsearch = require('docsearch.js'); // eslint-disable-line
|
|
|
|
}
|
|
|
|
|
|
|
|
function initDocSearch(locale) {
|
|
|
|
if (!docsearch) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const lang = locale === 'zh-CN' ? 'cn' : 'en';
|
|
|
|
docsearch({
|
|
|
|
apiKey: '60ac2c1a7d26ab713757e4a081e133d0',
|
|
|
|
indexName: 'ant_design',
|
|
|
|
inputSelector: '#search-box input',
|
|
|
|
algoliaOptions: { facetFilters: [`tags:${lang}`] },
|
2018-01-09 19:38:27 +08:00
|
|
|
transformData(hits) {
|
2018-12-07 16:17:45 +08:00
|
|
|
hits.forEach(hit => {
|
2018-11-28 15:00:03 +08:00
|
|
|
hit.url = hit.url.replace('ant.design', window.location.host); // eslint-disable-line
|
|
|
|
hit.url = hit.url.replace('https:', window.location.protocol); // eslint-disable-line
|
2018-01-09 19:38:27 +08:00
|
|
|
});
|
|
|
|
return hits;
|
|
|
|
},
|
2017-12-29 12:02:22 +08:00
|
|
|
debug: false, // Set debug to true if you want to inspect the dropdown
|
|
|
|
});
|
|
|
|
}
|
2016-02-29 14:08:40 +08:00
|
|
|
|
2019-08-08 12:35:48 +08:00
|
|
|
class Header extends React.Component {
|
2016-03-30 17:41:17 +08:00
|
|
|
static contextTypes = {
|
2016-11-21 14:39:15 +08:00
|
|
|
router: PropTypes.object.isRequired,
|
2018-01-05 17:23:59 +08:00
|
|
|
isMobile: PropTypes.bool.isRequired,
|
2019-12-23 14:49:45 +08:00
|
|
|
theme: PropTypes.oneOf(['default', 'dark']),
|
2020-01-02 19:10:16 +08:00
|
|
|
direction: PropTypes.string,
|
2018-12-07 16:17:45 +08:00
|
|
|
};
|
2016-03-30 17:41:17 +08:00
|
|
|
|
2016-11-21 14:39:15 +08:00
|
|
|
state = {
|
2017-01-08 19:16:13 +08:00
|
|
|
menuVisible: false,
|
2016-11-21 14:39:15 +08:00
|
|
|
};
|
2016-05-09 11:34:45 +08:00
|
|
|
|
|
|
|
componentDidMount() {
|
2019-08-08 12:35:48 +08:00
|
|
|
const { intl } = this.props;
|
|
|
|
const { router } = this.context;
|
2017-12-29 12:02:22 +08:00
|
|
|
router.listen(this.handleHideMenu);
|
2017-10-09 13:23:20 +08:00
|
|
|
const { searchInput } = this;
|
2018-12-07 16:17:45 +08:00
|
|
|
document.addEventListener('keyup', event => {
|
2017-08-31 11:47:53 +08:00
|
|
|
if (event.keyCode === 83 && event.target === document.body) {
|
|
|
|
searchInput.focus();
|
|
|
|
}
|
|
|
|
});
|
2017-12-29 12:02:22 +08:00
|
|
|
initDocSearch(intl.locale);
|
2016-03-24 17:13:19 +08:00
|
|
|
}
|
|
|
|
|
2017-01-08 19:16:13 +08:00
|
|
|
handleShowMenu = () => {
|
|
|
|
this.setState({
|
|
|
|
menuVisible: true,
|
|
|
|
});
|
2018-12-07 16:17:45 +08:00
|
|
|
};
|
2017-01-08 19:16:13 +08:00
|
|
|
|
|
|
|
handleHideMenu = () => {
|
|
|
|
this.setState({
|
|
|
|
menuVisible: false,
|
|
|
|
});
|
2018-12-07 16:17:45 +08:00
|
|
|
};
|
2016-02-29 14:08:40 +08:00
|
|
|
|
2020-01-02 19:10:16 +08:00
|
|
|
handleDirectionChange = () => {
|
|
|
|
const { changeDirection } = this.props;
|
|
|
|
const { direction } = this.context;
|
|
|
|
if (direction !== 'rtl') {
|
|
|
|
changeDirection('rtl');
|
|
|
|
} else {
|
|
|
|
changeDirection('ltr');
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
getNextDirectionText = () => {
|
|
|
|
const { direction } = this.context;
|
|
|
|
|
|
|
|
if (direction !== 'rtl') {
|
|
|
|
return 'RTL';
|
|
|
|
}
|
|
|
|
return 'LTR';
|
|
|
|
};
|
|
|
|
|
2018-12-07 16:17:45 +08:00
|
|
|
onMenuVisibleChange = visible => {
|
2017-02-21 13:36:17 +08:00
|
|
|
this.setState({
|
|
|
|
menuVisible: visible,
|
|
|
|
});
|
2018-12-07 16:17:45 +08:00
|
|
|
};
|
2017-02-21 13:36:17 +08:00
|
|
|
|
2018-12-07 16:17:45 +08:00
|
|
|
handleVersionChange = url => {
|
2017-02-09 19:46:23 +08:00
|
|
|
const currentUrl = window.location.href;
|
|
|
|
const currentPathname = window.location.pathname;
|
2018-12-07 16:17:45 +08:00
|
|
|
window.location.href = currentUrl
|
|
|
|
.replace(window.location.origin, url)
|
2017-02-09 19:46:23 +08:00
|
|
|
.replace(currentPathname, utils.getLocalizedPathname(currentPathname));
|
2018-12-07 16:17:45 +08:00
|
|
|
};
|
2017-02-09 19:46:23 +08:00
|
|
|
|
2017-12-01 20:37:14 +08:00
|
|
|
handleLangChange = () => {
|
2018-12-07 16:17:45 +08:00
|
|
|
const {
|
|
|
|
location: { pathname },
|
|
|
|
} = this.props;
|
2017-12-01 20:37:14 +08:00
|
|
|
const currentProtocol = `${window.location.protocol}//`;
|
|
|
|
const currentHref = window.location.href.substr(currentProtocol.length);
|
|
|
|
|
|
|
|
if (utils.isLocalStorageNameSupported()) {
|
|
|
|
localStorage.setItem('locale', utils.isZhCN(pathname) ? 'en-US' : 'zh-CN');
|
|
|
|
}
|
|
|
|
|
2018-12-07 16:17:45 +08:00
|
|
|
window.location.href =
|
|
|
|
currentProtocol +
|
|
|
|
currentHref.replace(
|
|
|
|
window.location.pathname,
|
|
|
|
utils.getLocalizedPathname(pathname, !utils.isZhCN(pathname)),
|
|
|
|
);
|
|
|
|
};
|
2017-12-01 20:37:14 +08:00
|
|
|
|
2016-03-01 16:20:32 +08:00
|
|
|
render() {
|
2018-01-04 20:00:38 +08:00
|
|
|
const { menuVisible } = this.state;
|
2019-12-23 16:30:32 +08:00
|
|
|
const { isMobile } = this.context;
|
2018-01-05 17:23:59 +08:00
|
|
|
const menuMode = isMobile ? 'inline' : 'horizontal';
|
2019-08-12 13:34:23 +08:00
|
|
|
const {
|
|
|
|
location,
|
|
|
|
themeConfig,
|
|
|
|
intl: { locale },
|
|
|
|
} = this.props;
|
2017-02-09 19:46:23 +08:00
|
|
|
const docVersions = { ...themeConfig.docVersions, [antdVersion]: antdVersion };
|
2018-12-07 16:17:45 +08:00
|
|
|
const versionOptions = Object.keys(docVersions).map(version => (
|
|
|
|
<Option value={docVersions[version]} key={version}>
|
|
|
|
{version}
|
|
|
|
</Option>
|
|
|
|
));
|
2019-12-26 15:27:52 +08:00
|
|
|
|
|
|
|
const pathname = location.pathname.replace(/(^\/|\/$)/g, '');
|
|
|
|
const module = pathname
|
2018-12-07 16:17:45 +08:00
|
|
|
.split('/')
|
|
|
|
.slice(0, -1)
|
|
|
|
.join('/');
|
2016-07-26 15:24:48 +08:00
|
|
|
let activeMenuItem = module || 'home';
|
2020-01-13 13:45:05 +08:00
|
|
|
if (location.pathname === 'changelog' || location.pathname === 'changelog-cn') {
|
2016-06-15 15:55:39 +08:00
|
|
|
activeMenuItem = 'docs/react';
|
|
|
|
}
|
2019-12-26 15:27:52 +08:00
|
|
|
|
|
|
|
const isHome = ['', 'index', 'index-cn'].includes(pathname);
|
|
|
|
|
2016-12-09 13:02:16 +08:00
|
|
|
const isZhCN = locale === 'zh-CN';
|
2017-08-31 11:47:53 +08:00
|
|
|
|
2016-04-28 15:42:02 +08:00
|
|
|
const headerClassName = classNames({
|
|
|
|
clearfix: true,
|
2019-12-26 15:27:52 +08:00
|
|
|
'home-header': isHome,
|
2016-04-28 15:42:02 +08:00
|
|
|
});
|
|
|
|
|
2016-09-26 12:12:44 +08:00
|
|
|
const menu = [
|
2019-12-26 15:27:52 +08:00
|
|
|
isHome ? (
|
|
|
|
<GitHubButton key="github" type="stargazers" namespace="ant-design" repo="ant-design" />
|
|
|
|
) : null,
|
2018-12-07 16:17:45 +08:00
|
|
|
<Button
|
2020-01-02 19:10:16 +08:00
|
|
|
size="small"
|
|
|
|
onClick={this.handleDirectionChange}
|
|
|
|
className="header-direction-button"
|
|
|
|
key="direction-button"
|
|
|
|
>
|
|
|
|
{this.getNextDirectionText()}
|
|
|
|
</Button>,
|
|
|
|
<Button
|
2018-12-07 16:17:45 +08:00
|
|
|
size="small"
|
|
|
|
onClick={this.handleLangChange}
|
|
|
|
className="header-lang-button"
|
|
|
|
key="lang-button"
|
|
|
|
>
|
2017-12-01 20:27:44 +08:00
|
|
|
<FormattedMessage id="app.header.lang" />
|
|
|
|
</Button>,
|
2017-02-09 19:46:23 +08:00
|
|
|
<Select
|
|
|
|
key="version"
|
|
|
|
className="version"
|
|
|
|
size="small"
|
|
|
|
dropdownMatchSelectWidth={false}
|
|
|
|
defaultValue={antdVersion}
|
|
|
|
onChange={this.handleVersionChange}
|
2017-08-14 22:57:31 +08:00
|
|
|
getPopupContainer={trigger => trigger.parentNode}
|
2017-02-09 19:46:23 +08:00
|
|
|
>
|
|
|
|
{versionOptions}
|
|
|
|
</Select>,
|
2018-12-07 16:17:45 +08:00
|
|
|
<Menu
|
|
|
|
className="menu-site"
|
|
|
|
mode={menuMode}
|
|
|
|
selectedKeys={[activeMenuItem]}
|
|
|
|
id="nav"
|
|
|
|
key="nav"
|
|
|
|
>
|
2019-12-26 15:27:52 +08:00
|
|
|
{isHome ? null : (
|
|
|
|
<Menu.Item key="home" className="hide-in-home-page">
|
|
|
|
<Link to={utils.getLocalizedPathname('/', isZhCN)}>
|
|
|
|
<FormattedMessage id="app.header.menu.home" />
|
|
|
|
</Link>
|
|
|
|
</Menu.Item>
|
|
|
|
)}
|
2016-10-07 14:33:08 +08:00
|
|
|
<Menu.Item key="docs/spec">
|
2016-12-09 13:02:16 +08:00
|
|
|
<Link to={utils.getLocalizedPathname('/docs/spec/introduce', isZhCN)}>
|
2016-10-07 14:33:08 +08:00
|
|
|
<FormattedMessage id="app.header.menu.spec" />
|
2016-09-26 12:12:44 +08:00
|
|
|
</Link>
|
|
|
|
</Menu.Item>
|
|
|
|
<Menu.Item key="docs/react">
|
2016-12-09 13:02:16 +08:00
|
|
|
<Link to={utils.getLocalizedPathname('/docs/react/introduce', isZhCN)}>
|
2019-12-19 14:47:12 +08:00
|
|
|
<FormattedMessage id="app.header.menu.documentation" />
|
|
|
|
</Link>
|
|
|
|
</Menu.Item>
|
|
|
|
<Menu.Item key="components">
|
|
|
|
<Link to={utils.getLocalizedPathname('/components/button/', isZhCN)}>
|
2016-09-26 12:12:44 +08:00
|
|
|
<FormattedMessage id="app.header.menu.components" />
|
|
|
|
</Link>
|
|
|
|
</Menu.Item>
|
2019-03-11 11:19:43 +08:00
|
|
|
<Menu.SubMenu
|
|
|
|
key="ecosystem"
|
|
|
|
className="hide-in-home-page"
|
2019-12-31 14:52:53 +08:00
|
|
|
title={<FormattedMessage id="app.header.menu.ecosystem" />}
|
2019-03-11 11:19:43 +08:00
|
|
|
>
|
|
|
|
<Menu.Item key="pro">
|
|
|
|
<a
|
|
|
|
href="http://pro.ant.design"
|
|
|
|
className="header-link"
|
|
|
|
target="_blank"
|
|
|
|
rel="noopener noreferrer"
|
|
|
|
>
|
2019-12-31 14:52:53 +08:00
|
|
|
<FormattedMessage id="app.header.menu.pro.v4" />
|
2019-03-11 11:19:43 +08:00
|
|
|
</a>
|
|
|
|
</Menu.Item>
|
|
|
|
<Menu.Item key="ng">
|
|
|
|
<a
|
|
|
|
href="http://ng.ant.design"
|
|
|
|
className="header-link"
|
|
|
|
target="_blank"
|
|
|
|
rel="noopener noreferrer"
|
|
|
|
>
|
|
|
|
Ant Design of Angular
|
|
|
|
</a>
|
|
|
|
</Menu.Item>
|
|
|
|
<Menu.Item key="vue">
|
2018-09-12 11:46:40 +08:00
|
|
|
<a
|
2019-03-11 11:19:43 +08:00
|
|
|
href="http://vue.ant.design"
|
2018-09-12 11:46:40 +08:00
|
|
|
className="header-link"
|
|
|
|
target="_blank"
|
|
|
|
rel="noopener noreferrer"
|
|
|
|
>
|
2019-03-11 11:19:43 +08:00
|
|
|
Ant Design of Vue
|
2018-09-12 11:46:40 +08:00
|
|
|
</a>
|
2018-09-12 11:52:59 +08:00
|
|
|
</Menu.Item>
|
2019-03-11 11:19:43 +08:00
|
|
|
{isZhCN ? (
|
|
|
|
<Menu.Item key="course" className="hide-in-home-page">
|
|
|
|
<a
|
|
|
|
href="https://www.yuque.com/ant-design/course"
|
|
|
|
className="header-link"
|
|
|
|
target="_blank"
|
|
|
|
rel="noopener noreferrer"
|
|
|
|
>
|
2019-03-13 11:58:36 +08:00
|
|
|
Ant Design 实战教程
|
2019-03-11 11:19:43 +08:00
|
|
|
</a>
|
|
|
|
</Menu.Item>
|
|
|
|
) : null}
|
|
|
|
</Menu.SubMenu>
|
2016-09-26 12:12:44 +08:00
|
|
|
</Menu>,
|
|
|
|
];
|
|
|
|
|
2019-12-28 11:57:41 +08:00
|
|
|
const colProps = isHome
|
|
|
|
? [{ flex: 'none' }, { flex: 'auto' }]
|
|
|
|
: [
|
|
|
|
{
|
|
|
|
xxl: 4,
|
|
|
|
xl: 5,
|
|
|
|
lg: 5,
|
|
|
|
md: 5,
|
|
|
|
sm: 24,
|
|
|
|
xs: 24,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
xxl: 20,
|
|
|
|
xl: 19,
|
|
|
|
lg: 19,
|
|
|
|
md: 19,
|
|
|
|
sm: 0,
|
|
|
|
xs: 0,
|
|
|
|
},
|
|
|
|
];
|
|
|
|
|
2018-01-12 15:00:03 +08:00
|
|
|
const searchPlaceholder = locale === 'zh-CN' ? '在 ant.design 中搜索' : 'Search in ant.design';
|
2016-03-01 16:20:32 +08:00
|
|
|
return (
|
2016-04-28 15:42:02 +08:00
|
|
|
<header id="header" className={headerClassName}>
|
2018-01-05 17:23:59 +08:00
|
|
|
{isMobile && (
|
2017-10-09 13:23:20 +08:00
|
|
|
<Popover
|
|
|
|
overlayClassName="popover-menu"
|
|
|
|
placement="bottomRight"
|
|
|
|
content={menu}
|
|
|
|
trigger="click"
|
|
|
|
visible={menuVisible}
|
|
|
|
arrowPointAtCenter
|
|
|
|
onVisibleChange={this.onMenuVisibleChange}
|
|
|
|
>
|
2019-12-26 15:27:52 +08:00
|
|
|
<MenuOutlined className="nav-phone-icon" onClick={this.handleShowMenu} />
|
2017-10-09 13:23:20 +08:00
|
|
|
</Popover>
|
2018-01-04 20:00:38 +08:00
|
|
|
)}
|
2016-03-01 16:33:19 +08:00
|
|
|
<Row>
|
2019-12-28 11:57:41 +08:00
|
|
|
<Col {...colProps[0]}>
|
2019-12-27 14:10:55 +08:00
|
|
|
<h1>
|
|
|
|
<Link to={utils.getLocalizedPathname('/', isZhCN)} id="logo">
|
|
|
|
<img
|
|
|
|
alt="logo"
|
|
|
|
src="https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg"
|
|
|
|
/>
|
|
|
|
Ant Design
|
|
|
|
</Link>
|
|
|
|
</h1>
|
2016-03-01 16:33:19 +08:00
|
|
|
</Col>
|
2019-12-28 11:57:41 +08:00
|
|
|
<Col {...colProps[1]}>
|
2016-03-01 16:33:19 +08:00
|
|
|
<div id="search-box">
|
2019-12-26 15:27:52 +08:00
|
|
|
<SearchOutlined />
|
2018-12-07 16:17:45 +08:00
|
|
|
<Input
|
|
|
|
ref={ref => {
|
|
|
|
this.searchInput = ref;
|
|
|
|
}}
|
|
|
|
placeholder={searchPlaceholder}
|
|
|
|
/>
|
2016-03-01 16:33:19 +08:00
|
|
|
</div>
|
2018-01-08 10:18:13 +08:00
|
|
|
{!isMobile && menu}
|
2016-03-01 16:33:19 +08:00
|
|
|
</Col>
|
|
|
|
</Row>
|
2016-03-01 16:20:32 +08:00
|
|
|
</header>
|
|
|
|
);
|
|
|
|
}
|
2016-02-29 14:08:40 +08:00
|
|
|
}
|
2019-08-08 12:35:48 +08:00
|
|
|
|
|
|
|
export default injectIntl(Header);
|