ant-design/site/theme/template/Layout/Header.jsx

302 lines
8.7 KiB
React
Raw Normal View History

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';
use ant design icons 4.0 (#18217) * feat: use @ant-design/icons@4.0 * feat: use createFromIconfontCN to make site works * feat: update doc for Icon * feat: use icon in component Alert * feat: use icon in component Avatar * feat: use icon in component Breadcrumb * feat: use icon in component Button * feat: use icon in component Cascader * feat: use icon in component Collapse * feat: use icon in component Datepicker * feat: use icon in component Dropdown * feat: use icon in component Form * feat: use icon in component Input * feat: use icon in component InputNumber * feat: use icon in component Layout * feat: use icon in component Mention * feat: use icon in component Message * feat: use icon in component Modal * feat: use icon in component Notification * feat: use icon in component PageHeader * feat: use icon in component Pagination * feat: use icon in component Popconfirm * feat: use icon in component Progress * feat: use icon in component Rate * feat: use icon in component Result * feat: use icon in component Select * feat: use icon in component Step * feat: use icon in component Switch * feat: use icon in component Table * feat: use icon in component Tab * feat: use icon in component Tag * feat: handle rest component which using Icon * fix: remove unused vars * feat: use latest alpha ant design icons * fix: failed test in uploadlist.test.js * test: update snapshot for icons * doc: add Icon for site * doc: use @ant-design/icons in site * chore: use latest icons * fix: tslint issue * fix: test cases * fix: types for react * fix: lint rules for import orders * fix: use @ant-design/icons@4.0.0-alpha.5 to avoid insert css in server render * fix: eslint error in demo/**.md * inject antd icons * update snapshot * fix site * doc: update docs * fix: code snippets icon in site * feat: use latest @ant-design/icons * fix: icon props in message
2019-08-13 14:07:17 +08:00
import { Select, Menu, Row, Col, Popover, Input, Button, Badge } from 'antd';
import * as utils from '../utils';
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 {
static contextTypes = {
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']),
2018-12-07 16:17:45 +08:00
};
state = {
menuVisible: false,
};
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 => {
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
}
handleShowMenu = () => {
this.setState({
menuVisible: true,
});
2018-12-07 16:17:45 +08:00
};
handleHideMenu = () => {
this.setState({
menuVisible: false,
});
2018-12-07 16:17:45 +08:00
};
2016-02-29 14:08:40 +08:00
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 => {
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)
.replace(currentPathname, utils.getLocalizedPathname(currentPathname));
2018-12-07 16:17:45 +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;
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';
if (location.pathname === 'changelog') {
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);
const isZhCN = locale === 'zh-CN';
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
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>,
<Select
key="version"
className="version"
size="small"
style={{ width: 110 }}
dropdownMatchSelectWidth={false}
defaultValue={antdVersion}
onChange={this.handleVersionChange}
getPopupContainer={trigger => trigger.parentNode}
>
{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">
<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">
<Link to={utils.getLocalizedPathname('/docs/react/introduce', isZhCN)}>
<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-05-31 10:48:00 +08:00
title={
<Badge dot>
<FormattedMessage id="app.header.menu.ecosystem" />
</Badge>
}
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-05-31 10:48:00 +08:00
<Badge dot>
<FormattedMessage id="app.header.menu.pro.v4" />
</Badge>
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>,
];
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>
2018-11-05 11:59:15 +08:00
<Col xxl={4} xl={5} lg={5} md={5} sm={24} xs={24}>
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>
2018-11-05 11:59:15 +08:00
<Col xxl={20} xl={19} lg={19} md={19} sm={0} xs={0}>
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>
{!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);