ant-design/site/component/Demo/index.jsx
2016-03-10 10:50:38 +08:00

70 lines
2.0 KiB
JavaScript

import React from 'react';
import ReactDOM from 'react-dom';
import antd, { Collapse } from '../../../';
import BrowserDemo from '../BrowserDemo';
import * as utils from '../utils';
import hljs from 'highlight.js';
export default class Demo extends React.Component {
constructor(props) {
super(props);
this.state = {
activeKey: '',
};
}
handleChange(activeKey) {
this.setState({
activeKey: this.state.activeKey === activeKey ?
'' : activeKey
});
}
render() {
const { id, preview, title, intro, code, style, expand } = this.props;
const introChildren = intro.map(utils.objectToComponent);
const highlightedCode = hljs.highlight('javascript', code).value;
return (
<section className="code-box" id={id}>
<section className="code-box-demo">
{ preview(React, ReactDOM, antd, BrowserDemo) }
{
!!style ?
<style dangerouslySetInnerHTML={{ __html: style }} /> :
null
}
</section>
<section className="code-box-meta markdown">
<div className="code-box-title">
<a>{ title }</a>
</div>
<Collapse activeKey={expand ? 'code' : this.state.activeKey}
onChange={this.handleChange.bind(this)}>
<Collapse.Panel key="code" header={introChildren}>
<div className="highlight">
<pre>
<code className="javascript" dangerouslySetInnerHTML={{
__html: highlightedCode,
}} />
</pre>
</div>
{
!!style ?
<div className="highlight">
<pre>
<code className="css" dangerouslySetInnerHTML={{
__html: hljs.highlight('css', style).value,
}} />
</pre>
</div> :
null
}
</Collapse.Panel>
</Collapse>
</section>
</section>
);
}
}