migrate relation widget
This commit is contained in:
parent
c54605be85
commit
3e8a6e5091
@ -41,7 +41,6 @@
|
|||||||
"prop-types": "^15.5.10",
|
"prop-types": "^15.5.10",
|
||||||
"react": "^16.4.1",
|
"react": "^16.4.1",
|
||||||
"react-aria-menubutton": "^5.1.0",
|
"react-aria-menubutton": "^5.1.0",
|
||||||
"react-autosuggest": "^9.3.2",
|
|
||||||
"react-dnd": "^2.5.4",
|
"react-dnd": "^2.5.4",
|
||||||
"react-dnd-html5-backend": "^2.5.4",
|
"react-dnd-html5-backend": "^2.5.4",
|
||||||
"react-dom": "^16.0.0",
|
"react-dom": "^16.0.0",
|
||||||
@ -70,7 +69,6 @@
|
|||||||
"toml-j0.4": "^1.1.1",
|
"toml-j0.4": "^1.1.1",
|
||||||
"tomlify-j0.4": "^3.0.0-alpha.0",
|
"tomlify-j0.4": "^3.0.0-alpha.0",
|
||||||
"url": "^0.11.0",
|
"url": "^0.11.0",
|
||||||
"uuid": "^3.1.0",
|
|
||||||
"what-input": "^5.0.3"
|
"what-input": "^5.0.3"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
@ -12,7 +12,7 @@ import { ListControl, ListPreview } from 'netlify-cms-widget-list';
|
|||||||
import { ObjectControl, ObjectPreview } from 'netlify-cms-widget-object';
|
import { ObjectControl, ObjectPreview } from 'netlify-cms-widget-object';
|
||||||
import { MarkdownControl, MarkdownPreview } from 'netlify-cms-widget-markdown';
|
import { MarkdownControl, MarkdownPreview } from 'netlify-cms-widget-markdown';
|
||||||
import { NumberControl, NumberPreview } from 'netlify-cms-widget-number';
|
import { NumberControl, NumberPreview } from 'netlify-cms-widget-number';
|
||||||
// import { RelationControl, RelationPreview } from 'netlify-cms-widget-relation';
|
import { RelationControl, RelationPreview } from 'netlify-cms-widget-relation';
|
||||||
import { StringControl, StringPreview } from 'netlify-cms-widget-string';
|
import { StringControl, StringPreview } from 'netlify-cms-widget-string';
|
||||||
import { SelectControl, SelectPreview } from 'netlify-cms-widget-select';
|
import { SelectControl, SelectPreview } from 'netlify-cms-widget-select';
|
||||||
import { TextControl, TextPreview } from 'netlify-cms-widget-text';
|
import { TextControl, TextPreview } from 'netlify-cms-widget-text';
|
||||||
@ -31,7 +31,7 @@ registerWidget('list', ListControl, ListPreview);
|
|||||||
registerWidget('markdown', MarkdownControl, MarkdownPreview);
|
registerWidget('markdown', MarkdownControl, MarkdownPreview);
|
||||||
registerWidget('number', NumberControl, NumberPreview);
|
registerWidget('number', NumberControl, NumberPreview);
|
||||||
registerWidget('object', ObjectControl, ObjectPreview);
|
registerWidget('object', ObjectControl, ObjectPreview);
|
||||||
// registerWidget('relation', RelationControl, RelationPreview);
|
registerWidget('relation', RelationControl, RelationPreview);
|
||||||
registerWidget('string', StringControl, StringPreview);
|
registerWidget('string', StringControl, StringPreview);
|
||||||
registerWidget('text', TextControl, TextPreview);
|
registerWidget('text', TextControl, TextPreview);
|
||||||
registerWidget('select', SelectControl, SelectPreview);
|
registerWidget('select', SelectControl, SelectPreview);
|
||||||
|
@ -5,6 +5,7 @@ import { connect } from 'react-redux';
|
|||||||
import { colors, colorsRaw, transitions, lengths, borders } from 'netlify-cms-ui-default';
|
import { colors, colorsRaw, transitions, lengths, borders } from 'netlify-cms-ui-default';
|
||||||
import { resolveWidget, getEditorComponents } from 'Lib/registry';
|
import { resolveWidget, getEditorComponents } from 'Lib/registry';
|
||||||
import { addAsset } from 'Actions/media';
|
import { addAsset } from 'Actions/media';
|
||||||
|
import { query, clearSearch } from 'Actions/search';
|
||||||
import { openMediaLibrary, removeInsertedMedia } from 'Actions/mediaLibrary';
|
import { openMediaLibrary, removeInsertedMedia } from 'Actions/mediaLibrary';
|
||||||
import { getAsset } from 'Reducers';
|
import { getAsset } from 'Reducers';
|
||||||
import Widget from './Widget';
|
import Widget from './Widget';
|
||||||
@ -123,6 +124,10 @@ class EditorControl extends React.Component {
|
|||||||
removeInsertedMedia,
|
removeInsertedMedia,
|
||||||
onValidate,
|
onValidate,
|
||||||
processControlRef,
|
processControlRef,
|
||||||
|
query,
|
||||||
|
queryHits,
|
||||||
|
isFetching,
|
||||||
|
clearSearch,
|
||||||
} = this.props;
|
} = this.props;
|
||||||
const widgetName = field.get('widget');
|
const widgetName = field.get('widget');
|
||||||
const widget = resolveWidget(widgetName);
|
const widget = resolveWidget(widgetName);
|
||||||
@ -180,6 +185,10 @@ class EditorControl extends React.Component {
|
|||||||
getEditorComponents={getEditorComponents}
|
getEditorComponents={getEditorComponents}
|
||||||
ref={processControlRef && partial(processControlRef, fieldName)}
|
ref={processControlRef && partial(processControlRef, fieldName)}
|
||||||
editorControl={ConnectedEditorControl}
|
editorControl={ConnectedEditorControl}
|
||||||
|
query={query}
|
||||||
|
queryHits={queryHits}
|
||||||
|
clearSearch={clearSearch}
|
||||||
|
isFetching={isFetching}
|
||||||
/>
|
/>
|
||||||
</ControlContainer>
|
</ControlContainer>
|
||||||
);
|
);
|
||||||
@ -189,14 +198,23 @@ class EditorControl extends React.Component {
|
|||||||
const mapStateToProps = (state, ownProps) => ({
|
const mapStateToProps = (state, ownProps) => ({
|
||||||
mediaPaths: state.mediaLibrary.get('controlMedia'),
|
mediaPaths: state.mediaLibrary.get('controlMedia'),
|
||||||
boundGetAsset: getAsset.bind(null, state),
|
boundGetAsset: getAsset.bind(null, state),
|
||||||
|
isFetching: state.search.get('isFetching'),
|
||||||
|
queryHits: state.search.get('queryHits'),
|
||||||
});
|
});
|
||||||
|
|
||||||
const mapDispatchToProps = {
|
const mapDispatchToProps = {
|
||||||
openMediaLibrary,
|
openMediaLibrary,
|
||||||
removeInsertedMedia,
|
removeInsertedMedia,
|
||||||
addAsset,
|
addAsset,
|
||||||
|
query,
|
||||||
|
clearSearch,
|
||||||
};
|
};
|
||||||
|
|
||||||
const ConnectedEditorControl = connect(mapStateToProps, mapDispatchToProps)(EditorControl);
|
const ConnectedEditorControl = connect(
|
||||||
|
mapStateToProps,
|
||||||
|
mapDispatchToProps,
|
||||||
|
null,
|
||||||
|
{ withRef: true },
|
||||||
|
)(EditorControl);
|
||||||
|
|
||||||
export default ConnectedEditorControl;
|
export default ConnectedEditorControl;
|
||||||
|
@ -41,6 +41,13 @@ export default class Widget extends Component {
|
|||||||
getAsset: PropTypes.func.isRequired,
|
getAsset: PropTypes.func.isRequired,
|
||||||
resolveWidget: PropTypes.func.isRequired,
|
resolveWidget: PropTypes.func.isRequired,
|
||||||
getEditorComponents: PropTypes.func.isRequired,
|
getEditorComponents: PropTypes.func.isRequired,
|
||||||
|
isFetching: PropTypes.node,
|
||||||
|
query: PropTypes.func.isRequired,
|
||||||
|
clearSearch: PropTypes.func.isRequired,
|
||||||
|
queryHits: PropTypes.oneOfType([
|
||||||
|
PropTypes.array,
|
||||||
|
PropTypes.object,
|
||||||
|
]),
|
||||||
};
|
};
|
||||||
|
|
||||||
shouldComponentUpdate(nextProps) {
|
shouldComponentUpdate(nextProps) {
|
||||||
@ -194,6 +201,10 @@ export default class Widget extends Component {
|
|||||||
uniqueFieldId,
|
uniqueFieldId,
|
||||||
resolveWidget,
|
resolveWidget,
|
||||||
getEditorComponents,
|
getEditorComponents,
|
||||||
|
query,
|
||||||
|
queryHits,
|
||||||
|
clearSearch,
|
||||||
|
isFetching,
|
||||||
} = this.props;
|
} = this.props;
|
||||||
return React.createElement(controlComponent, {
|
return React.createElement(controlComponent, {
|
||||||
field,
|
field,
|
||||||
@ -219,6 +230,10 @@ export default class Widget extends Component {
|
|||||||
editorControl,
|
editorControl,
|
||||||
resolveWidget,
|
resolveWidget,
|
||||||
getEditorComponents,
|
getEditorComponents,
|
||||||
|
query,
|
||||||
|
queryHits,
|
||||||
|
clearSearch,
|
||||||
|
isFetching,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,35 +0,0 @@
|
|||||||
.react-autosuggest__container {
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
|
|
||||||
.react-autosuggest__suggestions-container {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.react-autosuggest__container--open .react-autosuggest__suggestions-container {
|
|
||||||
@apply(--dropdownList);
|
|
||||||
position: absolute;
|
|
||||||
display: block;
|
|
||||||
top: 51px;
|
|
||||||
width: 100%;
|
|
||||||
z-index: 2;
|
|
||||||
}
|
|
||||||
|
|
||||||
.react-autosuggest__suggestion {
|
|
||||||
@apply(--dropdownItem);
|
|
||||||
}
|
|
||||||
|
|
||||||
.react-autosuggest__suggestions-list {
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
list-style-type: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.react-autosuggest__suggestion {
|
|
||||||
cursor: pointer;
|
|
||||||
padding: 10px 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.react-autosuggest__suggestion--focused {
|
|
||||||
background-color: #ddd;
|
|
||||||
}
|
|
@ -1 +0,0 @@
|
|||||||
@import "./ReactAutosuggest.css";
|
|
@ -1,10 +0,0 @@
|
|||||||
import PropTypes from 'prop-types';
|
|
||||||
import React from 'react';
|
|
||||||
|
|
||||||
export default function RelationPreview({ value }) {
|
|
||||||
return <div className="nc-widgetPreview">{ value }</div>;
|
|
||||||
}
|
|
||||||
|
|
||||||
RelationPreview.propTypes = {
|
|
||||||
value: PropTypes.node,
|
|
||||||
};
|
|
@ -1,8 +1,5 @@
|
|||||||
import { registerWidget } from 'Lib/registry';
|
import { registerWidget } from 'Lib/registry';
|
||||||
import UnknownControl from './Unknown/UnknownControl';
|
import UnknownControl from './Unknown/UnknownControl';
|
||||||
import UnknownPreview from './Unknown/UnknownPreview';
|
import UnknownPreview from './Unknown/UnknownPreview';
|
||||||
import RelationControl from './Relation/RelationControl';
|
|
||||||
import RelationPreview from './Relation/RelationPreview';
|
|
||||||
|
|
||||||
registerWidget('relation', RelationControl, RelationPreview);
|
|
||||||
registerWidget('unknown', UnknownControl, UnknownPreview);
|
registerWidget('unknown', UnknownControl, UnknownPreview);
|
||||||
|
@ -30,10 +30,7 @@ const StyledDropdownButton = styled(DropdownButton)`
|
|||||||
`
|
`
|
||||||
|
|
||||||
const DropdownList = styled.ul`
|
const DropdownList = styled.ul`
|
||||||
${shadows.dropDeep};
|
${components.dropdownList};
|
||||||
background-color: ${colorsRaw.white};
|
|
||||||
border-radius: ${lengths.borderRadius};
|
|
||||||
overflow: hidden;
|
|
||||||
margin: 0;
|
margin: 0;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0;
|
top: 0;
|
||||||
@ -50,27 +47,7 @@ const DropdownList = styled.ul`
|
|||||||
`
|
`
|
||||||
|
|
||||||
const StyledMenuItem = styled(MenuItem)`
|
const StyledMenuItem = styled(MenuItem)`
|
||||||
${buttons.button};
|
${components.dropdownItem};
|
||||||
background-color: transparent;
|
|
||||||
border-radius: 0;
|
|
||||||
color: ${colorsRaw.gray};
|
|
||||||
font-weight: 500;
|
|
||||||
border-bottom: 1px solid #eaebf1;
|
|
||||||
padding: 10px 14px;
|
|
||||||
display: flex;
|
|
||||||
justify-content: space-between;
|
|
||||||
align-items: center;
|
|
||||||
|
|
||||||
&:last-of-type {
|
|
||||||
border-bottom: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
&:hover,
|
|
||||||
&:active,
|
|
||||||
&:focus {
|
|
||||||
color: ${colors.active};
|
|
||||||
background-color: ${colors.activeBackground};
|
|
||||||
}
|
|
||||||
`
|
`
|
||||||
|
|
||||||
const MenuItemIconContainer = styled.div`
|
const MenuItemIconContainer = styled.div`
|
||||||
|
@ -256,6 +256,35 @@ const components = {
|
|||||||
objectWidgetTopBarContainer: css`
|
objectWidgetTopBarContainer: css`
|
||||||
padding: 0 14px 14px;
|
padding: 0 14px 14px;
|
||||||
`,
|
`,
|
||||||
|
dropdownList: css`
|
||||||
|
${shadows.dropDeep};
|
||||||
|
background-color: ${colorsRaw.white};
|
||||||
|
border-radius: ${lengths.borderRadius};
|
||||||
|
overflow: hidden;
|
||||||
|
`,
|
||||||
|
dropdownItem: css`
|
||||||
|
${buttons.button};
|
||||||
|
background-color: transparent;
|
||||||
|
border-radius: 0;
|
||||||
|
color: ${colorsRaw.gray};
|
||||||
|
font-weight: 500;
|
||||||
|
border-bottom: 1px solid #eaebf1;
|
||||||
|
padding: 10px 14px;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
&:last-of-type {
|
||||||
|
border-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:hover,
|
||||||
|
&:active,
|
||||||
|
&:focus {
|
||||||
|
color: ${colors.active};
|
||||||
|
background-color: ${colors.activeBackground};
|
||||||
|
}
|
||||||
|
`,
|
||||||
}
|
}
|
||||||
|
|
||||||
injectGlobal`
|
injectGlobal`
|
||||||
|
35
packages/netlify-cms-widget-relation/package.json
Normal file
35
packages/netlify-cms-widget-relation/package.json
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
{
|
||||||
|
"name": "netlify-cms-widget-relation",
|
||||||
|
"description": "Widget for linking related entries in Netlify CMS.",
|
||||||
|
"version": "2.0.0-alpha.0",
|
||||||
|
"main": "dist/netlify-cms-widget-relation.js",
|
||||||
|
"license": "MIT",
|
||||||
|
"keywords": [
|
||||||
|
"netlify",
|
||||||
|
"netlify-cms",
|
||||||
|
"widget",
|
||||||
|
"relation",
|
||||||
|
"link"
|
||||||
|
],
|
||||||
|
"sideEffects": false,
|
||||||
|
"scripts": {
|
||||||
|
"watch": "webpack -w",
|
||||||
|
"build": "webpack"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"react-autosuggest": "^9.3.2"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"webpack": "^4.16.1",
|
||||||
|
"webpack-cli": "^3.1.0"
|
||||||
|
},
|
||||||
|
"peerDependencies": {
|
||||||
|
"immutable": "^3.7.6",
|
||||||
|
"lodash": "^4.17.10",
|
||||||
|
"netlify-cms-ui-default": "^2.0.0-alpha.0",
|
||||||
|
"prop-types": "^15.5.10",
|
||||||
|
"react": "^16.4.1",
|
||||||
|
"react-emotion": "^9.2.5",
|
||||||
|
"uuid": "^3.1.0"
|
||||||
|
}
|
||||||
|
}
|
@ -1,18 +1,61 @@
|
|||||||
|
import React from 'react';
|
||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
import React, { Component } from 'react';
|
import { css } from 'react-emotion';
|
||||||
import Autosuggest from 'react-autosuggest';
|
import Autosuggest from 'react-autosuggest';
|
||||||
import uuid from 'uuid/v4';
|
import uuid from 'uuid/v4';
|
||||||
import { List, Map } from 'immutable';
|
import { List, Map } from 'immutable';
|
||||||
import { connect } from 'react-redux';
|
|
||||||
import { debounce } from 'lodash';
|
import { debounce } from 'lodash';
|
||||||
import { query, clearSearch } from 'Actions/search';
|
import { Loader, components } from 'netlify-cms-ui-default';
|
||||||
import { Loader } from 'netlify-cms-ui-default';
|
|
||||||
|
/**
|
||||||
|
* Create a classname for use as a descendant selector. This is generally
|
||||||
|
* discouraged in Emotion because composition will break the resulting
|
||||||
|
* classnames, but we won't be using composition here.
|
||||||
|
*/
|
||||||
|
const styles = {
|
||||||
|
suggestionsContainer: css`
|
||||||
|
display: none;
|
||||||
|
`,
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* react-autosuggest theme spec:
|
||||||
|
* https://github.com/moroshko/react-autosuggest#theme-optional
|
||||||
|
*/
|
||||||
|
const theme = {
|
||||||
|
container: css`
|
||||||
|
position: relative;
|
||||||
|
`,
|
||||||
|
containerOpen: css`
|
||||||
|
${styles.suggestionsContainer} {
|
||||||
|
${components.dropdownList}
|
||||||
|
position: absolute;
|
||||||
|
display: block;
|
||||||
|
top: 51px;
|
||||||
|
width: 100%;
|
||||||
|
z-index: 2;
|
||||||
|
}
|
||||||
|
`,
|
||||||
|
suggestion: css`
|
||||||
|
${components.drodpownItem};
|
||||||
|
cursor: pointer;
|
||||||
|
padding: 10px 20px;
|
||||||
|
`,
|
||||||
|
suggestionsList: css`
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
list-style-type: none;
|
||||||
|
`,
|
||||||
|
suggestionHighlighted: css`
|
||||||
|
background-color: #ddd;
|
||||||
|
`,
|
||||||
|
};
|
||||||
|
|
||||||
function escapeRegexCharacters(str) {
|
function escapeRegexCharacters(str) {
|
||||||
return str.replace(/[.*+?^${}()|[\]\\]/g, '\\$&');
|
return str.replace(/[.*+?^${}()|[\]\\]/g, '\\$&');
|
||||||
}
|
}
|
||||||
|
|
||||||
class RelationControl extends Component {
|
export default class RelationControl extends React.Component {
|
||||||
static propTypes = {
|
static propTypes = {
|
||||||
onChange: PropTypes.func.isRequired,
|
onChange: PropTypes.func.isRequired,
|
||||||
forID: PropTypes.string.isRequired,
|
forID: PropTypes.string.isRequired,
|
||||||
@ -50,12 +93,15 @@ class RelationControl extends Component {
|
|||||||
}
|
}
|
||||||
|
|
||||||
componentWillReceiveProps(nextProps) {
|
componentWillReceiveProps(nextProps) {
|
||||||
|
console.log(`receiving`);
|
||||||
|
console.log(nextProps.queryHits && nextProps.queryHits.get(this.controlID));
|
||||||
if (this.didInitialSearch) return;
|
if (this.didInitialSearch) return;
|
||||||
if (nextProps.queryHits !== this.props.queryHits && nextProps.queryHits.get && nextProps.queryHits.get(this.controlID)) {
|
if (nextProps.queryHits !== this.props.queryHits && nextProps.queryHits.get && nextProps.queryHits.get(this.controlID)) {
|
||||||
this.didInitialSearch = true;
|
this.didInitialSearch = true;
|
||||||
const suggestion = nextProps.queryHits.get(this.controlID);
|
const suggestion = nextProps.queryHits.get(this.controlID);
|
||||||
if (suggestion && suggestion.length === 1) {
|
if (suggestion && suggestion.length === 1) {
|
||||||
const val = this.getSuggestionValue(suggestion[0]);
|
const val = this.getSuggestionValue(suggestion[0]);
|
||||||
|
console.log(`accepting ${val}`);
|
||||||
this.props.onChange(val, { [nextProps.field.get('collection')]: { [val]: suggestion[0].data } });
|
this.props.onChange(val, { [nextProps.field.get('collection')]: { [val]: suggestion[0].data } });
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -75,6 +121,7 @@ class RelationControl extends Component {
|
|||||||
const { field } = this.props;
|
const { field } = this.props;
|
||||||
const collection = field.get('collection');
|
const collection = field.get('collection');
|
||||||
const searchFields = field.get('searchFields').toJS();
|
const searchFields = field.get('searchFields').toJS();
|
||||||
|
console.log(`querying ${value}`);
|
||||||
this.props.query(this.controlID, collection, searchFields, value);
|
this.props.query(this.controlID, collection, searchFields, value);
|
||||||
}, 500);
|
}, 500);
|
||||||
|
|
||||||
@ -135,28 +182,10 @@ class RelationControl extends Component {
|
|||||||
renderSuggestion={this.renderSuggestion}
|
renderSuggestion={this.renderSuggestion}
|
||||||
inputProps={inputProps}
|
inputProps={inputProps}
|
||||||
focusInputOnSuggestionClick={false}
|
focusInputOnSuggestionClick={false}
|
||||||
|
theme={theme}
|
||||||
/>
|
/>
|
||||||
<Loader active={isFetching === this.controlID} />
|
<Loader active={isFetching === this.controlID} />
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
|
|
||||||
function mapStateToProps(state, ownProps) {
|
|
||||||
const { className } = ownProps;
|
|
||||||
const isFetching = state.search.get('isFetching');
|
|
||||||
const queryHits = state.search.get('queryHits');
|
|
||||||
return { isFetching, queryHits, className };
|
|
||||||
}
|
|
||||||
|
|
||||||
export default connect(
|
|
||||||
mapStateToProps,
|
|
||||||
{
|
|
||||||
query,
|
|
||||||
clearSearch,
|
|
||||||
},
|
|
||||||
null,
|
|
||||||
{
|
|
||||||
withRef: true,
|
|
||||||
}
|
|
||||||
)(RelationControl);
|
|
13
packages/netlify-cms-widget-relation/src/RelationPreview.js
Normal file
13
packages/netlify-cms-widget-relation/src/RelationPreview.js
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
import React from 'react';
|
||||||
|
import PropTypes from 'prop-types';
|
||||||
|
import { WidgetPreviewContainer } from 'netlify-cms-ui-default';
|
||||||
|
|
||||||
|
const RelationPreview = ({ value }) => (
|
||||||
|
<WidgetPreviewContainer>{ value }</WidgetPreviewContainer>
|
||||||
|
)
|
||||||
|
|
||||||
|
RelationPreview.propTypes = {
|
||||||
|
value: PropTypes.node,
|
||||||
|
};
|
||||||
|
|
||||||
|
export default RelationPreview;
|
2
packages/netlify-cms-widget-relation/src/index.js
Normal file
2
packages/netlify-cms-widget-relation/src/index.js
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
export RelationControl from './RelationControl';
|
||||||
|
export RelationPreview from './RelationPreview';
|
3
packages/netlify-cms-widget-relation/webpack.config.js
Normal file
3
packages/netlify-cms-widget-relation/webpack.config.js
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
const { getConfig } = require('../../scripts/webpack.js');
|
||||||
|
|
||||||
|
module.exports = getConfig();
|
Loading…
x
Reference in New Issue
Block a user