Custom Editors
Build and Use Custom Editors to Support Your Content Editors
Last updated
Build and Use Custom Editors to Support Your Content Editors
Last updated
Custom editors enable developers to replace the default editors with HTML5 applications so that the editing experience of the Squidex Web App can be customized.
Technically speaking, a UI editor lives in a sandboxed iframe
,which interacts with the web application through a small SDK using messaging. This SDK is a proxy of the Angular ControlValueAccessor, without having the dependencies of Angular itself.
Let's take a look at what the code looks like:
You just have to reference the editor SDK and handle the events. You also have to push the current value to the web application whenever it changes. Validation will then happen automatically.
The SquidexFormField
class is the entry point to your editor.
Create a new instance when your editor is initialized.
Name | Description |
---|---|
| Gets the current value of the field. |
| Gets the current context information. More about that later. |
| Gets the current value of the content form. Can be used to access the values of other fields. |
| Get the language of the field editor. If the field is not localized the master language is passed through. |
| Get the index of the array item when the field is used within an array schema field. |
| Get the current disabled state of the field form. Disabled ( |
| Get the current fullscreen state of the field form. Fullscreen on ( |
| Notifies the control container that the editor has been touched, must be called when your custom editor looses the focus. |
| Cleanup the editor. Usually it is not needed to call this method. |
| Register a function that is invoked when the messaging communication with the management UI is established. After the callback is invoked you get retrieve values with the get methods. The context object will be passed to the callback. |
| Register a function that is invoked whenever the editor should either be enabled or disabled. A boolean value will be passed with either |
| Registers a function that is invoked whenever the editor has been moved within an array item. A number will passed to the function that represents the index, starting with 0. |
| Register a function that is invoked whenever the value of the field has changed. The value will be passed to the callback as argument. |
| Register a function that is invoked whenever the value of the content form has changed. The value will be passed to the callback as argument. |
| Register a function that is invoked whenever the language of the field is changed, because in same cases the editor is shared between languages. If the field is not localized the master language is passed through. |
| Register a function that is invoked whenever the fullscreen mode is changed. The function has one argument with the the fullscreen mode. |
| Navigates the Management UI to a new URL. Because the plugin is integrated as an iframe, you cannot use normal links as it would only change the URL within the iframe and not the URL of the Management UI. |
| Toggle the fullscreen mode and sends the current state to the management UI. The field editor is destroyed and recreated because it has to be moved inside the DOM. Therefore |
| Shows an info notification with the given text. |
| Shows an info notification with the given text. |
| Shows the dialog to pick assets and invokes the callback with an array of the selected assets when the dialog is closed. If no asset is selected an empty array will be passed to the callback. |
| Shows a confirm dialog with the given title and text and invokes the callback when the confirm or cancel button has been pressed or when the dialog is closed otherwise. The result will be passed to the dialog as boolean. |
The context object contains application information, such as the username and access token.
Example:
You can use apiUrl
, access_token
and token_type
to retrieve additional information from the API, for example, when you build a special editor to manage references or assets.
Squidex contains a few example editors that can help you to understand the flow, for example:
https://cloud.squidex.io/scripts/editor-context.html: Demonstrates the structure of the context object by displaying the JSON representation in a text field.
https://cloud.squidex.io/scripts/editor-combined.html: Demonstrates how to use the values of the other fields to calculate the value of the current field.
https://cloud.squidex.io/scripts/editor-log.html: Demonstrates the different callbacks by logging them in the browser console.
https://cloud.squidex.io/scripts/editor-simple.html: Demonstrates how to integrate the CKE editor into Squidex.
There are more example that you can use on your Apps:
Required Field Type: string
Reference: https://squidex.github.io/squidex-samples/editors/cke-simple.html
Clone the sample and configure the CKE editor as you need it.
Required Field Type: string
Reference: https://squidex.github.io/squidex-samples/editors/country-selector.html
Let's assume in the FoodCrunch use case, that a field needs to be added with the information about the country the startup is from. This can be achieved using the country selector editor:
Required Field Type: json
Reference: https://squidex.github.io/squidex-samples/editors/startups-category.html
The data format is a list of URL like paths for each product category that will be converted to a tree structure. An example for food startups category is listed below:
Citing the FoodCrunch use case again, let's say there's need to use a taxonomy to tag startups based on their operations:
Required Field Type: json
Reference: https://squidex.github.io/squidex-samples/editors/jstree-editor.html
Create a visual tree for a JSON object. For example, one of the food startups wants to show a visual tree of the locations they operate in around the world:
Required Field Type: string
Reference: https://squidex.github.io/squidex-samples/editors/react-jsonschema.html
This editor downloads the JSON schema from the URL that is defined via the URL fragment (everything after #):