import React from 'react'; import {render} from '../../src/index'; import axios from 'axios'; import {toast} from '../../src/components/Toast'; import {normalizeLink} from '../../src/utils/normalizeLink'; import Button from '../../src/components/Button'; import LazyComponent from '../../src/components/LazyComponent'; import {default as DrawerContainer} from '../../src/components/Drawer'; import {Portal} from 'react-overlays'; import {withRouter} from 'react-router'; import copy from 'copy-to-clipboard'; function loadEditor() { return new Promise(resolve => require(['../../src/components/Editor'], component => resolve(component.default)) ); } const viewMode = localStorage.getItem('viewMode') || 'pc'; export default function (schema) { if (!schema['$schema']) { schema = { ...schema }; } return withRouter( class extends React.Component { static displayName = 'SchemaRenderer'; iframeRef; state = {open: false, schema: {}}; toggleCode = () => this.setState({ open: !this.state.open }); copyCode = () => { copy(JSON.stringify(schema, null, 2)); toast.success('页面配置JSON已复制到粘贴板'); }; close = () => this.setState({ open: false }); constructor(props) { super(props); const {router} = props; this.env = { updateLocation: (location, replace) => { router[replace ? 'replace' : 'push'](normalizeLink(location)); }, jumpTo: (to, action) => { if (to === 'goBack') { return router.location.goBack(); } to = normalizeLink(to); if (action && action.actionType === 'url') { action.blank === false ? (window.location.href = to) : window.open(to); return; } if (/^https?:\/\//.test(to)) { window.location.replace(to); } else { router.push(to); } }, isCurrentUrl: to => { const link = normalizeLink(to); return router.isActive(link); }, fetcher: ({url, method, data, config, headers}) => { config = config || {}; config.headers = headers || {}; if (config.cancelExecutor) { config.cancelToken = new axios.CancelToken(config.cancelExecutor); } if (data && data instanceof FormData) { // config.headers = config.headers || {}; // config.headers['Content-Type'] = 'multipart/form-data'; } else if ( data && typeof data !== 'string' && !(data instanceof Blob) && !(data instanceof ArrayBuffer) ) { data = JSON.stringify(data); config.headers['Content-Type'] = 'application/json'; } if (method !== 'post' && method !== 'put' && method !== 'patch') { if (data) { if (method === 'delete') { config.data = data; } else { config.params = data; } } return axios[method](url, config); } return axios[method](url, data, config); }, isCancel: value => axios.isCancel(value), copy: content => { copy(content); toast.success('内容已复制到粘贴板'); } }; this.handleEditorMount = this.handleEditorMount.bind(this); this.iframeRef = React.createRef(); this.watchIframeReady = this.watchIframeReady.bind(this); window.addEventListener('message', this.watchIframeReady, false); } handleEditorMount(editor, monaco) { let host = `${window.location.protocol}//${window.location.host}`; // 如果在 gh-pages 里面 if (/^\/amis/.test(window.location.pathname)) { host += '/amis'; } const schemaUrl = `${host}/schema.json`; monaco.languages.json.jsonDefaults.setDiagnosticsOptions({ schemas: [ { uri: schemaUrl, fileMatch: ['*'] } ], validate: true, enableSchemaRequest: true, allowComments: true }); } renderCode() { return ( ); } watchIframeReady(event) { // iframe 里面的 amis 初始化了就可以发数据 if (event.data && event.data === 'amisReady') { this.updateIframe(); } } updateIframe() { if (this.iframeRef && this.iframeRef.current) { this.iframeRef.current.contentWindow.postMessage( { schema: schema, props: { location: this.props.location, theme: this.props.theme, locale: this.props.locale } }, '*' ); } } componentWillUnmount() { this.props.setAsideFolded && this.props.setAsideFolded(false); window.removeEventListener('message', this.watchIframeReady, false); } renderSchema() { const {router, location, theme, locale} = this.props; if (viewMode === 'mobile') { return ( ); } return render( schema, { location, theme, locale }, this.env ); } render() { const ns = this.props.classPrefix; const showCode = this.props.showCode; return ( <>
{showCode !== false ? ( {this.state.open ? this.renderCode() : null} ) : null} {this.renderSchema()}
{showCode !== false ? ( //
//
// 查看页面配置 //
//
// 复制页面配置 //
//
document.getElementById('Header-toolbar')} >
) : null} ); } } ); }