mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 03:29:59 +08:00
919cb22eb7
* Use the prop-types package from npm instead of React.PropTypes * Remove using of PropTypes from React in docs and site
238 lines
7.8 KiB
JavaScript
238 lines
7.8 KiB
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { Link } from 'bisheng/router';
|
|
import { FormattedMessage } from 'react-intl';
|
|
import classNames from 'classnames';
|
|
import { Select, Menu, Row, Col, Icon, Button, Popover } from 'antd';
|
|
import * as utils from '../utils';
|
|
import { version as antdVersion } from '../../../../package.json';
|
|
|
|
const Option = Select.Option;
|
|
const searchEngine = 'Google';
|
|
const searchLink = 'https://www.google.com/#q=site:ant.design+';
|
|
|
|
export default class Header extends React.Component {
|
|
static contextTypes = {
|
|
router: PropTypes.object.isRequired,
|
|
intl: PropTypes.object.isRequired,
|
|
}
|
|
|
|
state = {
|
|
inputValue: '',
|
|
menuVisible: false,
|
|
menuMode: 'horizontal',
|
|
};
|
|
|
|
componentDidMount() {
|
|
this.context.router.listen(this.handleHideMenu);
|
|
|
|
/* eslint-disable global-require */
|
|
require('enquire.js')
|
|
.register('only screen and (min-width: 0) and (max-width: 992px)', {
|
|
match: () => {
|
|
this.setState({ menuMode: 'inline' });
|
|
},
|
|
unmatch: () => {
|
|
this.setState({ menuMode: 'horizontal' });
|
|
},
|
|
});
|
|
/* eslint-enable global-require */
|
|
}
|
|
|
|
handleSearch = (value) => {
|
|
if (value === searchEngine) {
|
|
window.location.href = `${searchLink}${this.state.inputValue}`;
|
|
return;
|
|
}
|
|
|
|
const { intl, router } = this.context;
|
|
this.setState({
|
|
inputValue: '',
|
|
}, () => {
|
|
router.push({ pathname: utils.getLocalizedPathname(`${value}/`, intl.locale === 'zh-CN') });
|
|
document.querySelector('#search-box .ant-select-search__field').blur();
|
|
});
|
|
}
|
|
|
|
handleInputChange = (value) => {
|
|
this.setState({
|
|
inputValue: value,
|
|
});
|
|
}
|
|
|
|
handleShowMenu = () => {
|
|
this.setState({
|
|
menuVisible: true,
|
|
});
|
|
}
|
|
|
|
handleHideMenu = () => {
|
|
this.setState({
|
|
menuVisible: false,
|
|
});
|
|
}
|
|
|
|
onMenuVisibleChange = (visible) => {
|
|
this.setState({
|
|
menuVisible: visible,
|
|
});
|
|
}
|
|
|
|
handleSelectFilter = (value, option) => {
|
|
const optionValue = option.props['data-label'];
|
|
return optionValue === searchEngine ||
|
|
optionValue.indexOf(value.toLowerCase()) > -1;
|
|
}
|
|
|
|
handleLangChange = () => {
|
|
const pathname = this.props.location.pathname;
|
|
const currentProtocol = `${location.protocol}//`;
|
|
const currentHref = location.href.substr(currentProtocol.length);
|
|
|
|
if (utils.isLocalStorageNameSupported()) {
|
|
localStorage.setItem('locale', utils.isZhCN(pathname) ? 'en-US' : 'zh-CN');
|
|
}
|
|
|
|
location.href = currentProtocol + currentHref.replace(
|
|
location.pathname,
|
|
utils.getLocalizedPathname(pathname, !utils.isZhCN(pathname)),
|
|
);
|
|
}
|
|
|
|
handleVersionChange = (url) => {
|
|
const currentUrl = window.location.href;
|
|
const currentPathname = window.location.pathname;
|
|
window.location.href = currentUrl.replace(window.location.origin, url)
|
|
.replace(currentPathname, utils.getLocalizedPathname(currentPathname));
|
|
}
|
|
|
|
render() {
|
|
const { inputValue, menuMode, menuVisible } = this.state;
|
|
const { location, picked, isFirstScreen, themeConfig } = this.props;
|
|
const docVersions = { ...themeConfig.docVersions, [antdVersion]: antdVersion };
|
|
const versionOptions = Object.keys(docVersions)
|
|
.map(version => <Option value={docVersions[version]} key={version}>{version}</Option>);
|
|
const components = picked.components;
|
|
const module = location.pathname.replace(/(^\/|\/$)/g, '').split('/').slice(0, -1).join('/');
|
|
let activeMenuItem = module || 'home';
|
|
if (activeMenuItem === 'components' || location.pathname === 'changelog') {
|
|
activeMenuItem = 'docs/react';
|
|
}
|
|
|
|
const locale = this.context.intl.locale;
|
|
const isZhCN = locale === 'zh-CN';
|
|
const excludedSuffix = isZhCN ? 'en-US.md' : 'zh-CN.md';
|
|
const options = components
|
|
.filter(({ meta }) => !meta.filename.endsWith(excludedSuffix))
|
|
.map(({ meta }) => {
|
|
const pathSnippet = meta.filename.split('/')[1];
|
|
const url = `/components/${pathSnippet}`;
|
|
const subtitle = meta.subtitle;
|
|
return (
|
|
<Option value={url} key={url} data-label={`${meta.title.toLowerCase()} ${subtitle || ''}`}>
|
|
<strong>{meta.title}</strong>
|
|
{subtitle && <span className="ant-component-decs">{subtitle}</span>}
|
|
</Option>
|
|
);
|
|
});
|
|
|
|
const headerClassName = classNames({
|
|
clearfix: true,
|
|
'home-nav-white': !isFirstScreen,
|
|
});
|
|
|
|
const menu = [
|
|
<Button className="lang" type="ghost" size="small" onClick={this.handleLangChange} key="lang">
|
|
<FormattedMessage id="app.header.lang" />
|
|
</Button>,
|
|
<Select
|
|
key="version"
|
|
className="version"
|
|
size="small"
|
|
dropdownMatchSelectWidth={false}
|
|
defaultValue={antdVersion}
|
|
onChange={this.handleVersionChange}
|
|
>
|
|
{versionOptions}
|
|
</Select>,
|
|
<Menu mode={menuMode} selectedKeys={[activeMenuItem]} id="nav" key="nav">
|
|
<Menu.Item key="home">
|
|
<Link to={utils.getLocalizedPathname('/', isZhCN)}>
|
|
<FormattedMessage id="app.header.menu.home" />
|
|
</Link>
|
|
</Menu.Item>
|
|
<Menu.Item key="docs/spec">
|
|
<Link to={utils.getLocalizedPathname('/docs/spec/introduce', isZhCN)}>
|
|
<FormattedMessage id="app.header.menu.spec" />
|
|
</Link>
|
|
</Menu.Item>
|
|
<Menu.Item key="docs/react">
|
|
<Link to={utils.getLocalizedPathname('/docs/react/introduce', isZhCN)}>
|
|
<FormattedMessage id="app.header.menu.components" />
|
|
</Link>
|
|
</Menu.Item>
|
|
<Menu.Item key="docs/pattern">
|
|
<Link to={utils.getLocalizedPathname('/docs/pattern/navigation', isZhCN)}>
|
|
<FormattedMessage id="app.header.menu.pattern" />
|
|
</Link>
|
|
</Menu.Item>
|
|
<Menu.Item key="docs/resource">
|
|
<Link to={utils.getLocalizedPathname('/docs/resource/download', isZhCN)}>
|
|
<FormattedMessage id="app.header.menu.resource" />
|
|
</Link>
|
|
</Menu.Item>
|
|
</Menu>,
|
|
];
|
|
|
|
const searchPlaceholder = locale === 'zh-CN' ? '搜索组件...' : 'Search Components...';
|
|
return (
|
|
<header id="header" className={headerClassName}>
|
|
{menuMode === 'inline' ? <Popover
|
|
overlayClassName="popover-menu"
|
|
placement="bottomRight"
|
|
content={menu}
|
|
trigger="click"
|
|
visible={menuVisible}
|
|
arrowPointAtCenter
|
|
onVisibleChange={this.onMenuVisibleChange}
|
|
>
|
|
<Icon
|
|
className="nav-phone-icon"
|
|
type="menu"
|
|
onClick={this.handleShowMenu}
|
|
/>
|
|
</Popover> : null}
|
|
<Row>
|
|
<Col lg={4} md={5} sm={24} xs={24}>
|
|
<Link to={utils.getLocalizedPathname('/', isZhCN)} id="logo">
|
|
<img alt="logo" src="https://t.alipayobjects.com/images/rmsweb/T1B9hfXcdvXXXXXXXX.svg" />
|
|
<span>Ant Design</span>
|
|
</Link>
|
|
</Col>
|
|
<Col lg={20} md={19} sm={0} xs={0}>
|
|
<div id="search-box">
|
|
<Select
|
|
mode="combobox"
|
|
value={inputValue}
|
|
dropdownClassName="component-select"
|
|
placeholder={searchPlaceholder}
|
|
optionLabelProp="data-label"
|
|
filterOption={this.handleSelectFilter}
|
|
onSelect={this.handleSearch}
|
|
onSearch={this.handleInputChange}
|
|
getPopupContainer={trigger => trigger.parentNode}
|
|
>
|
|
<Option value={searchEngine} data-label={searchEngine}>
|
|
<FormattedMessage id="app.header.search" />
|
|
</Option>
|
|
{options}
|
|
</Select>
|
|
</div>
|
|
{menuMode === 'horizontal' ? menu : null}
|
|
</Col>
|
|
</Row>
|
|
</header>
|
|
);
|
|
}
|
|
}
|