2017-09-09 19:39:10 -06:00
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import React from 'react';
|
2017-03-06 13:28:11 -05:00
|
|
|
import { List, Map } from 'immutable';
|
2016-06-16 19:20:36 -03:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
2017-05-03 15:33:02 -07:00
|
|
|
import Frame from 'react-frame-component';
|
2016-09-30 16:25:15 +02:00
|
|
|
import registry from '../../lib/registry';
|
2017-11-07 10:11:56 -05:00
|
|
|
import ErrorBoundary from '../UI/ErrorBoundary/ErrorBoundary';
|
2016-09-30 16:25:15 +02:00
|
|
|
import { resolveWidget } from '../Widgets';
|
2016-11-23 16:23:32 -02:00
|
|
|
import { selectTemplateName, selectInferedField } from '../../reducers/collections';
|
|
|
|
import { INFERABLE_FIELDS } from '../../constants/fieldInference';
|
2017-06-21 15:58:56 -04:00
|
|
|
import PreviewContent from './PreviewContent.js';
|
|
|
|
import PreviewHOC from '../Widgets/PreviewHOC';
|
2016-09-30 16:25:15 +02:00
|
|
|
import Preview from './Preview';
|
2016-05-30 16:55:32 -07:00
|
|
|
|
2016-09-09 17:31:59 +02:00
|
|
|
export default class PreviewPane extends React.Component {
|
2016-11-23 16:23:32 -02:00
|
|
|
|
2017-03-06 19:38:21 -05:00
|
|
|
getWidget = (field, value, props) => {
|
2017-06-30 17:59:16 -04:00
|
|
|
const { fieldsMetaData, getAsset, entry } = props;
|
2017-03-06 19:38:21 -05:00
|
|
|
const widget = resolveWidget(field.get('widget'));
|
2017-06-06 13:06:00 -04:00
|
|
|
|
2017-08-02 13:11:43 -04:00
|
|
|
/**
|
|
|
|
* Use an HOC to provide conditional updates for all previews.
|
|
|
|
*/
|
2017-06-21 15:58:56 -04:00
|
|
|
return !widget.preview ? null : (
|
|
|
|
<PreviewHOC
|
|
|
|
previewComponent={widget.preview}
|
|
|
|
key={field.get('name')}
|
|
|
|
field={field}
|
|
|
|
getAsset={getAsset}
|
|
|
|
value={value && Map.isMap(value) ? value.get(field.get('name')) : value}
|
|
|
|
metadata={fieldsMetaData && fieldsMetaData.get(field.get('name'))}
|
|
|
|
entry={entry}
|
|
|
|
fieldsMetaData={fieldsMetaData}
|
|
|
|
/>
|
|
|
|
);
|
2017-03-06 19:38:21 -05:00
|
|
|
};
|
|
|
|
|
2016-11-23 16:23:32 -02:00
|
|
|
inferedFields = {};
|
|
|
|
|
|
|
|
inferFields() {
|
|
|
|
const titleField = selectInferedField(this.props.collection, 'title');
|
|
|
|
const shortTitleField = selectInferedField(this.props.collection, 'shortTitle');
|
|
|
|
const authorField = selectInferedField(this.props.collection, 'author');
|
|
|
|
|
|
|
|
this.inferedFields = {};
|
|
|
|
if (titleField) this.inferedFields[titleField] = INFERABLE_FIELDS.title;
|
|
|
|
if (shortTitleField) this.inferedFields[shortTitleField] = INFERABLE_FIELDS.shortTitle;
|
|
|
|
if (authorField) this.inferedFields[authorField] = INFERABLE_FIELDS.author;
|
|
|
|
}
|
|
|
|
|
2017-06-07 16:41:55 -04:00
|
|
|
/**
|
|
|
|
* Returns the widget component for a named field, and makes recursive calls
|
|
|
|
* to retrieve components for nested and deeply nested fields, which occur in
|
|
|
|
* object and list type fields. Used internally to retrieve widgets, and also
|
|
|
|
* exposed for use in custom preview templates.
|
|
|
|
*/
|
2017-06-05 20:53:43 -04:00
|
|
|
widgetFor = (name, fields = this.props.fields, values = this.props.entry.get('data')) => {
|
2017-06-07 16:41:55 -04:00
|
|
|
// We retrieve the field by name so that this function can also be used in
|
|
|
|
// custom preview templates, where the field object can't be passed in.
|
2017-06-05 20:53:43 -04:00
|
|
|
let field = fields && fields.find(f => f.get('name') === name);
|
|
|
|
let value = values && values.get(field.get('name'));
|
|
|
|
let nestedFields = field.get('fields');
|
|
|
|
|
|
|
|
if (nestedFields) {
|
2017-06-07 16:41:55 -04:00
|
|
|
field = field.set('fields', this.getNestedWidgets(nestedFields, value));
|
2017-06-05 20:53:43 -04:00
|
|
|
}
|
|
|
|
|
2016-11-23 16:23:32 -02:00
|
|
|
const labelledWidgets = ['string', 'text', 'number'];
|
|
|
|
if (Object.keys(this.inferedFields).indexOf(name) !== -1) {
|
|
|
|
value = this.inferedFields[name].defaultPreview(value);
|
|
|
|
} else if (value && labelledWidgets.indexOf(field.get('widget')) !== -1 && value.toString().length < 50) {
|
|
|
|
value = <div><strong>{field.get('label')}:</strong> {value}</div>;
|
|
|
|
}
|
2017-03-06 15:22:40 -05:00
|
|
|
|
2017-03-06 19:38:21 -05:00
|
|
|
return value ? this.getWidget(field, value, this.props) : null;
|
2016-10-04 17:58:26 +02:00
|
|
|
};
|
2016-09-11 17:53:44 +02:00
|
|
|
|
2017-06-07 16:41:55 -04:00
|
|
|
/**
|
|
|
|
* Retrieves widgets for nested fields (children of object/list fields)
|
|
|
|
*/
|
|
|
|
getNestedWidgets = (fields, values) => {
|
|
|
|
// Fields nested within a list field will be paired with a List of value Maps.
|
|
|
|
if (List.isList(values)) {
|
|
|
|
return values.map(value => this.widgetsForNestedFields(fields, value));
|
|
|
|
}
|
|
|
|
// Fields nested within an object field will be paired with a single Map of values.
|
|
|
|
return this.widgetsForNestedFields(fields, values);
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Use widgetFor as a mapping function for recursive widget retrieval
|
|
|
|
*/
|
|
|
|
widgetsForNestedFields = (fields, values) => {
|
|
|
|
return fields.map(field => this.widgetFor(field.get('name'), fields, values));
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This function exists entirely to expose nested widgets for object and list
|
|
|
|
* fields to custom preview templates.
|
|
|
|
*
|
|
|
|
* TODO: see if widgetFor can now provide this functionality for preview templates
|
|
|
|
*/
|
2017-03-06 12:27:41 -05:00
|
|
|
widgetsFor = (name) => {
|
2017-03-06 15:22:40 -05:00
|
|
|
const { fields, entry } = this.props;
|
|
|
|
const field = fields.find(f => f.get('name') === name);
|
2017-03-06 12:27:41 -05:00
|
|
|
const nestedFields = field && field.get('fields');
|
2017-03-06 13:28:11 -05:00
|
|
|
const value = entry.getIn(['data', field.get('name')]);
|
2017-03-06 12:27:41 -05:00
|
|
|
|
2017-03-06 13:28:11 -05:00
|
|
|
if (List.isList(value)) {
|
|
|
|
return value.map((val, index) => {
|
2017-03-06 19:38:21 -05:00
|
|
|
const widgets = nestedFields && Map(nestedFields.map((f, i) => [f.get('name'), <div key={i}>{this.getWidget(f, val, this.props)}</div>]));
|
2017-03-06 13:28:11 -05:00
|
|
|
return Map({ data: val, widgets });
|
|
|
|
});
|
2017-05-03 15:33:02 -07:00
|
|
|
};
|
2017-03-06 13:28:11 -05:00
|
|
|
|
|
|
|
return Map({
|
|
|
|
data: value,
|
2017-03-06 19:38:21 -05:00
|
|
|
widgets: nestedFields && Map(nestedFields.map(f => [f.get('name'), this.getWidget(f, value, this.props)])),
|
2017-03-06 13:28:11 -05:00
|
|
|
});
|
2017-03-06 12:27:41 -05:00
|
|
|
};
|
|
|
|
|
2017-05-03 15:33:02 -07:00
|
|
|
render() {
|
2016-10-28 10:21:13 +02:00
|
|
|
const { entry, collection } = this.props;
|
2017-05-16 13:25:21 -04:00
|
|
|
|
|
|
|
if (!entry || !entry.get('data')) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2017-06-21 15:58:56 -04:00
|
|
|
const previewComponent =
|
|
|
|
registry.getPreviewTemplate(selectTemplateName(collection, entry.get('slug'))) ||
|
|
|
|
Preview;
|
2016-11-11 17:54:58 -02:00
|
|
|
|
2016-11-23 16:23:32 -02:00
|
|
|
this.inferFields();
|
|
|
|
|
2016-09-29 22:17:29 +02:00
|
|
|
const previewProps = {
|
2016-10-04 17:58:26 +02:00
|
|
|
...this.props,
|
2016-10-18 12:32:39 -02:00
|
|
|
widgetFor: this.widgetFor,
|
2017-03-06 12:27:41 -05:00
|
|
|
widgetsFor: this.widgetsFor,
|
2016-09-29 22:17:29 +02:00
|
|
|
};
|
2017-03-06 12:27:41 -05:00
|
|
|
|
2017-05-03 15:33:02 -07:00
|
|
|
const styleEls = registry.getPreviewStyles()
|
2017-06-04 17:21:38 +02:00
|
|
|
.map((style, i) => <link key={i} href={style} type="text/css" rel="stylesheet" />);
|
2016-09-09 17:31:59 +02:00
|
|
|
|
2016-09-29 22:17:29 +02:00
|
|
|
if (!collection) {
|
2017-10-18 09:29:38 -07:00
|
|
|
return <Frame className="nc-previewPane-frame" head={styleEls} />;
|
2016-09-29 22:17:29 +02:00
|
|
|
}
|
2016-09-09 17:31:59 +02:00
|
|
|
|
2017-11-07 10:11:56 -05:00
|
|
|
const initialContent = `
|
2017-05-03 15:33:02 -07:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head><base target="_blank"/></head>
|
|
|
|
<body><div></div></body>
|
2017-11-07 10:11:56 -05:00
|
|
|
</html>
|
|
|
|
`;
|
|
|
|
return (
|
|
|
|
<ErrorBoundary>
|
|
|
|
<Frame className="nc-previewPane-frame" head={styleEls} initialContent={initialContent}>
|
|
|
|
<PreviewContent {...{ previewComponent, previewProps }}/>
|
|
|
|
</Frame>
|
|
|
|
</ErrorBoundary>
|
|
|
|
);
|
2016-09-09 17:31:59 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-16 19:20:36 -03:00
|
|
|
PreviewPane.propTypes = {
|
|
|
|
collection: ImmutablePropTypes.map.isRequired,
|
2016-10-21 20:42:14 -02:00
|
|
|
fields: ImmutablePropTypes.list.isRequired,
|
2016-06-16 19:20:36 -03:00
|
|
|
entry: ImmutablePropTypes.map.isRequired,
|
2016-12-29 17:18:24 -02:00
|
|
|
fieldsMetaData: ImmutablePropTypes.map.isRequired,
|
2017-01-10 22:23:22 -02:00
|
|
|
getAsset: PropTypes.func.isRequired,
|
2016-06-16 19:20:36 -03:00
|
|
|
};
|