ant-design/site/theme/template/Content/MainContent.jsx

227 lines
7.0 KiB
React
Raw Normal View History

2016-09-19 11:23:41 +08:00
import React, { PropTypes } from 'react';
2016-02-29 14:08:40 +08:00
import { Link } from 'react-router';
2016-04-11 10:12:48 +08:00
import { Row, Col, Menu } from 'antd';
import Article from './Article';
import ComponentDoc from './ComponentDoc';
import * as utils from '../utils';
import config from '../../';
2016-08-23 21:00:35 +08:00
2016-03-03 11:12:46 +08:00
const SubMenu = Menu.SubMenu;
2016-02-29 14:08:40 +08:00
function getActiveMenuItem(props) {
return props.params.children || props.location.pathname.replace(/^\//, '');
}
function fileNameToPath(filename) {
const snippets = filename.replace(/(\/index)?((\.zh-CN)|(\.en-US))?\.md$/i, '').split('/');
return snippets[snippets.length - 1];
}
function isNotTopLevel(level) {
return level !== 'topLevel';
}
2016-03-02 11:57:37 +08:00
export default class MainContent extends React.Component {
static contextTypes = {
2016-09-19 11:23:41 +08:00
intl: PropTypes.object.isRequired,
}
constructor(props) {
super(props);
this.state = { openKeys: [] };
}
2016-03-07 17:33:38 +08:00
componentDidMount() {
2016-09-19 11:23:41 +08:00
this.componentWillReceiveProps(this.props);
2016-07-26 17:40:08 +08:00
this.componentDidUpdate();
}
2016-09-19 11:23:41 +08:00
componentWillReceiveProps(nextProps) {
const prevModule = this.currentModule;
this.currentModule = location.pathname.split('/')[2] || 'components';
if (this.currentModule === 'react') {
this.currentModule = 'components';
}
if (prevModule !== this.currentModule) {
const moduleData = this.getModuleData(nextProps);
const shouldOpenKeys = Object.keys(utils.getMenuItems(
moduleData, this.context.intl.locale
));
2016-09-19 11:23:41 +08:00
this.setState({ openKeys: shouldOpenKeys });
}
}
2016-07-26 17:40:08 +08:00
componentDidUpdate() {
2016-06-15 11:57:26 +08:00
if (!location.hash) {
2016-06-24 11:29:15 +08:00
document.body.scrollTop = 0;
2016-06-15 11:57:26 +08:00
document.documentElement.scrollTop = 0;
2016-07-26 18:35:38 +08:00
} else {
if (this.timer) {
clearTimeout(this.timer);
}
this.timer = setTimeout(() => {
document.getElementById(decodeURI(location.hash.replace('#', ''))).scrollIntoView();
}, 10);
2016-06-15 11:57:26 +08:00
}
2016-03-07 17:33:38 +08:00
}
2016-03-03 11:12:46 +08:00
2016-07-13 16:06:07 +08:00
componentWillUnmount() {
clearTimeout(this.timer);
}
2016-09-19 11:23:41 +08:00
handleMenuOpenChange = (openKeys) => {
this.setState({ openKeys });
2016-04-19 17:06:15 +08:00
}
2016-03-07 17:33:38 +08:00
generateMenuItem(isTop, item) {
2016-09-21 11:28:38 +08:00
const locale = this.context.intl.locale;
const key = fileNameToPath(item.filename);
2016-03-07 17:33:38 +08:00
const text = isTop ?
2016-09-21 11:28:38 +08:00
item.title[locale] || item.title : [
<span key="english">{item.title}</span>,
<span className="chinese" key="chinese">{item.subtitle}</span>,
2016-04-22 14:53:33 +08:00
];
2016-03-31 15:22:38 +08:00
const disabled = item.disabled;
2016-06-03 15:51:44 +08:00
const url = item.filename.replace(/(\/index)?((\.zh-CN)|(\.en-US))?\.md$/i, '').toLowerCase();
2016-11-15 15:10:01 +08:00
const child = !item.link ? (
2016-10-18 12:04:09 +08:00
<Link to={{ query: this.props.location.query, pathname: /^components/.test(url) ? `${url}/` : url }} disabled={disabled}>
{text}
2016-11-15 15:10:01 +08:00
</Link>
) : (
2016-08-23 21:00:35 +08:00
<a href={item.link} target="_blank" rel="noopener noreferrer" disabled={disabled}>
{text}
2016-11-15 15:10:01 +08:00
</a>
);
2016-03-03 11:12:46 +08:00
return (
2016-05-06 11:06:26 +08:00
<Menu.Item key={key.toLowerCase()} disabled={disabled}>
{child}
2016-03-03 11:12:46 +08:00
</Menu.Item>
);
}
2016-03-07 11:35:23 +08:00
generateSubMenuItems(obj) {
2016-03-07 17:33:38 +08:00
const topLevel = (obj.topLevel || []).map(this.generateMenuItem.bind(this, true));
const itemGroups = Object.keys(obj).filter(isNotTopLevel)
2016-06-15 15:55:39 +08:00
.sort((a, b) => config.typeOrder[a] - config.typeOrder[b])
.map((type, index) => {
const groupItems = obj[type].sort((a, b) => {
2016-09-21 11:28:38 +08:00
return a.title.charCodeAt(0) -
b.title.charCodeAt(0);
2016-06-15 15:55:39 +08:00
}).map(this.generateMenuItem.bind(this, false));
return (
<Menu.ItemGroup title={type} key={index}>
{groupItems}
</Menu.ItemGroup>
);
});
2016-03-07 11:35:23 +08:00
return [...topLevel, ...itemGroups];
}
2016-09-19 11:23:41 +08:00
getModuleData(props) {
2016-08-04 10:52:09 +08:00
const pathname = props.location.pathname;
const moduleName = /^\/?components/.test(pathname) ?
'components' : pathname.split('/').filter(item => item).slice(0, 2).join('/');
2016-09-08 16:53:50 +08:00
const moduleData = moduleName === 'components' || moduleName === 'changelog' || moduleName === 'docs/react' ?
[...props.picked.components, ...props.picked['docs/react'], ...props.picked.changelog] :
props.picked[moduleName];
const locale = this.context.intl.locale;
const excludedSuffix = locale === 'zh-CN' ? 'en-US.md' : 'zh-CN.md';
return moduleData.filter(({ meta }) => !meta.filename.endsWith(excludedSuffix));
2016-08-04 10:52:09 +08:00
}
getMenuItems() {
2016-09-19 11:23:41 +08:00
const moduleData = this.getModuleData(this.props);
const menuItems = utils.getMenuItems(
moduleData, this.context.intl.locale
);
2016-03-07 11:35:23 +08:00
const topLevel = this.generateSubMenuItems(menuItems.topLevel);
const subMenu = Object.keys(menuItems).filter(isNotTopLevel)
2016-06-15 15:55:39 +08:00
.sort((a, b) => config.categoryOrder[a] - config.categoryOrder[b])
.map((category) => {
const subMenuItems = this.generateSubMenuItems(menuItems[category]);
return (
<SubMenu title={<h4>{category}</h4>} key={category}>
{subMenuItems}
</SubMenu>
);
});
2016-03-03 11:12:46 +08:00
return [...topLevel, ...subMenu];
2016-03-01 17:05:24 +08:00
}
2016-03-07 10:32:14 +08:00
flattenMenu(menu) {
if (menu.type === Menu.Item) {
return menu;
}
if (Array.isArray(menu)) {
return menu.reduce((acc, item) => acc.concat(this.flattenMenu(item)), []);
2016-03-07 10:32:14 +08:00
}
return this.flattenMenu(menu.props.children);
}
getFooterNav(menuItems, activeMenuItem) {
const menuItemsList = this.flattenMenu(menuItems);
2016-03-30 22:51:30 +08:00
let activeMenuItemIndex = -1;
menuItemsList.forEach((menuItem, i) => {
if (menuItem.key === activeMenuItem) {
activeMenuItemIndex = i;
}
2016-03-07 10:32:14 +08:00
});
const prev = menuItemsList[activeMenuItemIndex - 1];
const next = menuItemsList[activeMenuItemIndex + 1];
return { prev, next };
}
2016-02-29 14:08:40 +08:00
render() {
const props = this.props;
const activeMenuItem = getActiveMenuItem(props);
2016-03-01 17:05:24 +08:00
const menuItems = this.getMenuItems();
2016-03-07 10:32:14 +08:00
const { prev, next } = this.getFooterNav(menuItems, activeMenuItem);
2016-08-04 10:52:09 +08:00
const localizedPageData = props.localizedPageData;
2016-02-29 14:08:40 +08:00
return (
2016-03-07 14:22:30 +08:00
<div className="main-wrapper">
<Row>
2016-03-24 17:13:19 +08:00
<Col lg={4} md={6} sm={24} xs={24}>
<Menu className="aside-container" mode="inline"
2016-09-19 11:23:41 +08:00
openKeys={this.state.openKeys}
selectedKeys={[activeMenuItem]}
2016-09-19 11:23:41 +08:00
onOpenChange={this.handleMenuOpenChange}
>
{menuItems}
2016-03-07 14:22:30 +08:00
</Menu>
</Col>
2016-03-24 17:13:19 +08:00
<Col lg={20} md={18} sm={24} xs={24} className="main-container">
{
2016-06-09 15:00:44 +08:00
props.utils.get(props, 'pageData.demo') ?
<ComponentDoc {...props} doc={localizedPageData} demos={props.demos} /> :
<Article {...props} content={localizedPageData} />
}
2016-03-07 14:22:30 +08:00
</Col>
</Row>
<Row>
2016-03-24 17:13:19 +08:00
<Col lg={{ span: 20, offset: 4 }}
md={{ span: 18, offset: 6 }}
sm={24} xs={24}
>
2016-03-07 14:22:30 +08:00
<section className="prev-next-nav">
{
2016-08-23 21:00:35 +08:00
prev ?
2016-03-07 14:22:30 +08:00
React.cloneElement(prev.props.children, { className: 'prev-page' }) :
null
}
{
2016-08-23 21:00:35 +08:00
next ?
2016-03-07 14:22:30 +08:00
React.cloneElement(next.props.children, { className: 'next-page' }) :
null
}
</section>
</Col>
</Row>
</div>
2016-02-29 14:08:40 +08:00
);
}
}