import React from 'react'; import { Link } from 'react-router'; import scrollIntoView from 'dom-scroll-into-view'; import { Row, Col, Menu } from 'antd'; import config from '../../website.config'; const SubMenu = Menu.SubMenu; export default class MainContent extends React.Component { componentDidMount() { this.scrollToAnchor(this.props); } shouldComponentUpdate(nextProps) { this.scrollToAnchor(nextProps); const pathname = this.props.location.pathname; return pathname !== nextProps.location.pathname || /^\/components\//i.test(pathname); } scrollToAnchor(props) { const scrollTo = props.location.query.scrollTo; if (scrollTo !== undefined) { const target = document.getElementById(scrollTo); if (target !== null) { scrollIntoView( target, document, { alignWithTop: true, onlyScrollIfNeeded: false } ); } } else { scrollIntoView(document.body, document, { alignWithTop: true }); } } getActiveMenuItem(props) { return props.params.children; } fileNameToPath(fileName) { const snippets = fileName.replace(/(\/index)?((\.zh-CN)|(\.en-US))?\.md$/i, '').split('/'); return snippets[snippets.length - 1]; } generateMenuItem(isTop, item) { const key = this.fileNameToPath(item.fileName); const text = isTop ? item.chinese || item.english : [ {item.title || item.english}, {item.subtitle || item.chinese}, ]; const disabled = item.disabled; const url = item.fileName.replace(/(\/index)?((\.zh-CN)|(\.en-US))?\.md$/i, ''); const child = !item.link ? {text} : {text} ; return ( {child} ); } isNotTopLevel(level) { return level !== 'topLevel'; } generateSubMenuItems(obj) { const topLevel = (obj.topLevel || []).map(this.generateMenuItem.bind(this, true)); const itemGroups = Object.keys(obj).filter(this.isNotTopLevel) .sort((a, b) => { return config.typeOrder[a] - config.typeOrder[b]; }) .map((type, index) => { const groupItems = obj[type].sort((a, b) => { return (a.title || a.english).charCodeAt(0) - (b.title || b.english).charCodeAt(0); }).map(this.generateMenuItem.bind(this, false)); return ( {groupItems} ); }); return [...topLevel, ...itemGroups]; } getMenuItems() { const props = this.props; const menuItems = props.menuItems; const topLevel = this.generateSubMenuItems(menuItems.topLevel); const subMenu = Object.keys(menuItems).filter(this.isNotTopLevel) .sort((a, b) => { return config.categoryOrder[a] - config.categoryOrder[b]; }) .map((category) => { const subMenuItems = this.generateSubMenuItems(menuItems[category]); return ( {category}} key={category}> {subMenuItems} ); }); return [...topLevel, ...subMenu]; } flattenMenu(menu) { if (menu.type === Menu.Item) { return menu; } if (Array.isArray(menu)) { return menu.reduce((acc, item) => acc.concat(this.flattenMenu(item)), []); } return this.flattenMenu(menu.props.children); } getFooterNav(menuItems, activeMenuItem) { const menuItemsList = this.flattenMenu(menuItems); let activeMenuItemIndex = -1; menuItemsList.forEach((menuItem, i) => { if (menuItem.key === activeMenuItem) { activeMenuItemIndex = i; } }); const prev = menuItemsList[activeMenuItemIndex - 1]; const next = menuItemsList[activeMenuItemIndex + 1]; return { prev, next }; } render() { const activeMenuItem = this.getActiveMenuItem(this.props); const menuItems = this.getMenuItems(); const { prev, next } = this.getFooterNav(menuItems, activeMenuItem); return (
{menuItems} {this.props.children}
{ !!prev ? React.cloneElement(prev.props.children, { className: 'prev-page' }) : null } { !!next ? React.cloneElement(next.props.children, { className: 'next-page' }) : null }
); } }