Expose methods for installations to create custom preview components

This commit is contained in:
Mathias Biilmann Christensen 2016-09-11 17:53:44 +02:00
parent c51f42658e
commit 8d63ff0a88
8 changed files with 77 additions and 12 deletions

View File

@ -68,6 +68,7 @@
"dependencies": {
"bricks.js": "^1.7.0",
"fuzzy": "^0.1.1",
"html-to-react": "^1.0.0",
"js-base64": "^2.1.9",
"json-loader": "^0.5.4",
"localforage": "^1.4.2",

View File

@ -6,14 +6,17 @@ export default class ControlPane extends React.Component {
controlFor(field) {
const { entry, getMedia, onChange, onAddMedia, onRemoveMedia } = this.props;
const widget = Widgets[field.get('widget')] || Widgets._unknown;
return React.createElement(widget.Control, {
field: field,
value: entry.getIn(['data', field.get('name')]),
onChange: (value) => onChange(entry.setIn(['data', field.get('name')], value)),
onAddMedia: onAddMedia,
onRemoveMedia: onRemoveMedia,
getMedia: getMedia
});
return <div className="cms-control">
<label>{ field.get('label') }</label>
{React.createElement(widget.Control, {
field: field,
value: entry.getIn(['data', field.get('name')]),
onChange: (value) => onChange(entry.setIn(['data', field.get('name')], value)),
onAddMedia: onAddMedia,
onRemoveMedia: onRemoveMedia,
getMedia: getMedia
})}
</div>;
}
render() {

View File

@ -0,0 +1,6 @@
.frame {
width: 100%;
height: 100%;
border: none;
background: #fff;
}

View File

@ -1,7 +1,9 @@
import React, { PropTypes } from 'react';
import { render } from 'react-dom';
import ImmutablePropTypes from 'react-immutable-proptypes';
import { getPreviewTemplate, getPreviewStyles } from '../lib/registry';
import Widgets from './Widgets';
import styles from './PreviewPane.css';
class Preview extends React.Component {
previewFor(field) {
@ -24,23 +26,49 @@ class Preview extends React.Component {
}
}
Preview.propTypes = {
collection: ImmutablePropTypes.map.isRequired,
entry: ImmutablePropTypes.map.isRequired,
getMedia: PropTypes.func.isRequired,
};
export default class PreviewPane extends React.Component {
constructor(props) {
super(props);
this.handleIframeRef = this.handleIframeRef.bind(this);
this.widgetFor = this.widgetFor.bind(this);
}
componentDidUpdate() {
this.renderPreview();
}
widgetFor(name) {
const { collection, entry, getMedia } = this.props;
const field = collection.get('fields').find((field) => field.get('name') === name);
const widget = Widgets[field.get('widget')] || Widgets._unknown;
return React.createElement(widget.Preview, {
field: field,
value: entry.getIn(['data', field.get('name')]),
getMedia: getMedia,
});
}
renderPreview() {
const props = this.props;
render(<Preview {...props}/>, this.previewEl);
const props = Object.assign({}, this.props, {widgetFor: this.widgetFor});
const component = getPreviewTemplate(props.collection.get('name')) || Preview;
render(React.createElement(component, props), this.previewEl);
}
handleIframeRef(ref) {
if (ref) {
getPreviewStyles().forEach((style) => {
const linkEl = document.createElement('link');
linkEl.setAttribute('rel', 'stylesheet');
linkEl.setAttribute('href', style);
ref.contentDocument.head.appendChild(linkEl);
});
this.previewEl = document.createElement('div');
ref.contentDocument.body.appendChild(this.previewEl);
this.renderPreview();
@ -51,7 +79,7 @@ export default class PreviewPane extends React.Component {
const { collection } = this.props;
if (!collection) { return null; }
return <iframe style={{width: "100%", height: "100%", border: "none"}} ref={this.handleIframeRef}></iframe>
return <iframe className={styles.frame} ref={this.handleIframeRef}></iframe>
}
}

View File

@ -42,6 +42,7 @@ class VisualEditor extends React.Component {
let rawJson;
if (props.value !== undefined) {
const content = this.markdown.toContent(props.value);
console.log('md: %o', content);
rawJson = SlateUtils.encode(content, null, ['mediaproxy'].concat(getPlugins().map(plugin => plugin.id)));
} else {
rawJson = emptyParagraphBlock;

View File

@ -59,4 +59,4 @@ button{
line-height: 18px;
background-color:#fff;
cursor: pointer;
}
}

View File

@ -2,6 +2,7 @@ import React from 'react';
import { render } from 'react-dom';
import { Provider } from 'react-redux';
import { Router } from 'react-router';
import { registerPreviewStyle,registerPreviewTemplate } from './lib/registry';
import configureStore from './store/configureStore';
import routes from './routing/routes';
import history, { syncHistory } from './routing/history';
@ -29,3 +30,8 @@ render((
</Plugin>
</Provider>
), el);
window.CMS = {
registerPreviewStyle: registerPreviewStyle,
registerPreviewTemplate: registerPreviewTemplate
};

20
src/lib/registry.js Normal file
View File

@ -0,0 +1,20 @@
const registry = {
templates: {},
previewStyles: []
};
export function registerPreviewStyle(style) {
registry.previewStyles.push(style);
}
export function registerPreviewTemplate(name, component) {
registry.templates[name] = component;
}
export function getPreviewTemplate(name) {
return registry.templates[name];
}
export function getPreviewStyles() {
return registry.previewStyles;
}