2017-04-13 09:20:47 -07:00
# Extending With Widgets
2017-03-28 08:01:03 -07:00
2017-06-09 20:40:50 +01:00
The NetlifyCMS exposes an `window.CMS` global object that you can use to register custom widgets, previews and editor plugins. The available widget extension methods are:
2017-02-08 16:28:57 -02:00
* **registerWidget** lets you register a custom widget.
* **registerEditorComponent** lets you add a block component to the Markdown editor
2017-03-28 08:01:03 -07:00
### Writing React Components inline
2017-03-06 17:57:43 -05:00
2017-03-28 08:01:03 -07:00
The registerWidget requires you to provide a React component. If you have a build process in place for your project, it is possible to integrate
2017-03-06 17:57:43 -05:00
2017-03-28 08:01:03 -07:00
Although possible, it may be cumbersome or even impractical to add a React build phase. For this reason, NetlifyCMS exposes two constructs globally to allow you to create components inline: ‘ createClass’ and ‘ h’ (alias for React.createElement).
2017-03-06 17:57:43 -05:00
2017-03-28 08:01:03 -07:00
## `registerWidget`
2017-02-08 16:28:57 -02:00
2017-03-28 08:01:03 -07:00
Register a custom widget.
2017-02-08 16:28:57 -02:00
```js
2017-03-28 08:01:03 -07:00
CMS.registerWidget(field, control, \[preview\])
2017-02-08 16:28:57 -02:00
```
**Params:**
2017-03-28 08:01:03 -07:00
* **field:** The field type which this widget will be used for.
* **control:** A React component that renders the editing interface for this field. Two props will be passed:
* **value:** The current value for this field.
* **onChange:** Callback function to update the field value.
* **preview (optional):** A React component that renders the preview of how the content will look. A `value` prop will be passed to this component.
2017-02-08 16:28:57 -02:00
**Example:**
```html
2017-06-24 03:12:52 +01:00
< script src = "https://unpkg.com/netlify-cms@~0.4/dist/cms.js" > < / script >
2017-02-08 16:28:57 -02:00
< script >
var CategoriesControl = createClass({
handleChange: function(e) {
this.props.onChange(e.target.value.split(',').map((e) => e.trim()));
},
render: function() {
var value = this.props.value;
return h('input', { type: 'text', value: value ? value.join(', ') : '', onChange: this.handleChange });
}
});
CMS.registerWidget('categories', CategoriesControl);
< / script >
```
## `registerEditorComponent`
2017-03-28 08:01:03 -07:00
Register a block level component for the Markdown editor
2017-02-08 16:28:57 -02:00
2017-03-28 08:01:03 -07:00
CMS.registerEditorComponent(definition)
2017-02-08 16:28:57 -02:00
**Params**
2017-03-28 08:01:03 -07:00
* **definition:** The component definition, must specify: id, label, fields, patterns, fromBlock, toBlock, toPreview
2017-02-08 16:28:57 -02:00
**Example:**
2017-03-28 08:01:03 -07:00
```html
2017-06-24 03:12:52 +01:00
< script src = "https://unpkg.com/netlify-cms@~0.4/dist/cms.js" > < / script >
2017-03-28 08:01:03 -07:00
< script >
2017-02-08 16:28:57 -02:00
CMS.registerEditorComponent({
// Internal id of the component
id: "youtube",
// Visible label
label: "Youtube",
// Fields the user need to fill out when adding an instance of the component
fields: [{name: 'id', label: 'Youtube Video ID', widget: 'string'}],
// Pattern to identify a block as being an instance of this component
2017-03-28 08:01:03 -07:00
pattern: youtube (\S+)\s,
2017-02-08 16:28:57 -02:00
// Function to extract data elements from the regexp match
fromBlock: function(match) {
return {
id: match[1]
};
},
// Function to create a text block from an instance of this component
toBlock: function(obj) {
2017-03-28 08:01:03 -07:00
return 'youtube ' + obj.id;
2017-02-08 16:28:57 -02:00
},
// Preview output for this component. Can either be a string or a React component
// (Component gives better render performance)
toPreview: function(obj) {
return (
'< img src = "http://img.youtube.com/vi/' + obj.id + '/maxresdefault.jpg" alt = "Youtube Video" / > '
);
}
});
2017-03-28 08:01:03 -07:00
< / script >
2017-02-08 16:28:57 -02:00
```
2017-03-28 08:01:03 -07:00
**Result:**
![youtube-widget ](/img/youtube-widget.png )