CKEDITOR.plugins.embedBase.baseDefinition
An embed widget base definition. It predefines a few widget definition properties such as mask, template and pathName and adds methods related to content embedding.
To create a base definition use the CKEDITOR.plugins.embedBase.createWidgetBaseDefinition method.
Note: For easier browsing of this class's API you can hide inherited method using the "Show" drop-down on the right-hand side.
Filtering
Properties
allowedContent : allowedContentRulesCKEDITOR.plugins.embedBase.baseDefinition#allowedContentHTML code that can be generated by this feature.
For example a basic image feature (image button displaying the image dialog window) may allow
'img[!src,alt,width,height]'.During the feature activation this value is passed to CKEDITOR.filter.allow.
Defaults to
nullbutton : StringCKEDITOR.plugins.embedBase.baseDefinition#buttonThe label for the widget toolbar button.
editor.widgets.add( 'simplebox', { button: 'Create a simple box' } ); editor.widgets.add( 'simplebox', { button: editor.lang.simplebox.title } );contentForms : ObjectCKEDITOR.plugins.embedBase.baseDefinition#contentFormsFeature content forms to be registered in the CKEDITOR.editor.filter during the feature activation.
See CKEDITOR.filter.addContentForms for more details.
Defaults to
nullcontentTransformations : ObjectCKEDITOR.plugins.embedBase.baseDefinition#contentTransformationsTransformations (usually for content generated by this feature, but not necessarily) that will be registered in the CKEDITOR.editor.filter during the feature activation.
See CKEDITOR.filter.addTransformations for more details.
Defaults to
nulldata : FunctionCKEDITOR.plugins.embedBase.baseDefinition#dataIf set, it will be added as the CKEDITOR.plugins.widget.data event listener. This means that it will be executed every time the widget data changes.
defaults : ObjectCKEDITOR.plugins.embedBase.baseDefinition#defaultsThe data object which will be used to populate the data of a newly created widget. See CKEDITOR.plugins.widget.data.
defaults: { showCaption: true, align: 'none' }dialog : StringCKEDITOR.plugins.embedBase.baseDefinition#dialogThe name of a dialog window which will be opened on CKEDITOR.plugins.widget.edit. If not defined, then the CKEDITOR.plugins.widget.edit method will not perform any action and widget's command will insert a new widget without opening a dialog window first.
downcast : String | FunctionCKEDITOR.plugins.embedBase.baseDefinition#downcastThe function to be used to downcast this widget or a name of the downcast option from the downcasts object.
The downcast function will be executed in the CKEDITOR.plugins.widget context and with
widgetElement(CKEDITOR.htmlParser.element) argument which is the widget's main element.The function may return an instance of the CKEDITOR.htmlParser.node class if the widget needs to be downcasted to a different node than the widget's main element.
downcasts : ObjectCKEDITOR.plugins.embedBase.baseDefinition#downcastsThe object containing functions which can be used to downcast this widget. Only the one pointed by the downcast property will be used.
In most cases it is appropriate to use downcast directly, because majority of widgets have just one variant of downcasting (or none at all). However, in some cases the widget author may want to expose more than one variant and then this property may be used.
downcasts: { // This downcast may transform the widget into the figure element. figure: function() { // ... }, // This downcast may transform the widget into the image element with data-* attributes. image: function() { // ... } } // Then, the widget user may choose one of the downcast options when setting up his editor. editor.on( 'widgetDefinition', function( evt ) { if ( evt.data.name == 'image' ) evt.data.downcast = 'figure'; } );draggable : BooleanCKEDITOR.plugins.embedBase.baseDefinition#draggableWhether the widget should be draggable. Defaults to
true. If set tofalse, the drag handler will not be displayed when hovering the widget.edit : FunctionCKEDITOR.plugins.embedBase.baseDefinition#editIf set, it will be added as the CKEDITOR.plugins.widget.edit event listener. This means that it will be executed when a widget is being edited. See the CKEDITOR.plugins.widget.edit method.
editables : ObjectCKEDITOR.plugins.embedBase.baseDefinition#editablesAn object containing definitions of nested editables (editable name => CKEDITOR.plugins.widget.nestedEditable.definition). Note that editables have to be defined in the same order as they are in DOM / template. Otherwise errors will occur when nesting widgets inside each other.
editables: { header: 'h1', content: { selector: 'div.content', allowedContent: 'p strong em; a[!href]' } }getLabel : FunctionCKEDITOR.plugins.embedBase.baseDefinition#getLabelinit : FunctionCKEDITOR.plugins.embedBase.baseDefinition#initThe method executed while initializing a widget, after a widget instance is created, but before it is ready. It is executed before the first CKEDITOR.plugins.widget.data is fired so it is common to use the
initmethod to populate widget data with information loaded from the DOM, like for exmaple:init: function() { this.setData( 'width', this.element.getStyle( 'width' ) ); if ( this.parts.caption.getStyle( 'display' ) != 'none' ) this.setData( 'showCaption', true ); }inline : BooleanCKEDITOR.plugins.embedBase.baseDefinition#inlineIf set to
true/false, it will force the widget to be either an inline or a block widget. If not set, the widget type will be determined from the widget element.Widget type influences whether a block (
<div>) or an inline (<span>) element is used for the wrapper.insert : FunctionCKEDITOR.plugins.embedBase.baseDefinition#insertThe method to be executed when the widget's command is executed in order to insert a new widget (widget of this type is not focused). If not defined, then the default action will be performed which means that:
- An instance of the widget will be created in a detached document fragment,
- The CKEDITOR.plugins.widget.edit method will be called to trigger widget editing,
- The widget element will be inserted into DOM.
Parameters
options : ObjectOptions object added in 4.11.0.
mask : Boolean | StringCKEDITOR.plugins.embedBase.baseDefinition#maskIf set to
true, the widget's element will be covered with a transparent mask. This will prevent its content from being clickable, which matters in case of special elements like embedded iframes that generate a separate "context".If the value is a
stringtype, then the partial mask covering only the given widget part is created instead. Thestringmask should point to the name of one of the widget parts.Note: Partial mask is available since the
4.13.0version.-
Widget definition name. It is automatically set when the definition is registered.
parts : ObjectCKEDITOR.plugins.embedBase.baseDefinition#partsAn object containing definitions of widget components (part name => CSS selector).
parts: { image: 'img', caption: 'div.caption' }pathName : StringCKEDITOR.plugins.embedBase.baseDefinition#pathNameThe widget name displayed in the elements path.
providerUrl : templateCKEDITOR.plugins.embedBase.baseDefinition#providerUrlThe template used to generate the URL of the content provider. Content provider is a service which the embed widget will request in order to get an oEmbed response that can be transformed into content which can be embedded in the editor.
Example content providers are:
Both Iframely and Noembed are proxy services which support JSONP requests, hence they are not limited by the same-origin policy. Unfortunately, usually oEmbed services exposed by real content providers like YouTube or Twitter do not support XHR with CORS or do not support oEmbed at all which makes it impossible or hard to get such content to be embedded in the editor. This problem is solved by proxy content providers like Iframely and Noembed.
This property must be defined after creating an embed widget base definition.
By default two values are passed to the template:
{url}– The URL of the resource to be embedded.{callback}– The JSONP callback to be executed.
Example value:
widgetDefinition.providerUrl = new CKEDITOR.template( '//ckeditor.iframe.ly/api/oembed?url={url}&callback={callback}' );requiredContent : contentRuleCKEDITOR.plugins.embedBase.baseDefinition#requiredContentMinimal HTML code that this feature must be allowed to generate in order to work.
For example a basic image feature (image button displaying the image dialog window) needs
'img[src,alt]'in order to be activated.During the feature validation this value is passed to CKEDITOR.filter.check.
If this value is not provided, a feature will be always activated.
Defaults to
nullsince 4.4.0
styleToAllowedContentRules : FunctionCKEDITOR.plugins.embedBase.baseDefinition#styleToAllowedContentRulesFunction transforming custom widget's CKEDITOR.style instance into CKEDITOR.filter.allowedContentRules. It may be used when a static styleableElements property is not enough to inform the CKEDITOR.filter what HTML features should be enabled when allowing the given style.
In most cases, when style's classes just have to be added to element name(s) used by the widget element, it is recommended to use simpler styleableElements property.
In order to get parsed classes from the style definition you can use CKEDITOR.style.customHandlers.widget.getClassesArray.
For example, if you want to use the object format of allowed content rules, to specify
matchvalidator, your implementation could look like this:editor.widgets.add( 'customWidget', { // ... styleToAllowedContentRules: funciton( style ) { // Retrieve classes defined in the style. var classes = style.getClassesArray(); // Do something crazy - for example return allowed content rules in object format, // with custom match property and propertiesOnly flag. return { h1: { match: isWidgetElement, propertiesOnly: true, classes: classes } }; } } );Parameters
style : widgetThe style to be transformed.
-
Names of element(s) (separated by spaces) for which the CKEDITOR.filter should allow classes defined in the widget styles. For example, if your widget is upcasted from a simple
<div>element, then in order to make it styleable you can set:editor.widgets.add( 'customWidget', { upcast: function( element ) { return element.name == 'div'; }, // ... styleableElements: 'div' } );Then, when the following style is defined:
{ name: 'Thick border', type: 'widget', widget: 'customWidget', attributes: { 'class': 'thickBorder' } }a rule allowing the
thickBorderclass fordivelements will be registered in the CKEDITOR.filter.If you need to have more freedom when transforming widget style to allowed content rules, you can use the styleToAllowedContentRules callback.
template : StringCKEDITOR.plugins.embedBase.baseDefinition#templateThe template which will be used to create a new widget element (when the widget's command is executed). This string is populated with default values by using the CKEDITOR.template format. Therefore it has to be a valid CKEDITOR.template argument.
upcast : String | FunctionCKEDITOR.plugins.embedBase.baseDefinition#upcastThe function to be used to upcast an element to this widget or a comma-separated list of upcast methods from the upcasts object.
The upcast function is not executed in the widget context (because the widget does not exist yet), however, it is executed in the widget's definition context. Two arguments are passed to the upcast function:
element(CKEDITOR.htmlParser.element) – The element to be checked.data(Object) – The object which can be extended with data which will then be passed to the widget.
An element will be upcasted if a function returned
trueor an instance of a CKEDITOR.htmlParser.element if upcasting meant DOM structure changes (in this case the widget will be initialized on the returned element).-
The upcast method(s) priority. The upcast with a lower priority number will be called before the one with a higher number. The default priority is
10.Defaults to
10 upcasts : ObjectCKEDITOR.plugins.embedBase.baseDefinition#upcastsThe object containing functions which can be used to upcast this widget. Only those pointed by the upcast property will be used.
In most cases it is appropriate to use upcast directly, because majority of widgets need just one method. However, in some cases the widget author may want to expose more than one variant and then this property may be used.
upcasts: { // This function may upcast only figure elements. figure: function() { // ... }, // This function may upcast only image elements. image: function() { // ... }, // More variants... } // Then, widget user may choose which upcast methods will be enabled. editor.on( 'widgetDefinition', function( evt ) { if ( evt.data.name == 'image' ) evt.data.upcast = 'figure,image'; // Use both methods. } );urlRegExp : RegExpCKEDITOR.plugins.embedBase.baseDefinition#urlRegExpA regular expression to pre-validate URLs.
See:
- [https://iframely.com/docs/providers],
- isUrlValid.
Defaults to
/^((https?:)?\/\/|www\.)/i-
Response cache. This cache object will be shared between all instances of this widget.
Defaults to
{}
Methods
-
Customizes widget HTML copied to the clipboard during copy, cut and drop operations.
If not set, the current widget HTML will be used instead.
Note: This method will overwrite the HTML for the whole widget, including any nested widgets.
Returns
StringWidget HTML.
getErrorMessage( messageTypeOrMessage, [ url ], [ suffix ] ) → StringCKEDITOR.plugins.embedBase.baseDefinition#getErrorMessageGenerates an error message based on the message type (with a possible suffix) or the custom message template.
This method is used when showing a notification or an alert (in a dialog) about an error. Usually it is used with an error type which is a string from the
editor.lang.embedbaseobject.There are two error types available at the moment:
'unsupportedUrl'and'fetchingFailed'. Additionally, both can be suffixed with'Given'. See the language entries to see the difference. Inside the dialog this method is used with a suffix and to generate a notification message it is used without a suffix.Additionally, a custom message may be passed and just like language entries, it can use the
{url}placeholder.While handling the response you can set an error message or its type. It will be passed to this method later.
widget.on( 'handleResponse', function( evt ) { if ( evt.data.response.type != 'rich' ) { evt.data.errorMessage = '{url} cannot be embedded. Only rich type is supported.'; evt.cancel(); // Or: evt.data.errorMessage = 'unsupportedUrl.'; evt.cancel(); } } );If you need to display your own error:
editor.showNotification( widget.getErrorMessage( '{url} cannot be embedded. Only rich type is supported.', wrongUrl ) );Or with a message type:
editor.showNotification( widget.getErrorMessage( 'unsupportedUrl', wrongUrl ) );Parameters
messageTypeOrMessage : String[ url ] : String[ suffix ] : String
Returns
String
isUrlValid( url ) → BooleanCKEDITOR.plugins.embedBase.baseDefinition#isUrlValidChecks whether the URL is valid. Usually the content provider makes the final validation as only the provider knows what kind of URLs are accepted. However, to give the user some immediate feedback a synchronous validation is performed using the urlRegExp pattern and the validateUrl event.
Parameters
url : StringThe URL to check.
Returns
BooleanWhether the URL is valid (supported).
loadContent( url, opts ) → requestCKEDITOR.plugins.embedBase.baseDefinition#loadContentLoads content for a given resource URL by requesting the provider.
Usually widgets are controlled by the CKEDITOR.plugins.widget.setData method. However, loading content is an asynchronous operation due to client-server communication, and it would not be possible to pass callbacks to the CKEDITOR.plugins.widget.setData method so this new method is defined for embed widgets.
This method fires two events that allow to customize widget behavior without changing its code:
- sendRequest,
- handleResponse (if the request was successful).
Note: This method is always asynchronous, even if the cache was hit.
Example usage:
var url = 'https://twitter.com/reinmarpl/status/573118615274315776'; widget.loadContent( url, { callback: function() { // Success. It is a good time to save a snapshot. editor.fire( 'saveSnapshot' ); console.log( widget.data.url ); // The above URL. It is only changed // once the content is successfully loaded. }, errorCallback: function( message ) { editor.showNotification( widget.getErrorMessage( message, url ), 'warning' ); } } );Parameters
url : StringResource URL to be embedded.
opts : Object
Returns
request
toFeature() → featureCKEDITOR.plugins.embedBase.baseDefinition#toFeatureReturns a feature that this feature needs to register.
In some cases, during activation, one feature may need to register another feature. For example a CKEDITOR.ui.button often registers a related command. See CKEDITOR.ui.button.toFeature.
This method is executed when a feature is passed to the CKEDITOR.editor.addFeature.
Returns
feature
-
-
private
_getCachedResponse( url ) → Object | undefinedCKEDITOR.plugins.embedBase.baseDefinition#_getCachedResponseReturns the cached response.
Parameters
url : String
Returns
Object | undefinedResponse or
undefinedif the cache was missed.
private
_handleError( request, messageTypeOrMessage )CKEDITOR.plugins.embedBase.baseDefinition#_handleErrorHandles an error. An error can be caused either by a request failure or an unsupported oEmbed response type.
Parameters
request : requestmessageTypeOrMessage : StringSee getErrorMessage.
private
_handleResponse( request ) → BooleanCKEDITOR.plugins.embedBase.baseDefinition#_handleResponseHandles the response of a successful request.
Fires the handleResponse event in order to convert the oEmbed response to HTML that can be embedded.
If the response can be handled, the content is set.
Parameters
request : request
Returns
BooleanWhether the response can be handled. Returns
falseif handleResponse was canceled or the default listener could not convert oEmbed response into embeddable HTML.
private
_responseToHtml( response ) → String | nullCKEDITOR.plugins.embedBase.baseDefinition#_responseToHtmlReturns embeddable HTML for an oEmbed response if it is of the
photo,videoorrichtype.Parameters
response : ObjectThe oEmbed response.
Returns
String | nullHTML string to be embedded or
nullif this response type is not supported.
-
-
The very final step of content loading. The
urldata property is changed and the content is embedded (CKEDITOR.plugins.widget.element's HTML is set).Parameters
url : StringThe resource URL.
content : StringHTML content to be embedded.
Events
handleResponse( evt )CKEDITOR.plugins.embedBase.baseDefinition#handleResponseFired after receiving a response from the provider. This event listener job is to turn the oEmbed response to embeddable HTML by setting
evt.data.html.widget.on( 'handleReaponse', function( evt ) { evt.data.html = customOembedToHtmlConverter( evt.data.response ); } );This event can also be canceled to indicate that the response cannot be handled. In such case the
evt.data.errorMessagemust be set (see getErrorMessage).widget.on( 'handleReaponse', function( evt ) { if ( evt.data.response.type == 'photo' ) { // Will display the editor.lang.embedbase.unsupportedUrl(Given) message. evt.data.errorMessage = 'unsupportedUrl'; evt.cancel(); } } );This event has a default late-listener (with a priority of
999) that, ifevt.data.htmlhas not been set yet, will try to handle the response by using the _responseToHtml method.Parameters
evt : eventInfo
sendRequest( evt )CKEDITOR.plugins.embedBase.baseDefinition#sendRequestFired by the loadContent method to dispatch a request to the provider. You can cancel this event and send the request using a different technique. By default, if the event is not stopped or canceled a request will be sent using the JSONP technique.
widget.on( 'sendRequest', function( evt ) { var request = evt.data; // Send the request using a technique of your choice (XHR with CORS for instance). myApp.requestOembedProvider( request.url, function( err, response ) { if ( err ) { request.errorCallback( err ); } else { request.callback( response ); } } ); // Do not call other listeners, so the default behavior (JSONP request) // will not be executed. evt.stop(); } );Parameters
evt : eventInfo
validateUrl( evt )CKEDITOR.plugins.embedBase.baseDefinition#validateUrl