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

169 lines
4.8 KiB
React
Raw Normal View History

import React from 'react';
import PropTypes from 'prop-types';
import DocumentTitle from 'react-document-title';
2016-09-08 16:53:50 +08:00
import { FormattedMessage } from 'react-intl';
import classNames from 'classnames';
2018-12-07 16:17:45 +08:00
import { Row, Col, Icon, Affix, Tooltip } from 'antd';
import { getChildren } from 'jsonml.js/lib/utils';
import Demo from './Demo';
import EditButton from './EditButton';
import { ping } from '../utils';
export default class ComponentDoc extends React.Component {
static contextTypes = {
intl: PropTypes.object,
2018-12-07 16:17:45 +08:00
};
state = {
expandAll: false,
showRiddleButton: false,
};
componentDidMount() {
this.pingTimer = ping(status => {
if (status !== 'timeout' && status !== 'error') {
this.setState({
showRiddleButton: true,
});
}
});
}
shouldComponentUpdate(nextProps) {
const { location } = this.props;
const { location: nextLocation } = nextProps;
if (nextLocation.pathname === location.pathname) {
return false;
}
return true;
}
componentWillUnmount() {
clearTimeout(this.pingTimer);
}
handleExpandToggle = () => {
const { expandAll } = this.state;
this.setState({
expandAll: !expandAll,
});
2018-12-07 16:17:45 +08:00
};
render() {
2017-10-09 13:23:20 +08:00
const { props } = this;
const { doc, location } = props;
const { content, meta } = doc;
2018-12-07 16:17:45 +08:00
const {
intl: { locale },
} = this.context;
2016-10-19 17:39:25 +08:00
const demos = Object.keys(props.demos).map(key => props.demos[key]);
const { expandAll, showRiddleButton } = this.state;
const isSingleCol = meta.cols === 1;
const leftChildren = [];
const rightChildren = [];
const showedDemo = demos.some(demo => demo.meta.only)
2018-12-07 16:17:45 +08:00
? demos.filter(demo => demo.meta.only)
: demos.filter(demo => demo.preview);
showedDemo
.sort((a, b) => a.meta.order - b.meta.order)
.forEach((demoData, index) => {
const demoElem = (
<Demo
{...demoData}
key={demoData.meta.filename}
utils={props.utils}
expand={expandAll}
location={location}
/>
);
if (index % 2 === 0 || isSingleCol) {
leftChildren.push(demoElem);
} else {
rightChildren.push(demoElem);
}
});
const expandTriggerClass = classNames({
'code-box-expand-trigger': true,
'code-box-expand-trigger-active': expandAll,
});
2018-12-07 16:17:45 +08:00
const jumper = showedDemo.map(demo => {
2017-10-09 13:23:20 +08:00
const { title } = demo.meta;
const localizeTitle = title[locale] || title;
return (
2016-09-15 01:42:45 +08:00
<li key={demo.meta.id} title={localizeTitle}>
2018-12-07 16:17:45 +08:00
<a href={`#${demo.meta.id}`}>{localizeTitle}</a>
</li>
);
});
2016-09-21 11:28:38 +08:00
const { title, subtitle, filename } = meta;
const articleClassName = classNames({
'show-riddle-button': showRiddleButton,
});
return (
2016-09-30 11:51:36 +08:00
<DocumentTitle title={`${subtitle || ''} ${title[locale] || title} - Ant Design`}>
<article className={articleClassName}>
<Affix className="toc-affix" offsetTop={16}>
<ul id="demo-toc" className="toc">
{jumper}
</ul>
</Affix>
<section className="markdown">
2016-07-26 19:45:55 +08:00
<h1>
2016-09-21 11:28:38 +08:00
{title[locale] || title}
2018-12-07 16:17:45 +08:00
{!subtitle ? null : <span className="subtitle">{subtitle}</span>}
<EditButton
title={<FormattedMessage id="app.content.edit-page" />}
filename={filename}
/>
2016-07-26 19:45:55 +08:00
</h1>
2018-12-07 16:17:45 +08:00
{props.utils.toReactComponent(
['section', { className: 'markdown' }].concat(getChildren(content)),
)}
<h2>
2016-09-08 16:53:50 +08:00
<FormattedMessage id="app.component.examples" />
<Tooltip
2018-12-07 16:17:45 +08:00
title={
<FormattedMessage
id={`app.component.examples.${expandAll ? 'collpse' : 'expand'}`}
/>
}
>
<Icon
type={`${expandAll ? 'appstore' : 'appstore-o'}`}
className={expandTriggerClass}
onClick={this.handleExpandToggle}
/>
</Tooltip>
</h2>
</section>
<Row gutter={16}>
2018-11-28 15:00:03 +08:00
<Col
span={isSingleCol ? 24 : 12}
2018-12-07 16:17:45 +08:00
className={isSingleCol ? 'code-boxes-col-1-1' : 'code-boxes-col-2-1'}
>
{leftChildren}
</Col>
2018-12-07 16:17:45 +08:00
{isSingleCol ? null : (
<Col className="code-boxes-col-2-1" span={12}>
{rightChildren}
</Col>
)}
</Row>
2018-12-07 16:17:45 +08:00
{props.utils.toReactComponent(
[
'section',
{
className: 'markdown api-container',
2018-12-07 16:17:45 +08:00
},
].concat(getChildren(doc.api || ['placeholder'])),
)}
</article>
</DocumentTitle>
);
}
}