import React from 'react'; import { Link } from 'react-router'; import classNames from 'classnames'; import * as utils from '../utils'; export default class Demo extends React.Component { constructor(props) { super(props); this.state = { codeExpand: false, }; } componentWillReceiveProps(nextProps) { if (nextProps.expand === undefined) return; this.setState({ codeExpand: nextProps.expand, }); } handleCodeExapnd = () => { this.setState({ codeExpand: !this.state.codeExpand }); } render() { const { id, className, meta, intro, preview, style, src, highlightedCode, highlightedStyle, pathname } = this.props; const codeExpand = this.state.codeExpand; const codeBoxClass = classNames({ 'code-box': true, [className]: className, expand: codeExpand, }); const introChildren = utils.jsonmlToComponent(pathname, ['div'].concat(intro)); return (
{ meta.iframe ?