import React, { PropTypes } from 'react'; 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: 320px) and (max-width: 1024px)', { 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') }); }); } handleInputChange = (value) => { this.setState({ inputValue: value, }); } handleShowMenu = () => { this.setState({ menuVisible: true, }); } handleHideMenu = () => { this.setState({ menuVisible: false, }); } handleSelectFilter = (value, option) => { const optionValue = option.props['data-label']; return optionValue === searchEngine || optionValue.indexOf(value.toLowerCase()) > -1; } handleLangChange = () => { const pathname = this.props.location.pathname; if (window.localStorage) { localStorage.setItem('locale', utils.isZhCN(pathname) ? 'en-US' : 'zh-CN'); } if (pathname === '/') { location.pathname = utils.getLocalizedPathname(pathname, !utils.isZhCN(pathname)); } else { location.href = location.href.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 => ); 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 ( ); }); const headerClassName = classNames({ clearfix: true, 'home-nav-white': !isFirstScreen, }); const menu = [ , ,
, ]; const searchPlaceholder = locale === 'zh-CN' ? '搜索组件...' : 'Search Components...'; return (