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

289 lines
9.4 KiB
React
Raw Normal View History

/* eslint jsx-a11y/no-noninteractive-element-interactions: 0 */
2016-02-29 14:08:40 +08:00
import React from 'react';
import ReactDOM from 'react-dom';
import PropTypes from 'prop-types';
import { FormattedMessage } from 'react-intl';
import CopyToClipboard from 'react-copy-to-clipboard';
import classNames from 'classnames';
2017-12-29 17:02:45 +08:00
import LZString from 'lz-string';
2017-03-02 15:08:42 +08:00
import { Icon, Tooltip } from 'antd';
import EditButton from './EditButton';
import ErrorBoundary from './ErrorBoundary';
2017-03-18 15:15:00 +08:00
import BrowserFrame from '../BrowserFrame';
2017-07-10 22:17:52 +08:00
import { ping } from '../utils';
2016-05-11 11:36:47 +08:00
2017-12-29 17:02:45 +08:00
function compress(string) {
return LZString.compressToBase64(string)
.replace(/\+/g, '-') // Convert '+' to '-'
.replace(/\//g, '_') // Convert '/' to '_'
.replace(/=+$/, ''); // Remove ending '='
}
2016-02-29 14:08:40 +08:00
export default class Demo extends React.Component {
2016-04-20 16:28:07 +08:00
static contextTypes = {
intl: PropTypes.object,
2016-04-20 16:28:07 +08:00
}
2018-08-02 16:25:47 +08:00
state = {
codeExpand: false,
copied: false,
copyTooltipVisible: false,
showRiddleButton: false,
};
2016-03-01 14:53:32 +08:00
shouldComponentUpdate(nextProps, nextState) {
const { codeExpand, copied, copyTooltipVisible } = this.state;
const { expand } = this.props;
return (codeExpand || expand) !== (nextState.codeExpand || nextProps.expand)
|| copied !== nextState.copied
|| copyTooltipVisible !== nextState.copyTooltipVisible;
}
componentDidMount() {
const { meta, location } = this.props;
if (meta.id === location.hash.slice(1)) {
this.anchor.click();
}
2017-07-10 22:17:52 +08:00
this.pingTimer = ping((status) => {
if (status !== 'timeout' && status !== 'error') {
this.setState({
showRiddleButton: true,
});
}
});
}
getSourceCode() {
const { highlightedCode } = this.props;
2018-10-31 13:15:40 +08:00
if (typeof document !== 'undefined') {
const div = document.createElement('div');
div.innerHTML = highlightedCode[1].highlighted;
return div.textContent;
}
return '';
}
handleCodeExpand = () => {
const { codeExpand } = this.state;
this.setState({ codeExpand: !codeExpand });
}
saveAnchor = (anchor) => {
this.anchor = anchor;
}
2017-03-02 15:08:42 +08:00
handleCodeCopied = () => {
this.setState({ copied: true });
}
onCopyTooltipVisibleChange = (visible) => {
if (visible) {
this.setState({
copyTooltipVisible: visible,
copied: false,
});
return;
}
this.setState({
copyTooltipVisible: visible,
});
}
2016-02-29 14:08:40 +08:00
render() {
2017-10-09 13:23:20 +08:00
const { state } = this;
const { props } = this;
const {
meta,
src,
content,
preview,
highlightedCode,
style,
highlightedStyle,
2016-09-19 11:23:41 +08:00
expand,
} = props;
const { showRiddleButton, copied } = state;
if (!this.liveDemo) {
2017-03-18 15:15:00 +08:00
this.liveDemo = meta.iframe
2017-05-15 12:03:02 +08:00
? <BrowserFrame><iframe src={src} height={meta.iframe} title="demo" /></BrowserFrame>
2017-03-18 15:15:00 +08:00
: preview(React, ReactDOM);
}
const codeExpand = state.codeExpand || expand;
const codeBoxClass = classNames({
'code-box': true,
expand: codeExpand,
});
const { intl: { locale } } = this.context;
const localizedTitle = meta.title[locale] || meta.title;
const localizeIntro = content[locale] || content;
const introChildren = props.utils
2016-07-30 14:31:36 +08:00
.toReactComponent(['div'].concat(localizeIntro));
const highlightClass = classNames({
'highlight-wrapper': true,
'highlight-wrapper-expand': codeExpand,
});
2017-07-10 22:17:52 +08:00
const prefillStyle = `@import 'antd/dist/antd.css';\n\n${style || ''}`.replace(new RegExp(`#${meta.id}\\s*`, 'g'), '');
2017-12-29 17:02:45 +08:00
const html = `<div id="container" style="padding: 24px"></div>
<script>
var mountNode = document.getElementById('container');
</script>`;
2017-07-10 22:17:52 +08:00
const sourceCode = this.getSourceCode();
const codepenPrefillConfig = {
title: `${localizedTitle} - Ant Design Demo`,
2017-12-29 17:02:45 +08:00
html,
js: sourceCode
.replace(/import\s+\{\s+(.*)\s+\}\s+from\s+'antd';/, 'const { $1 } = antd;')
.replace("import moment from 'moment';", ''),
2017-07-10 22:17:52 +08:00
css: prefillStyle,
editors: '001',
css_external: 'https://unpkg.com/antd/dist/antd.css',
js_external: [
'react@16.x/umd/react.development.js',
'react-dom@16.x/umd/react-dom.development.js',
'moment/min/moment-with-locales.js',
'antd/dist/antd-with-locales.js',
].map(url => `https://unpkg.com/${url}`).join(';'),
js_pre_processor: 'typescript',
};
2017-07-10 22:17:52 +08:00
const riddlePrefillConfig = {
title: `${localizedTitle} - Ant Design Demo`,
js: sourceCode,
2017-07-10 22:17:52 +08:00
css: prefillStyle,
};
const dependencies = sourceCode.split('\n').reduce((acc, line) => {
2017-12-29 17:02:45 +08:00
const matches = line.match(/import .+? from '(.+)';$/);
if (matches && matches[1]) {
acc[matches[1]] = 'latest';
}
return acc;
}, { react: 'latest', 'react-dom': 'latest' });
const codesanboxPrefillConfig = {
files: {
'package.json': {
content: {
dependencies,
},
},
'index.css': {
content: (style || '').replace(new RegExp(`#${meta.id}\\s*`, 'g'), ''),
},
'index.js': {
content: `
import React from 'react';
import ReactDOM from 'react-dom';
import 'antd/dist/antd.css';
import './index.css';
${sourceCode.replace('mountNode', 'document.getElementById(\'container\')')}
2017-12-29 17:02:45 +08:00
`,
},
'index.html': {
content: html,
},
},
};
2016-02-29 14:08:40 +08:00
return (
<section className={codeBoxClass} id={meta.id}>
2016-02-29 14:08:40 +08:00
<section className="code-box-demo">
<ErrorBoundary>
{this.liveDemo}
</ErrorBoundary>
2016-03-01 17:42:23 +08:00
{
style
? <style dangerouslySetInnerHTML={{ __html: style }} />
: null
2016-03-01 17:42:23 +08:00
}
2016-02-29 14:08:40 +08:00
</section>
<section className="code-box-meta markdown">
<div className="code-box-title">
<a href={`#${meta.id}`} ref={this.saveAnchor}>
2016-05-03 10:34:44 +08:00
{localizedTitle}
</a>
<EditButton title={<FormattedMessage id="app.content.edit-page" />} filename={meta.filename} />
2016-02-29 14:08:40 +08:00
</div>
{introChildren}
<Tooltip title={codeExpand ? 'Hide Code' : 'Show Code'}>
2017-08-15 21:00:31 +08:00
<span className="code-expand-icon">
<img
alt="expand code"
src="https://gw.alipayobjects.com/zos/rmsportal/wSAkBuJFbdxsosKKpqyq.svg"
className={codeExpand ? 'code-expand-icon-hide' : 'code-expand-icon-show'}
onClick={this.handleCodeExpand}
/>
<img
alt="expand code"
src="https://gw.alipayobjects.com/zos/rmsportal/OpROPHYqWmrMDBFMZtKF.svg"
className={codeExpand ? 'code-expand-icon-show' : 'code-expand-icon-hide'}
onClick={this.handleCodeExpand}
/>
</span>
</Tooltip>
2016-02-29 14:08:40 +08:00
</section>
2017-08-16 10:38:37 +08:00
<section
className={highlightClass}
key="code"
>
2016-03-25 17:07:00 +08:00
<div className="highlight">
2017-07-10 22:17:52 +08:00
<div className="code-box-actions">
{showRiddleButton ? (
2017-07-10 22:17:52 +08:00
<form action="//riddle.alibaba-inc.com/riddles/define" method="POST" target="_blank">
<input type="hidden" name="data" value={JSON.stringify(riddlePrefillConfig)} />
<Tooltip title={<FormattedMessage id="app.demo.riddle" />}>
<input type="submit" value="Create New Riddle with Prefilled Data" className="code-box-riddle" />
</Tooltip>
</form>
) : null}
<form action="https://codepen.io/pen/define" method="POST" target="_blank">
<input type="hidden" name="data" value={JSON.stringify(codepenPrefillConfig)} />
<Tooltip title={<FormattedMessage id="app.demo.codepen" />}>
<input type="submit" value="Create New Pen with Prefilled Data" className="code-box-codepen" />
</Tooltip>
</form>
2017-12-29 17:02:45 +08:00
<form action="https://codesandbox.io/api/v1/sandboxes/define" method="POST" target="_blank">
<input type="hidden" name="parameters" value={compress(JSON.stringify(codesanboxPrefillConfig))} />
<Tooltip title={<FormattedMessage id="app.demo.codesandbox" />}>
<input type="submit" value="Create New Sandbox with Prefilled Data" className="code-box-codesandbox" />
</Tooltip>
</form>
2017-07-10 22:17:52 +08:00
<CopyToClipboard
text={sourceCode}
2017-07-10 22:17:52 +08:00
onCopy={this.handleCodeCopied}
2017-03-02 15:08:42 +08:00
>
2017-07-10 22:17:52 +08:00
<Tooltip
visible={state.copyTooltipVisible}
onVisibleChange={this.onCopyTooltipVisibleChange}
title={(
2017-07-10 22:17:52 +08:00
<FormattedMessage
id={`app.demo.${copied ? 'copied' : 'copy'}`}
2017-07-10 22:17:52 +08:00
/>
)}
2017-07-10 22:17:52 +08:00
>
<Icon
type={(state.copied && state.copyTooltipVisible) ? 'check' : 'copy'}
className="code-box-code-copy"
/>
</Tooltip>
</CopyToClipboard>
</div>
{props.utils.toReactComponent(highlightedCode)}
2016-03-25 17:07:00 +08:00
</div>
{
highlightedStyle
? (
<div key="style" className="highlight">
<pre>
<code className="css" dangerouslySetInnerHTML={{ __html: highlightedStyle }} />
</pre>
</div>
) : null
}
2016-03-25 17:07:00 +08:00
</section>
2016-02-29 14:08:40 +08:00
</section>
);
}
}