ant-design/site/component/ComponentDoc/index.jsx

63 lines
1.7 KiB
JavaScript

import React from 'react';
import classNames from 'classnames';
import { Row, Col, Icon } from '../../../';
import Demo from '../Demo';
import * as utils from '../utils';
export default class ComponentDoc extends React.Component {
constructor(props) {
super(props);
this.state = {
expandAll: false,
};
}
handleExpandToggle() {
this.setState({
expandAll: !this.state.expandAll,
});
}
render() {
const { demos = [], doc } = this.props;
const expand = this.state.expandAll;
const isSingleCol = doc.meta.cols === '1';
const leftChildren = [];
const rightChildren = [];
demos.forEach((demoData, index) => {
if (index % 2 === 0 || isSingleCol) {
leftChildren.push(<Demo {...demoData} expand={expand} key={index} />);
} else {
rightChildren.push(<Demo {...demoData} expand={expand} key={index} />);
}
});
const expandTriggerClass = classNames({
'code-box-expand-trigger': true,
'code-box-expand-trigger-active': expand,
});
return (
<article>
<section className="markdown">
<h1>{doc.meta.chinese || doc.meta.english}</h1>
{ doc.description.map(utils.objectToComponent) }
<h2>
代码演示
<Icon type="appstore" className={expandTriggerClass}
title="展开全部代码" onClick={this.handleExpandToggle.bind(this)} />
</h2>
</section>
<Row>
<Col span={ isSingleCol ? '24' : '12' }>{ leftChildren }</Col>
{ isSingleCol ? null : <Col span="12">{ rightChildren }</Col> }
</Row>
<section className="markdown">
{ (doc.api || []).map(utils.objectToComponent) }
</section>
</article>
);
}
}