You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

294 lines
9.0 KiB

import React from 'react';
import PropTypes from 'prop-types';
import { Link } from 'bisheng/router';
import { Row, Col, Menu, Icon } from 'antd';
import classNames from 'classnames';
7 years ago
import MobileMenu from 'rc-drawer-menu';
import Article from './Article';
import ComponentDoc from './ComponentDoc';
import * as utils from '../utils';
const { SubMenu } = Menu;
function getActiveMenuItem(props) {
const { children } = props.params;
return (children && children.replace('-cn', '')) ||
props.location.pathname.replace(/(^\/|-cn$)/g, '');
}
function getModuleData(props) {
const { pathname } = props.location;
const moduleName = /^\/?components/.test(pathname) ?
'components' : pathname.split('/').filter(item => item).slice(0, 2).join('/');
const moduleData = moduleName === 'components' || moduleName === 'docs/react' ||
moduleName === 'changelog' || moduleName === 'changelog-cn' ?
[...props.picked.components, ...props.picked['docs/react'], ...props.picked.changelog] :
props.picked[moduleName];
const excludedSuffix = utils.isZhCN(props.location.pathname) ? 'en-US.md' : 'zh-CN.md';
return moduleData.filter(({ meta }) => !meta.filename.endsWith(excludedSuffix));
}
function fileNameToPath(filename) {
const snippets = filename.replace(/(\/index)?((\.zh-CN)|(\.en-US))?\.md$/i, '').split('/');
return snippets[snippets.length - 1];
}
export default class MainContent extends React.Component {
static contextTypes = {
intl: PropTypes.object.isRequired,
7 years ago
isMobile: PropTypes.bool.isRequired,
}
constructor(props) {
super(props);
this.state = {
openKeys: this.getSideBarOpenKeys(props) || [],
};
}
componentDidMount() {
this.componentDidUpdate();
}
componentWillReceiveProps(nextProps) {
const openKeys = this.getSideBarOpenKeys(nextProps);
if (openKeys) {
this.setState({ openKeys });
}
}
7 years ago
componentDidUpdate(prevProps) {
if (!prevProps || prevProps.location.pathname !== this.props.location.pathname) {
this.bindScroller();
}
7 years ago
if (!prevProps || (!window.location.hash && prevProps && prevProps.location.pathname !== this.props.location.pathname)) {
document.body.scrollTop = 0;
document.documentElement.scrollTop = 0;
return;
}
if (this.timer) {
clearTimeout(this.timer);
}
this.timer = setTimeout(() => {
if (window.location.hash) {
document.querySelector(window.location.hash).scrollIntoView();
}
}, 10);
}
componentWillUnmount() {
clearTimeout(this.timer);
this.scroller.disable();
}
bindScroller() {
if (this.scroller) {
this.scroller.disable();
}
require('intersection-observer'); // eslint-disable-line
const scrollama = require('scrollama'); // eslint-disable-line
this.scroller = scrollama();
this.scroller
.setup({
step: '.markdown > h2, .code-box', // required
offset: 0,
})
.onStepEnter(({ element }) => {
[].forEach.call(document.querySelectorAll('.toc-affix li a'), (node) => {
node.className = '';
});
const currentNode = document.querySelectorAll(`.toc-affix li a[href="#${element.id}"]`)[0];
if (currentNode) {
currentNode.className = 'current';
}
});
}
handleMenuOpenChange = (openKeys) => {
this.setState({ openKeys });
}
getSideBarOpenKeys(nextProps) {
7 years ago
const { themeConfig } = nextProps;
const { pathname } = nextProps.location;
const prevModule = this.currentModule;
this.currentModule = pathname.replace(/^\//).split('/')[1] || 'components';
if (this.currentModule === 'react') {
this.currentModule = 'components';
}
const locale = utils.isZhCN(pathname) ? 'zh-CN' : 'en-US';
if (prevModule !== this.currentModule) {
const moduleData = getModuleData(nextProps);
7 years ago
const shouldOpenKeys = utils.getMenuItems(
moduleData,
locale,
themeConfig.categoryOrder,
themeConfig.typeOrder
).map(m => m.title[locale] || m.title);
return shouldOpenKeys;
}
}
generateMenuItem(isTop, item) {
const { locale } = this.context.intl;
const key = fileNameToPath(item.filename);
7 years ago
const title = item.title[locale] || item.title;
const text = isTop ? title : [
<span key="english">{title}</span>,
<span className="chinese" key="chinese">{item.subtitle}</span>,
];
const { disabled } = item;
9 years ago
const url = item.filename.replace(/(\/index)?((\.zh-CN)|(\.en-US))?\.md$/i, '').toLowerCase();
8 years ago
const child = !item.link ? (
<Link
to={utils.getLocalizedPathname(/^components/.test(url) ? `${url}/` : url, locale === 'zh-CN')}
disabled={disabled}
>
{text}
</Link>) : (
<a
href={item.link}
target="_blank"
rel="noopener noreferrer"
disabled={disabled}
className="menu-item-link-outside"
>
{text} <Icon type="export" />
</a>);
return (
<Menu.Item key={key.toLowerCase()} disabled={disabled}>
{child}
</Menu.Item>
);
}
getMenuItems() {
const { themeConfig } = this.props;
const moduleData = getModuleData(this.props);
const menuItems = utils.getMenuItems(
7 years ago
moduleData,
this.context.intl.locale,
themeConfig.categoryOrder,
themeConfig.typeOrder,
);
7 years ago
return menuItems.map((menuItem) => {
if (menuItem.children) {
return (
<SubMenu title={<h4>{menuItem.title}</h4>} key={menuItem.title}>
{menuItem.children.map((child) => {
if (child.type === 'type') {
return (
<Menu.ItemGroup title={child.title} key={child.title}>
7 years ago
{child.children.sort((a, b) => {
return a.title.charCodeAt(0) - b.title.charCodeAt(0);
}).map(leaf => this.generateMenuItem(false, leaf))}
7 years ago
</Menu.ItemGroup>
);
}
return this.generateMenuItem(false, child);
})}
</SubMenu>
);
}
7 years ago
return this.generateMenuItem(true, menuItem);
});
}
9 years ago
flattenMenu(menu) {
7 years ago
if (menu && menu.type && menu.type.isMenuItem) {
9 years ago
return menu;
}
if (Array.isArray(menu)) {
return menu.reduce((acc, item) => acc.concat(this.flattenMenu(item)), []);
9 years ago
}
return this.flattenMenu((menu.props && menu.props.children) || menu.children);
9 years ago
}
getFooterNav(menuItems, activeMenuItem) {
const menuItemsList = this.flattenMenu(menuItems);
9 years ago
let activeMenuItemIndex = -1;
menuItemsList.forEach((menuItem, i) => {
if (menuItem && menuItem.key === activeMenuItem) {
9 years ago
activeMenuItemIndex = i;
}
9 years ago
});
const prev = menuItemsList[activeMenuItemIndex - 1];
const next = menuItemsList[activeMenuItemIndex + 1];
return { prev, next };
}
render() {
const { props } = this;
7 years ago
const { isMobile } = this.context;
const activeMenuItem = getActiveMenuItem(props);
const menuItems = this.getMenuItems();
9 years ago
const { prev, next } = this.getFooterNav(menuItems, activeMenuItem);
const { localizedPageData } = props;
const mainContainerClass = classNames('main-container', {
'main-container-component': !!props.demos,
});
const menuChild = (
<Menu
inlineIndent="40"
7 years ago
className="aside-container menu-site"
mode="inline"
openKeys={this.state.openKeys}
selectedKeys={[activeMenuItem]}
onOpenChange={this.handleMenuOpenChange}
>
{menuItems}
</Menu>);
return (
<div className="main-wrapper">
<Row>
7 years ago
{isMobile ? (
<MobileMenu
iconChild={[<Icon type="menu-unfold" />, <Icon type="menu-fold" />]}
7 years ago
key="Mobile-menu"
wrapperClassName="drawer-wrapper"
>
{menuChild}
7 years ago
</MobileMenu>) : (
<Col xxl={4} xl={5} lg={6} md={24} sm={24} xs={24} className="main-menu">
{menuChild}
</Col>
)
}
<Col xxl={20} xl={19} lg={18} md={24} sm={24} xs={24} className={mainContainerClass}>
{
props.demos ?
<ComponentDoc {...props} doc={localizedPageData} demos={props.demos} /> :
<Article {...props} content={localizedPageData} />
}
</Col>
</Row>
<Row>
<Col
xxl={{ span: 20, offset: 4 }}
xl={{ span: 19, offset: 5 }}
lg={{ span: 18, offset: 6 }}
md={24}
sm={24}
xs={24}
>
<section className="prev-next-nav">
{
prev ?
React.cloneElement(prev.props.children || prev.children[0], { className: 'prev-page' }) :
null
}
{
next ?
React.cloneElement(next.props.children || next.children[0], { className: 'next-page' }) :
null
}
</section>
</Col>
</Row>
</div>
);
}
}