ViewEditableElement
Editable element which can be a root or nested editable area in the editor.
Editable is automatically read-only when its Document is read-only.
The constructor of this class shouldn't be used directly. To create new ViewEditableElement use the downcastWriter#createEditableElement() method.
Properties
_classes : undefined | ViewTokenListreadonlyinheritedmodule:engine/view/editableelement~ViewEditableElement#_classesSet of classes associated with element instance.
Note that this is just an alias for
this._attrs.get( 'class' );module:engine/view/editableelement~ViewEditableElement#_stylesNormalized styles.
Note that this is just an alias for
this._attrs.get( 'style' );childCount : numberreadonlyinheritedmodule:engine/view/editableelement~ViewEditableElement#childCountNumber of element's children.
document : ViewDocumentreadonlyinheritedmodule:engine/view/editableelement~ViewEditableElement#documentThe document instance to which this node belongs.
index : null | numberreadonlyinheritedmodule:engine/view/editableelement~ViewEditableElement#indexIndex of the node in the parent element or null if the node has no parent.
Accessing this property throws an error if this node's parent element does not contain it. This means that view tree got broken.
isEmpty : booleanreadonlyinheritedmodule:engine/view/editableelement~ViewEditableElement#isEmptyIs
trueif there are no nodes inside this element,falseotherwise.isFocused : booleanreadonly observablemodule:engine/view/editableelement~ViewEditableElement#isFocusedWhether the editable is focused.
This property updates when document.isFocused or view selection is changed.
isReadOnly : booleanmodule:engine/view/editableelement~ViewEditableElement#isReadOnlyWhether the editable is in read-write or read-only mode.
name : stringreadonlyinheritedmodule:engine/view/editableelement~ViewEditableElement#nameName of the element.
nextSibling : null | ViewNodereadonlyinheritedmodule:engine/view/editableelement~ViewEditableElement#nextSiblingNode's next sibling, or
nullif it is the last child.parent : null | ViewElement | ViewDocumentFragmentreadonlyinheritedmodule:engine/view/editableelement~ViewEditableElement#parentParent element. Null by default. Set by
_insertChild.placeholder : string | undefinedmodule:engine/view/editableelement~ViewEditableElement#placeholderPlaceholder of editable element.
editor.editing.view.document.getRoot( 'main' ).placeholder = 'New placeholder';Copy codepreviousSibling : null | ViewNodereadonlyinheritedmodule:engine/view/editableelement~ViewEditableElement#previousSiblingNode's previous sibling, or
nullif it is the first child.root : ViewElement | ViewDocumentFragmentreadonlyinheritedmodule:engine/view/editableelement~ViewEditableElement#rootTop-most ancestor of the node. If the node has no parent it is the root itself.
_unsafeAttributesToRender : Array<string>internalreadonlyinheritedmodule:engine/view/editableelement~ViewEditableElement#_unsafeAttributesToRenderA list of attribute names that should be rendered in the editing pipeline even though filtering mechanisms implemented in the
ViewDomConverter(for instance,shouldRenderAttribute) would filter them out.These attributes can be specified as an option when the element is created by the
ViewDowncastWriter. To check whether an unsafe an attribute should be permitted, use theshouldRenderUnsafeAttributemethod.
Methods
constructor( document, name, [ attributes ], [ children ] )internalmodule:engine/view/editableelement~ViewEditableElement#constructorCreates an editable element.
Parameters
document : ViewDocumentThe document instance to which this element belongs.
name : stringNode name.
[ attributes ] : ViewElementAttributesCollection of attributes.
[ children ] : ViewNode | Iterable<ViewNode>A list of nodes to be inserted into created element.
Related:
bind( bindProperty1, bindProperty2 ) → ObservableDualBindChain<K1, ViewEditableElement[ K1 ], K2, ViewEditableElement[ K2 ]>inheritedmodule:engine/view/editableelement~ViewEditableElement#bind:DUAL_BINDBinds observable properties to other objects implementing the
Observableinterface.Read more in the dedicated guide covering the topic of property bindings with some additional examples.
Consider two objects: a
buttonand an associatedcommand(bothObservable).A simple property binding could be as follows:
button.bind( 'isEnabled' ).to( command, 'isEnabled' );Copy codeor even shorter:
button.bind( 'isEnabled' ).to( command );Copy codewhich works in the following way:
button.isEnabledinstantly equalscommand.isEnabled,- whenever
command.isEnabledchanges,button.isEnabledwill immediately reflect its value.
Note: To release the binding, use
unbind.You can also "rename" the property in the binding by specifying the new name in the
to()chain:button.bind( 'isEnabled' ).to( command, 'isWorking' );Copy codeIt is possible to bind more than one property at a time to shorten the code:
button.bind( 'isEnabled', 'value' ).to( command );Copy codewhich corresponds to:
button.bind( 'isEnabled' ).to( command ); button.bind( 'value' ).to( command );Copy codeThe binding can include more than one observable, combining multiple data sources in a custom callback:
button.bind( 'isEnabled' ).to( command, 'isEnabled', ui, 'isVisible', ( isCommandEnabled, isUIVisible ) => isCommandEnabled && isUIVisible );Copy codeUsing a custom callback allows processing the value before passing it to the target property:
button.bind( 'isEnabled' ).to( command, 'value', value => value === 'heading1' );Copy codeIt is also possible to bind to the same property in an array of observables. To bind a
buttonto multiple commands (alsoObservables) so that each and every one of them must be enabled for the button to become enabled, use the following code:button.bind( 'isEnabled' ).toMany( [ commandA, commandB, commandC ], 'isEnabled', ( isAEnabled, isBEnabled, isCEnabled ) => isAEnabled && isBEnabled && isCEnabled );Copy codeType parameters
K1K2
Parameters
bindProperty1 : K1Observable property that will be bound to other observable(s).
bindProperty2 : K2Observable property that will be bound to other observable(s).
Returns
ObservableDualBindChain<K1, ViewEditableElement[ K1 ], K2, ViewEditableElement[ K2 ]>The bind chain with the
to()andtoMany()methods.
bind( bindProperties ) → ObservableMultiBindChaininheritedmodule:engine/view/editableelement~ViewEditableElement#bind:MANY_BINDBinds observable properties to other objects implementing the
Observableinterface.Read more in the dedicated guide covering the topic of property bindings with some additional examples.
Consider two objects: a
buttonand an associatedcommand(bothObservable).A simple property binding could be as follows:
button.bind( 'isEnabled' ).to( command, 'isEnabled' );Copy codeor even shorter:
button.bind( 'isEnabled' ).to( command );Copy codewhich works in the following way:
button.isEnabledinstantly equalscommand.isEnabled,- whenever
command.isEnabledchanges,button.isEnabledwill immediately reflect its value.
Note: To release the binding, use
unbind.You can also "rename" the property in the binding by specifying the new name in the
to()chain:button.bind( 'isEnabled' ).to( command, 'isWorking' );Copy codeIt is possible to bind more than one property at a time to shorten the code:
button.bind( 'isEnabled', 'value' ).to( command );Copy codewhich corresponds to:
button.bind( 'isEnabled' ).to( command ); button.bind( 'value' ).to( command );Copy codeThe binding can include more than one observable, combining multiple data sources in a custom callback:
button.bind( 'isEnabled' ).to( command, 'isEnabled', ui, 'isVisible', ( isCommandEnabled, isUIVisible ) => isCommandEnabled && isUIVisible );Copy codeUsing a custom callback allows processing the value before passing it to the target property:
button.bind( 'isEnabled' ).to( command, 'value', value => value === 'heading1' );Copy codeIt is also possible to bind to the same property in an array of observables. To bind a
buttonto multiple commands (alsoObservables) so that each and every one of them must be enabled for the button to become enabled, use the following code:button.bind( 'isEnabled' ).toMany( [ commandA, commandB, commandC ], 'isEnabled', ( isAEnabled, isBEnabled, isCEnabled ) => isAEnabled && isBEnabled && isCEnabled );Copy codeParameters
bindProperties : Array<'index' | 'name' | 'off' | 'set' | 'bind' | 'unbind' | 'decorate' | 'stopListening' | 'on' | 'once' | 'listenTo' | 'fire' | 'delegate' | 'stopDelegating' | 'document' | 'parent' | 'nextSibling' | 'previousSibling' | 'getAttribute' | 'hasAttribute' | 'destroy' | 'root' | 'isReadOnly' | 'isFocused' | 'placeholder' | 'toJSON' | '_unsafeAttributesToRender' | 'childCount' | 'isEmpty' | 'getChild' | 'getChildIndex' | 'getChildren' | 'getAttributeKeys' | 'getAttributes' | 'isSimilar' | 'hasClass' | 'getClassNames' | 'getStyle' | 'getNormalizedStyle' | 'getStyleNames' | 'hasStyle' | 'findAncestor' | 'getCustomProperty' | 'getCustomProperties' | 'getIdentity' | 'shouldRenderUnsafeAttribute' | '_clone' | '_appendChild' | '_insertChild' | '_removeChildren' | '_setAttribute' | '_removeAttribute' | '_addClass' | '_removeClass' | '_setStyle' | '_removeStyle' | '_collectAttributesMatch' | '_getConsumables' | '_canMergeAttributesFrom' | '_mergeAttributesFrom' | '_canSubtractAttributesOf' | '_subtractAttributesOf' | '_setCustomProperty' | '_removeCustomProperty' | 'getFillerOffset' | 'isAttached' | 'getPath' | 'getAncestors' | 'getCommonAncestor' | 'isBefore' | 'isAfter' | '_remove' | '_fireChange' | 'is'>Observable properties that will be bound to other observable(s).
Returns
ObservableMultiBindChainThe bind chain with the
to()andtoMany()methods.
bind( bindProperty ) → ObservableSingleBindChain<K, ViewEditableElement[ K ]>inheritedmodule:engine/view/editableelement~ViewEditableElement#bind:SINGLE_BINDBinds observable properties to other objects implementing the
Observableinterface.Read more in the dedicated guide covering the topic of property bindings with some additional examples.
Consider two objects: a
buttonand an associatedcommand(bothObservable).A simple property binding could be as follows:
button.bind( 'isEnabled' ).to( command, 'isEnabled' );Copy codeor even shorter:
button.bind( 'isEnabled' ).to( command );Copy codewhich works in the following way:
button.isEnabledinstantly equalscommand.isEnabled,- whenever
command.isEnabledchanges,button.isEnabledwill immediately reflect its value.
Note: To release the binding, use
unbind.You can also "rename" the property in the binding by specifying the new name in the
to()chain:button.bind( 'isEnabled' ).to( command, 'isWorking' );Copy codeIt is possible to bind more than one property at a time to shorten the code:
button.bind( 'isEnabled', 'value' ).to( command );Copy codewhich corresponds to:
button.bind( 'isEnabled' ).to( command ); button.bind( 'value' ).to( command );Copy codeThe binding can include more than one observable, combining multiple data sources in a custom callback:
button.bind( 'isEnabled' ).to( command, 'isEnabled', ui, 'isVisible', ( isCommandEnabled, isUIVisible ) => isCommandEnabled && isUIVisible );Copy codeUsing a custom callback allows processing the value before passing it to the target property:
button.bind( 'isEnabled' ).to( command, 'value', value => value === 'heading1' );Copy codeIt is also possible to bind to the same property in an array of observables. To bind a
buttonto multiple commands (alsoObservables) so that each and every one of them must be enabled for the button to become enabled, use the following code:button.bind( 'isEnabled' ).toMany( [ commandA, commandB, commandC ], 'isEnabled', ( isAEnabled, isBEnabled, isCEnabled ) => isAEnabled && isBEnabled && isCEnabled );Copy codeType parameters
K
Parameters
bindProperty : KObservable property that will be bound to other observable(s).
Returns
ObservableSingleBindChain<K, ViewEditableElement[ K ]>The bind chain with the
to()andtoMany()methods.
decorate( methodName ) → voidinheritedmodule:engine/view/editableelement~ViewEditableElement#decorateTurns the given methods of this object into event-based ones. This means that the new method will fire an event (named after the method) and the original action will be plugged as a listener to that event.
Read more in the dedicated guide covering the topic of decorating methods with some additional examples.
Decorating the method does not change its behavior (it only adds an event), but it allows to modify it later on by listening to the method's event.
For example, to cancel the method execution the event can be stopped:
class Foo extends ObservableMixin() { constructor() { super(); this.decorate( 'method' ); } method() { console.log( 'called!' ); } } const foo = new Foo(); foo.on( 'method', ( evt ) => { evt.stop(); }, { priority: 'high' } ); foo.method(); // Nothing is logged.Copy codeNote: The high priority listener has been used to execute this particular callback before the one which calls the original method (which uses the "normal" priority).
It is also possible to change the returned value:
foo.on( 'method', ( evt ) => { evt.return = 'Foo!'; } ); foo.method(); // -> 'Foo'Copy codeFinally, it is possible to access and modify the arguments the method is called with:
method( a, b ) { console.log( `${ a }, ${ b }` ); } // ... foo.on( 'method', ( evt, args ) => { args[ 0 ] = 3; console.log( args[ 1 ] ); // -> 2 }, { priority: 'high' } ); foo.method( 1, 2 ); // -> '3, 2'Copy codeParameters
methodName : 'index' | 'name' | 'off' | 'set' | 'bind' | 'unbind' | 'decorate' | 'stopListening' | 'on' | 'once' | 'listenTo' | 'fire' | 'delegate' | 'stopDelegating' | 'document' | 'parent' | 'nextSibling' | 'previousSibling' | 'getAttribute' | 'hasAttribute' | 'destroy' | 'root' | 'isReadOnly' | 'isFocused' | 'placeholder' | 'toJSON' | '_unsafeAttributesToRender' | 'childCount' | 'isEmpty' | 'getChild' | 'getChildIndex' | 'getChildren' | 'getAttributeKeys' | 'getAttributes' | 'isSimilar' | 'hasClass' | 'getClassNames' | 'getStyle' | 'getNormalizedStyle' | 'getStyleNames' | 'hasStyle' | 'findAncestor' | 'getCustomProperty' | 'getCustomProperties' | 'getIdentity' | 'shouldRenderUnsafeAttribute' | '_clone' | '_appendChild' | '_insertChild' | '_removeChildren' | '_setAttribute' | '_removeAttribute' | '_addClass' | '_removeClass' | '_setStyle' | '_removeStyle' | '_collectAttributesMatch' | '_getConsumables' | '_canMergeAttributesFrom' | '_mergeAttributesFrom' | '_canSubtractAttributesOf' | '_subtractAttributesOf' | '_setCustomProperty' | '_removeCustomProperty' | 'getFillerOffset' | 'isAttached' | 'getPath' | 'getAncestors' | 'getCommonAncestor' | 'isBefore' | 'isAfter' | '_remove' | '_fireChange' | 'is'Name of the method to decorate.
Returns
void
delegate( events ) → EmitterMixinDelegateChaininheritedmodule:engine/view/editableelement~ViewEditableElement#delegateDelegates selected events to another
Emitter. For instance:emitterA.delegate( 'eventX' ).to( emitterB ); emitterA.delegate( 'eventX', 'eventY' ).to( emitterC );Copy codethen
eventXis delegated (fired by)emitterBandemitterCalong withdata:emitterA.fire( 'eventX', data );Copy codeand
eventYis delegated (fired by)emitterCalong withdata:emitterA.fire( 'eventY', data );Copy codeParameters
events : Array<string>Event names that will be delegated to another emitter.
Returns
destroy() → voidmodule:engine/view/editableelement~ViewEditableElement#destroyfindAncestor( patterns ) → null | ViewElementinheritedmodule:engine/view/editableelement~ViewEditableElement#findAncestorReturns ancestor element that match specified pattern. Provided patterns should be compatible with Matcher as it is used internally.
Parameters
patterns : Array<MatcherPattern | ( element: ViewElement ) => boolean>Patterns used to match correct ancestor. See
Matcher.
Returns
null | ViewElementFound element or
nullif no matching ancestor was found.
Related:
fire( eventOrInfo, args ) → GetEventInfo<TEvent>[ 'return' ]inheritedmodule:engine/view/editableelement~ViewEditableElement#fireFires an event, executing all callbacks registered for it.
The first parameter passed to callbacks is an
EventInfoobject, followed by the optionalargsprovided in thefire()method call.Type parameters
Parameters
eventOrInfo : GetNameOrEventInfo<TEvent>The name of the event or
EventInfoobject if event is delegated.args : TEvent[ 'args' ]Additional arguments to be passed to the callbacks.
Returns
GetEventInfo<TEvent>[ 'return' ]By default the method returns
undefined. However, the return value can be changed by listeners through modification of theevt.return's property (the event info is the first param of every callback).
getAncestors( options = { [options.includeSelf], [options.parentFirst] } ) → Array<ViewNode | ViewDocumentFragment>inheritedmodule:engine/view/editableelement~ViewEditableElement#getAncestorsReturns ancestors array of this node.
Parameters
options : objectOptions object.
Properties[ options.includeSelf ] : booleanWhen set to
truethis node will be also included in parent's array.[ options.parentFirst ] : booleanWhen set to
true, array will be sorted from node's parent to root element, otherwise root element will be the first item in the array.
Defaults to
{}
Returns
Array<ViewNode | ViewDocumentFragment>Array with ancestors.
getAttribute( key ) → undefined | stringinheritedmodule:engine/view/editableelement~ViewEditableElement#getAttributeGets attribute by key. If attribute is not present - returns undefined.
Parameters
key : stringAttribute key.
Returns
undefined | stringAttribute value.
getAttributeKeys() → IterableIterator<string>inheritedmodule:engine/view/editableelement~ViewEditableElement#getAttributeKeysReturns an iterator that contains the keys for attributes. Order of inserting attributes is not preserved.
Returns
IterableIterator<string>Keys for attributes.
getAttributes() → IterableIterator<tuple>inheritedmodule:engine/view/editableelement~ViewEditableElement#getAttributesReturns iterator that iterates over this element's attributes.
Attributes are returned as arrays containing two items. First one is attribute key and second is attribute value. This format is accepted by native
Mapobject and also can be passed inNodeconstructor.Returns
IterableIterator<tuple>
module:engine/view/editableelement~ViewEditableElement#getChildGets child at the given index.
Parameters
index : numberIndex of child.
Returns
undefined | ViewNodeChild node.
getChildIndex( node ) → numberinheritedmodule:engine/view/editableelement~ViewEditableElement#getChildIndexGets index of the given child node. Returns
-1if child node is not found.Parameters
node : ViewNodeChild node.
Returns
numberIndex of the child node.
getChildren() → IterableIterator<ViewNode>inheritedmodule:engine/view/editableelement~ViewEditableElement#getChildrengetClassNames() → IterableIterator<string>inheritedmodule:engine/view/editableelement~ViewEditableElement#getClassNamesReturns iterator that contains all class names.
Returns
IterableIterator<string>
getCommonAncestor( node, options = { [options.includeSelf] } ) → null | ViewElement | ViewDocumentFragmentinheritedmodule:engine/view/editableelement~ViewEditableElement#getCommonAncestorReturns a
ViewElementorViewDocumentFragmentwhich is a common ancestor of both nodes.Parameters
node : ViewNodeThe second node.
options : objectOptions object.
Properties[ options.includeSelf ] : booleanWhen set to
trueboth nodes will be considered "ancestors" too. Which means that if e.g. node A is inside B, then their common ancestor will be B.
Defaults to
{}
Returns
null | ViewElement | ViewDocumentFragment
getCustomProperties() → IterableIterator<tuple>inheritedmodule:engine/view/editableelement~ViewEditableElement#getCustomPropertiesReturns an iterator which iterates over this element's custom properties. Iterator provides
[ key, value ]pairs for each stored property.Returns
IterableIterator<tuple>
getCustomProperty( key ) → unknowninheritedmodule:engine/view/editableelement~ViewEditableElement#getCustomPropertyReturns the custom property value for the given key.
Parameters
key : string | symbol
Returns
unknown
getFillerOffset() → null | numberinheritedmodule:engine/view/editableelement~ViewEditableElement#getFillerOffsetgetIdentity() → stringinheritedmodule:engine/view/editableelement~ViewEditableElement#getIdentityReturns identity string based on element's name, styles, classes and other attributes. Two elements that are similar will have same identity string. It has the following format:
'name class="class1,class2" style="style1:value1;style2:value2" attr1="val1" attr2="val2"'Copy codeFor example:
const element = writer.createContainerElement( 'foo', { banana: '10', apple: '20', style: 'color: red; border-color: white;', class: 'baz' } ); // returns 'foo class="baz" style="border-color:white;color:red" apple="20" banana="10"' element.getIdentity();Copy codeNote: Classes, styles and other attributes are sorted alphabetically.
Returns
string
getNormalizedStyle( property ) → undefined | StyleValueinheritedmodule:engine/view/editableelement~ViewEditableElement#getNormalizedStyleReturns a normalized style object or single style value.
For an element with style set to: margin:1px 2px 3em;
element.getNormalizedStyle( 'margin' ) );Copy codewill return:
{ top: '1px', right: '2px', bottom: '3em', left: '2px' // a normalized value from margin shorthand }Copy codeand reading for single style value:
styles.getNormalizedStyle( 'margin-left' );Copy codeWill return a
2pxstring.Note: This method will return normalized values only if a particular style processor rule is enabled. See
StylesMap#getNormalized()for details.Parameters
property : stringName of CSS property
Returns
undefined | StyleValue
getPath() → Array<number>inheritedmodule:engine/view/editableelement~ViewEditableElement#getPathGets a path to the node. The path is an array containing indices of consecutive ancestors of this node, beginning from root, down to this node's index.
const abc = downcastWriter.createText( 'abc' ); const foo = downcastWriter.createText( 'foo' ); const h1 = downcastWriter.createElement( 'h1', null, downcastWriter.createText( 'header' ) ); const p = downcastWriter.createElement( 'p', null, [ abc, foo ] ); const div = downcastWriter.createElement( 'div', null, [ h1, p ] ); foo.getPath(); // Returns [ 1, 3 ]. `foo` is in `p` which is in `div`. `p` starts at offset 1, while `foo` at 3. h1.getPath(); // Returns [ 0 ]. div.getPath(); // Returns [].Copy codeReturns
Array<number>The path.
getStyle( property ) → undefined | stringinheritedmodule:engine/view/editableelement~ViewEditableElement#getStyleReturns style value for the given property name. If the style does not exist
undefinedis returned.Note: This method can work with normalized style names if a particular style processor rule is enabled. See
StylesMap#getAsString()for details.For an element with style set to
'margin:1px':// Enable 'margin' shorthand processing: editor.data.addStyleProcessorRules( addMarginStylesRules ); const element = view.change( writer => { const element = writer.createElement(); writer.setStyle( 'margin', '1px' ); writer.setStyle( 'margin-bottom', '3em' ); return element; } ); element.getStyle( 'margin' ); // -> 'margin: 1px 1px 3em;'Copy codeParameters
property : string
Returns
undefined | string
getStyleNames( [ expand ] ) → Array<string>inheritedmodule:engine/view/editableelement~ViewEditableElement#getStyleNamesReturns an array that contains all style names.
Parameters
[ expand ] : booleanExpand shorthand style properties and return all equivalent style representations.
Returns
Array<string>
hasAttribute( key, [ token ] ) → booleaninheritedmodule:engine/view/editableelement~ViewEditableElement#hasAttributeReturns a boolean indicating whether an attribute with the specified key exists in the element.
Parameters
key : stringAttribute key.
[ token ] : string
Returns
booleantrueif attribute with the specified key exists in the element,falseotherwise.
hasClass( className ) → booleaninheritedmodule:engine/view/editableelement~ViewEditableElement#hasClassReturns true if class is present. If more then one class is provided - returns true only when all classes are present.
element.hasClass( 'foo' ); // Returns true if 'foo' class is present. element.hasClass( 'foo', 'bar' ); // Returns true if 'foo' and 'bar' classes are both present.Copy codeParameters
className : Array<string>
Returns
boolean
hasStyle( property ) → booleaninheritedmodule:engine/view/editableelement~ViewEditableElement#hasStyleReturns true if style keys are present. If more then one style property is provided - returns true only when all properties are present.
element.hasStyle( 'color' ); // Returns true if 'border-top' style is present. element.hasStyle( 'color', 'border-top' ); // Returns true if 'color' and 'border-top' styles are both present.Copy codeParameters
property : Array<string>
Returns
boolean
is( type ) → this is ViewElement | ViewAttributeElement | ViewContainerElement | ViewEditableElement | ViewEmptyElement | ViewRawElement | ViewRootEditableElement | ViewUIElementinheritedmodule:engine/view/editableelement~ViewEditableElement#is:ELEMENTChecks whether this object is of type
ViewElementor its subclass.element.is( 'element' ); // -> true element.is( 'node' ); // -> true element.is( 'view:element' ); // -> true element.is( 'view:node' ); // -> true element.is( 'model:element' ); // -> false element.is( 'documentSelection' ); // -> falseCopy codeAssuming that the object being checked is an element, you can also check its name:
element.is( 'element', 'img' ); // -> true if this is an <img> element text.is( 'element', 'img' ); -> falseCopy codeParameters
type : 'element' | 'view:element'
Returns
is( type ) → this is ViewContainerElement | ViewEditableElement | ViewRootEditableElementinheritedmodule:engine/view/editableelement~ViewEditableElement#is:CONTAINER_ELEMENTChecks whether this object is of type
ViewContainerElementor its subclass.containerElement.is( 'containerElement' ); // -> true containerElement.is( 'element' ); // -> true containerElement.is( 'node' ); // -> true containerElement.is( 'view:containerElement' ); // -> true containerElement.is( 'view:element' ); // -> true containerElement.is( 'view:node' ); // -> true containerElement.is( 'model:element' ); // -> false containerElement.is( 'documentFragment' ); // -> falseCopy codeAssuming that the object being checked is a container element, you can also check its name:
containerElement.is( 'element', 'div' ); // -> true if this is a div container element containerElement.is( 'contaienrElement', 'div' ); // -> same as above text.is( 'element', 'div' ); -> falseCopy codeParameters
type : 'containerElement' | 'view:containerElement'
Returns
is( type ) → this is ViewAttributeElementinheritedmodule:engine/view/editableelement~ViewEditableElement#is:ATTRIBUTE_ELEMENTChecks whether this object is of type
ViewAttributeElement.attributeElement.is( 'attributeElement' ); // -> true attributeElement.is( 'element' ); // -> true attributeElement.is( 'node' ); // -> true attributeElement.is( 'view:attributeElement' ); // -> true attributeElement.is( 'view:element' ); // -> true attributeElement.is( 'view:node' ); // -> true attributeElement.is( 'model:element' ); // -> false attributeElement.is( 'documentFragment' ); // -> falseCopy codeAssuming that the object being checked is an attribute element, you can also check its name:
attributeElement.is( 'element', 'b' ); // -> true if this is a bold element attributeElement.is( 'attributeElement', 'b' ); // -> same as above text.is( 'element', 'b' ); -> falseCopy codeParameters
type : 'attributeElement' | 'view:attributeElement'
Returns
this is ViewAttributeElement
is( type ) → this is ViewRootEditableElementinheritedmodule:engine/view/editableelement~ViewEditableElement#is:ROOT_ELEMENTChecks whether this object is of type
ViewRootEditableElement.rootEditableElement.is( 'rootElement' ); // -> true rootEditableElement.is( 'editableElement' ); // -> true rootEditableElement.is( 'element' ); // -> true rootEditableElement.is( 'node' ); // -> true rootEditableElement.is( 'view:editableElement' ); // -> true rootEditableElement.is( 'view:element' ); // -> true rootEditableElement.is( 'view:node' ); // -> true rootEditableElement.is( 'model:element' ); // -> false rootEditableElement.is( 'documentFragment' ); // -> falseCopy codeAssuming that the object being checked is a root editable element, you can also check its name:
rootEditableElement.is( 'element', 'div' ); // -> true if this is a div root editable element rootEditableElement.is( 'rootElement', 'div' ); // -> same as above text.is( 'element', 'div' ); -> falseCopy codeParameters
type : 'rootElement' | 'view:rootElement'
Returns
this is ViewRootEditableElement
is( type ) → this is ViewRawElementinheritedmodule:engine/view/editableelement~ViewEditableElement#is:RAW_ELEMENTChecks whether this object is of type
ViewRawElement.rawElement.is( 'rawElement' ); // -> true rawElement.is( 'element' ); // -> true rawElement.is( 'node' ); // -> true rawElement.is( 'view:rawElement' ); // -> true rawElement.is( 'view:element' ); // -> true rawElement.is( 'view:node' ); // -> true rawElement.is( 'model:element' ); // -> false rawElement.is( 'documentFragment' ); // -> falseCopy codeAssuming that the object being checked is a raw element, you can also check its name:
rawElement.is( 'img' ); // -> true if this is an img element rawElement.is( 'rawElement', 'img' ); // -> same as above text.is( 'img' ); -> falseCopy codeParameters
type : 'rawElement' | 'view:rawElement'
Returns
this is ViewRawElement
is( type ) → this is ViewEmptyElementinheritedmodule:engine/view/editableelement~ViewEditableElement#is:EMPTY_ELEMENTChecks whether this object is of type
ViewEmptyElement.emptyElement.is( 'emptyElement' ); // -> true emptyElement.is( 'element' ); // -> true emptyElement.is( 'node' ); // -> true emptyElement.is( 'view:emptyElement' ); // -> true emptyElement.is( 'view:element' ); // -> true emptyElement.is( 'view:node' ); // -> true emptyElement.is( 'model:element' ); // -> false emptyElement.is( 'documentFragment' ); // -> falseCopy codeAssuming that the object being checked is an empty element, you can also check its name:
emptyElement.is( 'element', 'img' ); // -> true if this is a img element emptyElement.is( 'emptyElement', 'img' ); // -> same as above text.is( 'element', 'img' ); -> falseCopy codeParameters
type : 'emptyElement' | 'view:emptyElement'
Returns
this is ViewEmptyElement
is( type ) → this is ViewEditableElement | ViewRootEditableElementinheritedmodule:engine/view/editableelement~ViewEditableElement#is:EDITABLE_ELEMENTChecks whether this object is of type
ViewEditableElementor its subclass.editableElement.is( 'editableElement' ); // -> true editableElement.is( 'element' ); // -> true editableElement.is( 'node' ); // -> true editableElement.is( 'view:editableElement' ); // -> true editableElement.is( 'view:element' ); // -> true editableElement.is( 'view:node' ); // -> true editableElement.is( 'model:element' ); // -> false editableElement.is( 'documentFragment' ); // -> falseCopy codeAssuming that the object being checked is an editbale element, you can also check its name:
editableElement.is( 'element', 'div' ); // -> true if this is a div element editableElement.is( 'editableElement', 'div' ); // -> same as above text.is( 'element', 'div' ); -> falseCopy codeParameters
type : 'editableElement' | 'view:editableElement'
Returns
this is ViewEditableElement | ViewRootEditableElement
is( type ) → this is ViewSelection | ViewDocumentSelectioninheritedmodule:engine/view/editableelement~ViewEditableElement#is:SELECTIONChecks whether this object is of type
ViewSelectionorViewDocumentSelection.selection.is( 'selection' ); // -> true selection.is( 'view:selection' ); // -> true selection.is( 'model:selection' ); // -> false selection.is( 'element' ); // -> false selection.is( 'range' ); // -> falseCopy codeParameters
type : 'selection' | 'view:selection'
Returns
this is ViewSelection | ViewDocumentSelection
is( type, name ) → booleaninheritedmodule:engine/view/editableelement~ViewEditableElement#is:ELEMENT_NAMEChecks whether the object is of type
ViewElementor its subclass and has the specifiedname.Type parameters
N : extends string
Parameters
type : 'element' | 'view:element'name : N
Returns
boolean
is( type ) → this is ViewDocumentSelectioninheritedmodule:engine/view/editableelement~ViewEditableElement#is:DOCUMENT_SELECTIONChecks whether this object is of type
ViewDocumentSelection.`docSelection.is( 'selection' ); // -> true docSelection.is( 'documentSelection' ); // -> true docSelection.is( 'view:selection' ); // -> true docSelection.is( 'view:documentSelection' ); // -> true docSelection.is( 'model:documentSelection' ); // -> false docSelection.is( 'element' ); // -> false docSelection.is( 'node' ); // -> falseCopy codeParameters
type : 'documentSelection' | 'view:documentSelection'
Returns
this is ViewDocumentSelection
module:engine/view/editableelement~ViewEditableElement#is:RANGEChecks whether this object is of type
ViewRange.range.is( 'range' ); // -> true range.is( 'view:range' ); // -> true range.is( 'model:range' ); // -> false range.is( 'element' ); // -> false range.is( 'selection' ); // -> falseCopy codeParameters
type : 'range' | 'view:range'
Returns
this is ViewRange
is( type ) → this is ViewPositioninheritedmodule:engine/view/editableelement~ViewEditableElement#is:POSITIONChecks whether this object is of type
ViewPosition.position.is( 'position' ); // -> true position.is( 'view:position' ); // -> true position.is( 'model:position' ); // -> false position.is( 'element' ); // -> false position.is( 'range' ); // -> falseCopy codeParameters
type : 'position' | 'view:position'
Returns
this is ViewPosition
is( type ) → this is ViewTextProxyinheritedmodule:engine/view/editableelement~ViewEditableElement#is:TEXT_PROXYChecks whether this object is of type
ViewTextProxy.textProxy.is( '$textProxy' ); // -> true textProxy.is( 'view:$textProxy' ); // -> true textProxy.is( 'model:$textProxy' ); // -> false textProxy.is( 'element' ); // -> false textProxy.is( 'range' ); // -> falseCopy codeNote: Until version 20.0.0 this method wasn't accepting
'$textProxy'type. The legacy'textProxy'type is still accepted for backward compatibility.Parameters
type : '$textProxy' | 'view:$textProxy'
Returns
this is ViewTextProxy
is( type ) → this is ViewDocumentFragmentinheritedmodule:engine/view/editableelement~ViewEditableElement#is:DOCUMENT_FRAGMENThecks whether this object is of type
ViewDocumentFragment.docFrag.is( 'documentFragment' ); // -> true docFrag.is( 'view:documentFragment' ); // -> true docFrag.is( 'model:documentFragment' ); // -> false docFrag.is( 'element' ); // -> false docFrag.is( 'node' ); // -> falseCopy codeParameters
type : 'documentFragment' | 'view:documentFragment'
Returns
this is ViewDocumentFragment
module:engine/view/editableelement~ViewEditableElement#is:TEXTChecks whether this object is of type
ViewText.text.is( '$text' ); // -> true text.is( 'node' ); // -> true text.is( 'view:$text' ); // -> true text.is( 'view:node' ); // -> true text.is( 'model:$text' ); // -> false text.is( 'element' ); // -> false text.is( 'range' ); // -> falseCopy codeParameters
type : '$text' | 'view:$text'
Returns
this is ViewText
is( type ) → this is ViewUIElementinheritedmodule:engine/view/editableelement~ViewEditableElement#is:UI_ELEMENTChecks whether this object is of type
ViewUIElement.uiElement.is( 'uiElement' ); // -> true uiElement.is( 'element' ); // -> true uiElement.is( 'node' ); // -> true uiElement.is( 'view:uiElement' ); // -> true uiElement.is( 'view:element' ); // -> true uiElement.is( 'view:node' ); // -> true uiElement.is( 'model:element' ); // -> false uiElement.is( 'documentFragment' ); // -> falseCopy codeAssuming that the object being checked is an ui element, you can also check its name:
uiElement.is( 'element', 'span' ); // -> true if this is a span ui element uiElement.is( 'uiElement', 'span' ); // -> same as above text.is( 'element', 'span' ); -> falseCopy codeParameters
type : 'uiElement' | 'view:uiElement'
Returns
this is ViewUIElement
is( type, name ) → booleaninheritedmodule:engine/view/editableelement~ViewEditableElement#is:CONTAINER_ELEMENT_NAMEChecks whether the object is of type
ViewContainerElementor its subclass and has the specifiedname.Type parameters
N : extends string
Parameters
type : 'containerElement' | 'view:containerElement'name : N
Returns
boolean
is( type, name ) → booleaninheritedmodule:engine/view/editableelement~ViewEditableElement#is:ROOT_ELEMENT_NAMEChecks whether the object is of type
ViewRootEditableElementand has the specifiedname.Type parameters
N : extends string
Parameters
type : 'rootElement' | 'view:rootElement'name : N
Returns
boolean
is( type, name ) → booleaninheritedmodule:engine/view/editableelement~ViewEditableElement#is:UI_ELEMENT_NAMEChecks whether the object is of type
ViewUIElementand has the specifiedname.Type parameters
N : extends string
Parameters
type : 'uiElement' | 'view:uiElement'name : N
Returns
boolean
is( type, name ) → booleaninheritedmodule:engine/view/editableelement~ViewEditableElement#is:RAW_ELEMENT_NAMEChecks whether the object is of type
ViewRawElementand has the specifiedname.Type parameters
N : extends string
Parameters
type : 'rawElement' | 'view:rawElement'name : N
Returns
boolean
is( type, name ) → booleaninheritedmodule:engine/view/editableelement~ViewEditableElement#is:EMPTY_ELEMENT_NAMEChecks whether the object is of type
ViewEmptyElementhas the specifiedname.Type parameters
N : extends string
Parameters
type : 'emptyElement' | 'view:emptyElement'name : N
Returns
boolean
is( type, name ) → booleaninheritedmodule:engine/view/editableelement~ViewEditableElement#is:EDITABLE_ELEMENT_NAMEChecks whether the object is of type
ViewEditableElementor its subclass and has the specifiedname.Type parameters
N : extends string
Parameters
type : 'editableElement' | 'view:editableElement'name : N
Returns
boolean
is( type, name ) → booleaninheritedmodule:engine/view/editableelement~ViewEditableElement#is:ATTRIBUTE_ELEMENT_NAMEChecks whether the object is of type
ViewAttributeElementand has the specifiedname.Type parameters
N : extends string
Parameters
type : 'attributeElement' | 'view:attributeElement'name : N
Returns
boolean
is( type ) → this is ViewText | ViewNode | ViewElement | ViewAttributeElement | ViewContainerElement | ViewEditableElement | ViewEmptyElement | ViewRawElement | ViewRootEditableElement | ViewUIElementinheritedmodule:engine/view/editableelement~ViewEditableElement#is:NODEChecks whether this object is of type
ViewNodeor its subclass.This method is useful when processing view objects that are of unknown type. For example, a function may return a
ViewDocumentFragmentor aViewNodethat can be either a text node or an element. This method can be used to check what kind of object is returned.someObject.is( 'element' ); // -> true if this is an element someObject.is( 'node' ); // -> true if this is a node (a text node or an element) someObject.is( 'documentFragment' ); // -> true if this is a document fragmentCopy codeSince this method is also available on a range of model objects, you can prefix the type of the object with
model:orview:to check, for example, if this is the model's or view's element:viewElement.is( 'view:element' ); // -> true viewElement.is( 'model:element' ); // -> falseCopy codeBy using this method it is also possible to check a name of an element:
imgElement.is( 'element', 'img' ); // -> true imgElement.is( 'view:element', 'img' ); // -> same as above, but more preciseCopy codeParameters
type : 'node' | 'view:node'
Returns
isAfter( node ) → booleaninheritedmodule:engine/view/editableelement~ViewEditableElement#isAfterReturns whether this node is after given node.
falseis returned if nodes are in different trees (for example, in differentViewDocumentFragments).Parameters
node : ViewNodeNode to compare with.
Returns
boolean
isAttached() → booleaninheritedmodule:engine/view/editableelement~ViewEditableElement#isAttachedReturns true if the node is in a tree rooted in the document (is a descendant of one of its roots).
Returns
boolean
isBefore( node ) → booleaninheritedmodule:engine/view/editableelement~ViewEditableElement#isBeforeReturns whether this node is before given node.
falseis returned if nodes are in different trees (for example, in differentViewDocumentFragments).Parameters
node : ViewNodeNode to compare with.
Returns
boolean
isSimilar( otherElement ) → booleaninheritedmodule:engine/view/editableelement~ViewEditableElement#isSimilarChecks if this element is similar to other element. Both elements should have the same name and attributes to be considered as similar. Two similar elements can contain different set of children nodes.
Parameters
otherElement : ViewItem
Returns
boolean
listenTo( emitter, event, callback, [ options ] ) → voidinheritedmodule:engine/view/editableelement~ViewEditableElement#listenTo:BASE_EMITTERRegisters a callback function to be executed when an event is fired in a specific (emitter) object.
Events can be grouped in namespaces using
:. When namespaced event is fired, it additionally fires all callbacks for that namespace.// myEmitter.on( ... ) is a shorthand for myEmitter.listenTo( myEmitter, ... ). myEmitter.on( 'myGroup', genericCallback ); myEmitter.on( 'myGroup:myEvent', specificCallback ); // genericCallback is fired. myEmitter.fire( 'myGroup' ); // both genericCallback and specificCallback are fired. myEmitter.fire( 'myGroup:myEvent' ); // genericCallback is fired even though there are no callbacks for "foo". myEmitter.fire( 'myGroup:foo' );Copy codeAn event callback can stop the event and set the return value of the
firemethod.Type parameters
Parameters
emitter : EmitterThe object that fires the event.
event : TEvent[ 'name' ]The name of the event.
callback : GetCallback<TEvent>The function to be called on event.
[ options ] : GetCallbackOptions<TEvent>Additional options.
Returns
void
off( event, callback ) → voidinheritedmodule:engine/view/editableelement~ViewEditableElement#offStops executing the callback on the given event. Shorthand for
this.stopListening( this, event, callback ).Parameters
event : stringThe name of the event.
callback : FunctionThe function to stop being called.
Returns
void
on( event, callback, [ options ] ) → voidinheritedmodule:engine/view/editableelement~ViewEditableElement#onRegisters a callback function to be executed when an event is fired.
Shorthand for
this.listenTo( this, event, callback, options )(it makes the emitter listen on itself).Type parameters
Parameters
event : TEvent[ 'name' ]The name of the event.
callback : GetCallback<TEvent>The function to be called on event.
[ options ] : GetCallbackOptions<TEvent>Additional options.
Returns
void
once( event, callback, [ options ] ) → voidinheritedmodule:engine/view/editableelement~ViewEditableElement#onceRegisters a callback function to be executed on the next time the event is fired only. This is similar to calling
onfollowed byoffin the callback.Type parameters
Parameters
event : TEvent[ 'name' ]The name of the event.
callback : GetCallback<TEvent>The function to be called on event.
[ options ] : GetCallbackOptions<TEvent>Additional options.
Returns
void
set( values ) → voidinheritedmodule:engine/view/editableelement~ViewEditableElement#set:OBJECTCreates and sets the value of an observable properties of this object. Such a property becomes a part of the state and is observable.
It accepts a single object literal containing key/value pairs with properties to be set.
This method throws the
observable-set-cannot-overrideerror if the observable instance already has a property with the given property name. This prevents from mistakenly overriding existing properties and methods, but means thatfoo.set( 'bar', 1 )may be slightly slower thanfoo.bar = 1.In TypeScript, those properties should be declared in class using
declarekeyword. In example:public declare myProp1: number; public declare myProp2: string; constructor() { this.set( { 'myProp1: 2, 'myProp2: 'foo' } ); }Copy codeParameters
values : objectAn object with
name=>valuepairs.
Returns
void
set( name, value ) → voidinheritedmodule:engine/view/editableelement~ViewEditableElement#set:KEY_VALUECreates and sets the value of an observable property of this object. Such a property becomes a part of the state and is observable.
This method throws the
observable-set-cannot-overrideerror if the observable instance already has a property with the given property name. This prevents from mistakenly overriding existing properties and methods, but means thatfoo.set( 'bar', 1 )may be slightly slower thanfoo.bar = 1.In TypeScript, those properties should be declared in class using
declarekeyword. In example:public declare myProp: number; constructor() { this.set( 'myProp', 2 ); }Copy codeType parameters
K
Parameters
name : KThe property's name.
value : ViewEditableElement[ K ]The property's value.
Returns
void
shouldRenderUnsafeAttribute( attributeName ) → booleaninheritedmodule:engine/view/editableelement~ViewEditableElement#shouldRenderUnsafeAttributeDecides whether an unsafe attribute is whitelisted and should be rendered in the editing pipeline even though filtering mechanisms like
shouldRenderAttributesay it should not.Unsafe attribute names can be specified when creating an element via
ViewDowncastWriter.Parameters
attributeName : stringThe name of the attribute to be checked.
Returns
boolean
stopDelegating( [ event ], [ emitter ] ) → voidinheritedmodule:engine/view/editableelement~ViewEditableElement#stopDelegatingStops delegating events. It can be used at different levels:
- To stop delegating all events.
- To stop delegating a specific event to all emitters.
- To stop delegating a specific event to a specific emitter.
Parameters
[ event ] : stringThe name of the event to stop delegating. If omitted, stops it all delegations.
[ emitter ] : Emitter(requires
event) The object to stop delegating a particular event to. If omitted, stops delegation ofeventto all emitters.
Returns
void
stopListening( [ emitter ], [ event ], [ callback ] ) → voidinheritedmodule:engine/view/editableelement~ViewEditableElement#stopListening:BASE_STOPStops listening for events. It can be used at different levels:
- To stop listening to a specific callback.
- To stop listening to a specific event.
- To stop listening to all events fired by a specific object.
- To stop listening to all events fired by all objects.
Parameters
[ emitter ] : EmitterThe object to stop listening to. If omitted, stops it for all objects.
[ event ] : string(Requires the
emitter) The name of the event to stop listening to. If omitted, stops it for all events fromemitter.[ callback ] : Function(Requires the
event) The function to be removed from the call list for the givenevent.
Returns
void
toJSON() → unknownmodule:engine/view/editableelement~ViewEditableElement#toJSONConverts
ViewEditableElementinstance to plain object and returns it.Returns
unknownViewEditableElementinstance converted to plain object.
unbind( unbindProperties ) → voidinheritedmodule:engine/view/editableelement~ViewEditableElement#unbindRemoves the binding created with
bind.// Removes the binding for the 'a' property. A.unbind( 'a' ); // Removes bindings for all properties. A.unbind();Copy codeParameters
unbindProperties : Array<'index' | 'name' | 'off' | 'set' | 'bind' | 'unbind' | 'decorate' | 'stopListening' | 'on' | 'once' | 'listenTo' | 'fire' | 'delegate' | 'stopDelegating' | 'document' | 'parent' | 'nextSibling' | 'previousSibling' | 'getAttribute' | 'hasAttribute' | 'destroy' | 'root' | 'isReadOnly' | 'isFocused' | 'placeholder' | 'toJSON' | '_unsafeAttributesToRender' | 'childCount' | 'isEmpty' | 'getChild' | 'getChildIndex' | 'getChildren' | 'getAttributeKeys' | 'getAttributes' | 'isSimilar' | 'hasClass' | 'getClassNames' | 'getStyle' | 'getNormalizedStyle' | 'getStyleNames' | 'hasStyle' | 'findAncestor' | 'getCustomProperty' | 'getCustomProperties' | 'getIdentity' | 'shouldRenderUnsafeAttribute' | '_clone' | '_appendChild' | '_insertChild' | '_removeChildren' | '_setAttribute' | '_removeAttribute' | '_addClass' | '_removeClass' | '_setStyle' | '_removeStyle' | '_collectAttributesMatch' | '_getConsumables' | '_canMergeAttributesFrom' | '_mergeAttributesFrom' | '_canSubtractAttributesOf' | '_subtractAttributesOf' | '_setCustomProperty' | '_removeCustomProperty' | 'getFillerOffset' | 'isAttached' | 'getPath' | 'getAncestors' | 'getCommonAncestor' | 'isBefore' | 'isAfter' | '_remove' | '_fireChange' | 'is'>Observable properties to be unbound. All the bindings will be released if no properties are provided.
Returns
void
_addClass( className ) → voidinternalinheritedmodule:engine/view/editableelement~ViewEditableElement#_addClassAdds specified class.
element._addClass( 'foo' ); // Adds 'foo' class. element._addClass( [ 'foo', 'bar' ] ); // Adds 'foo' and 'bar' classes.Copy codeParameters
className : ArrayOrItem<string>
Returns
void
Fires
Related:
_appendChild( items ) → numberinternalinheritedmodule:engine/view/editableelement~ViewEditableElement#_appendChild_canMergeAttributesFrom( otherElement ) → booleaninternalinheritedmodule:engine/view/editableelement~ViewEditableElement#_canMergeAttributesFromVerify if the given element can be merged without conflicts into the element.
Note that this method is extended by the
ViewAttributeElementimplementation.This method is used by the
ViewDowncastWriterwhile down-casting anViewAttributeElementto merge it with other ViewAttributeElement.Parameters
otherElement : ViewElement
Returns
booleanReturns
trueif elements can be merged.
_canSubtractAttributesOf( otherElement ) → booleaninternalinheritedmodule:engine/view/editableelement~ViewEditableElement#_canSubtractAttributesOfVerify if the given element attributes can be fully subtracted from the element.
Note that this method is extended by the
ViewAttributeElementimplementation.This method is used by the
ViewDowncastWriterwhile down-casting anViewAttributeElementto unwrap the ViewAttributeElement.Parameters
otherElement : ViewElement
Returns
booleanReturns
trueif elements attributes can be fully subtracted.
_clone( deep ) → thisinternalinheritedmodule:engine/view/editableelement~ViewEditableElement#_cloneClones provided element.
Parameters
deep : booleanIf set to
trueclones element and all its children recursively. When set tofalse, element will be cloned without any children.Defaults to
false
Returns
thisClone of this element.
_collectAttributesMatch( patterns, match, [ exclude ] ) → booleaninternalinheritedmodule:engine/view/editableelement~ViewEditableElement#_collectAttributesMatchUsed by the Matcher to collect matching attribute tuples (attribute name and optional token).
Normalized patterns can be used in following ways:
- to match any attribute name with any or no value:
patterns: [ [ true, true ] ]Copy code- to match a specific attribute with any value:
patterns: [ [ 'required', true ] ]Copy code- to match an attribute name with a RegExp with any value:
patterns: [ [ /h[1-6]/, true ] ]Copy code- to match a specific attribute with the exact value:Copy codepatterns: [ [ 'rel', 'nofollow' ] ]Copy code- to match a specific attribute with a value matching a RegExp:Copy codepatterns: [ [ 'src', /^https/ ] ]Copy code- to match an attribute name with a RegExp and the exact value:Copy codepatterns: [ [ /^data-property-/, 'foobar' ], ]Copy code- to match an attribute name with a RegExp and match a value with another RegExp:Copy codepatterns: [ [ /^data-property-/, /^foo/ ] ]Copy code- to match a specific style property with the value matching a RegExp:Copy codepatterns: [ [ 'style', 'font-size', /px$/ ] ]Copy code- to match a specific class (class attribute is tokenized so it matches tokens individually):Copy codepatterns: [ [ 'class', 'foo' ] ]Copy codeParameters
patterns : Array<NormalizedPropertyPattern>An array of normalized patterns (tuples of 2 or 3 items depending on if tokenized attribute value match is needed).
match : Array<tuple>An array to populate with matching tuples.
[ exclude ] : Array<string>Array of attribute names to exclude from match.
Returns
booleantrueif element matches all patterns. The matching tuples are pushed to thematcharray.
_fireChange( type, node, [ data ] = { data.index } ) → voidinternalinheritedmodule:engine/view/editableelement~ViewEditableElement#_fireChangeParameters
type : ViewDocumentChangeTypeType of the change.
node : ViewNodeChanged node.
[ data ] : objectAdditional data.
Propertiesdata.index : number
Returns
void
Fires
_getConsumables( [ key ], [ token ] ) → ViewNormalizedConsumablesinternalinheritedmodule:engine/view/editableelement~ViewEditableElement#_getConsumablesUsed by the
ViewConsumableto collect theViewNormalizedConsumablesfor the element.When
keyandtokenparameters are provided the output is filtered for the specified attribute and it's tokens and related tokens.Parameters
[ key ] : stringAttribute name.
[ token ] : stringReference token to collect all related tokens.
Returns
_insertChild( index, items ) → numberinternalinheritedmodule:engine/view/editableelement~ViewEditableElement#_insertChildInserts a child node or a list of child nodes on the given index and sets the parent of these nodes to this element.
Parameters
index : numberPosition where nodes should be inserted.
items : string | ViewItem | Iterable<( string | ViewItem )>Items to be inserted.
Returns
numberNumber of inserted nodes.
Fires
Related:
_mergeAttributesFrom( otherElement ) → voidinternalinheritedmodule:engine/view/editableelement~ViewEditableElement#_mergeAttributesFromMerges attributes of a given element into the element. This includes also tokenized attributes like style and class.
Note that you should make sure there are no conflicts before merging (see
_canMergeAttributesFrom).This method is used by the
ViewDowncastWriterwhile down-casting anViewAttributeElementto merge it with other ViewAttributeElement.Parameters
otherElement : ViewElement
Returns
void
_remove() → voidinternalinheritedmodule:engine/view/editableelement~ViewEditableElement#_remove_removeAttribute( key, [ tokens ] ) → booleaninternalinheritedmodule:engine/view/editableelement~ViewEditableElement#_removeAttributeRemoves attribute from the element.
Parameters
key : stringAttribute key.
[ tokens ] : ArrayOrItem<string>Attribute value tokens to remove. The whole attribute is removed if not specified.
Returns
booleanReturns true if an attribute existed and has been removed.
Fires
Related:
_removeChildren( index, howMany ) → Array<ViewNode>internalinheritedmodule:engine/view/editableelement~ViewEditableElement#_removeChildrenRemoves number of child nodes starting at the given index and set the parent of these nodes to
null.Parameters
index : numberNumber of the first node to remove.
howMany : numberNumber of nodes to remove.
Defaults to
1
Returns
Array<ViewNode>The array of removed nodes.
Fires
Related:
_removeClass( className ) → voidinternalinheritedmodule:engine/view/editableelement~ViewEditableElement#_removeClassRemoves specified class.
element._removeClass( 'foo' ); // Removes 'foo' class. element._removeClass( [ 'foo', 'bar' ] ); // Removes both 'foo' and 'bar' classes.Copy codeParameters
className : ArrayOrItem<string>
Returns
void
Fires
Related:
_removeCustomProperty( key ) → booleaninternalinheritedmodule:engine/view/editableelement~ViewEditableElement#_removeCustomPropertyRemoves the custom property stored under the given key.
Parameters
key : string | symbol
Returns
booleanReturns true if property was removed.
Related:
_removeStyle( property ) → voidinternalinheritedmodule:engine/view/editableelement~ViewEditableElement#_removeStyleRemoves specified style.
element._removeStyle( 'color' ); // Removes 'color' style. element._removeStyle( [ 'color', 'border-top' ] ); // Removes both 'color' and 'border-top' styles.Copy codeNote: This method can work with normalized style names if a particular style processor rule is enabled. See
StylesMap#remove()for details.Parameters
property : ArrayOrItem<string>
Returns
void
Fires
Related:
_setAttribute( key, value, overwrite ) → voidinternalinheritedmodule:engine/view/editableelement~ViewEditableElement#_setAttributeAdds or overwrite attribute with a specified key and value.
Parameters
key : stringAttribute key.
value : unknownAttribute value.
overwrite : booleanWhether tokenized attribute should override the attribute value or just add a token.
Defaults to
true
Returns
void
Fires
Related:
_setCustomProperty( key, value ) → voidinternalinheritedmodule:engine/view/editableelement~ViewEditableElement#_setCustomPropertySets a custom property. Unlike attributes, custom properties are not rendered to the DOM, so they can be used to add special data to elements.
Parameters
key : string | symbolvalue : unknown
Returns
void
Related:
_setStyle( properties ) → voidinternalinheritedmodule:engine/view/editableelement~ViewEditableElement#_setStyle:OBJECTAdds style to the element.
element._setStyle( { color: 'red', position: 'fixed' } );Copy codeNote: This method can work with normalized style names if a particular style processor rule is enabled. See
StylesMap#set()for details.Parameters
properties : Record<string, string>Object with key - value pairs.
Returns
void
Fires
Related:
_setStyle( property, value ) → voidinternalinheritedmodule:engine/view/editableelement~ViewEditableElement#_setStyle:KEY_VALUEAdds style to the element.
element._setStyle( 'color', 'red' );Copy codeNote: This method can work with normalized style names if a particular style processor rule is enabled. See
StylesMap#set()for details.Parameters
property : stringProperty name.
value : stringValue to set.
Returns
void
Fires
Related:
_subtractAttributesOf( otherElement ) → voidinternalinheritedmodule:engine/view/editableelement~ViewEditableElement#_subtractAttributesOfRemoves (subtracts) corresponding attributes of the given element from the element. This includes also tokenized attributes like style and class. All attributes, classes and styles from given element should be present inside the element being unwrapped.
Note that you should make sure all attributes could be subtracted before subtracting them (see
_canSubtractAttributesOf).This method is used by the
ViewDowncastWriterwhile down-casting anViewAttributeElementto unwrap the ViewAttributeElement.Parameters
otherElement : ViewElement
Returns
void
Events
change( eventInfo, changedNode, [ data ] )inheritedmodule:engine/view/editableelement~ViewEditableElement#event:changeFired when list of elements children, attributes or text changes.
Change event is bubbled – it is fired on all ancestors.
All change events as the first parameter receive the node that has changed (the node for which children, attributes or text changed).
If
change:childrenevent is fired, there is an additional second parameter, which is an object with additional data related to change.Parameters
change:attributes( eventInfo, changedNode, [ data ] )inheritedmodule:engine/view/editableelement~ViewEditableElement#event:change:attributesFired when list of elements children, attributes or text changes.
Change event is bubbled – it is fired on all ancestors.
All change events as the first parameter receive the node that has changed (the node for which children, attributes or text changed).
If
change:childrenevent is fired, there is an additional second parameter, which is an object with additional data related to change.Parameters
change:children( eventInfo, changedNode, [ data ] )inheritedmodule:engine/view/editableelement~ViewEditableElement#event:change:childrenFired when list of elements children, attributes or text changes.
Change event is bubbled – it is fired on all ancestors.
All change events as the first parameter receive the node that has changed (the node for which children, attributes or text changed).
If
change:childrenevent is fired, there is an additional second parameter, which is an object with additional data related to change.Parameters
change:isFocused( eventInfo, name, value, oldValue )module:engine/view/editableelement~ViewEditableElement#event:change:isFocusedFired when the
isFocusedproperty changed value.Parameters
eventInfo : EventInfoAn object containing information about the fired event.
name : stringName of the changed property (
isFocused).value : booleanNew value of the
isFocusedproperty with given key ornull, if operation should remove property.oldValue : booleanOld value of the
isFocusedproperty with given key ornull, if property was not set before.
change:isReadOnly( eventInfo, name, value, oldValue )module:engine/view/editableelement~ViewEditableElement#event:change:isReadOnlyFired when the
isReadOnlyproperty changed value.Parameters
eventInfo : EventInfoAn object containing information about the fired event.
name : stringName of the changed property (
isReadOnly).value : booleanNew value of the
isReadOnlyproperty with given key ornull, if operation should remove property.oldValue : booleanOld value of the
isReadOnlyproperty with given key ornull, if property was not set before.
change:placeholder( eventInfo, name, value, oldValue )module:engine/view/editableelement~ViewEditableElement#event:change:placeholderFired when the
placeholderproperty changed value.Parameters
eventInfo : EventInfoAn object containing information about the fired event.
name : stringName of the changed property (
placeholder).value : stringNew value of the
placeholderproperty with given key ornull, if operation should remove property.oldValue : stringOld value of the
placeholderproperty with given key ornull, if property was not set before.
change:text( eventInfo, changedNode, [ data ] )inheritedmodule:engine/view/editableelement~ViewEditableElement#event:change:textFired when list of elements children, attributes or text changes.
Change event is bubbled – it is fired on all ancestors.
All change events as the first parameter receive the node that has changed (the node for which children, attributes or text changed).
If
change:childrenevent is fired, there is an additional second parameter, which is an object with additional data related to change.Parameters
change:{property}( eventInfo, name, value, oldValue )inheritedmodule:engine/view/editableelement~ViewEditableElement#event:change:{property}Fired when a property changed value.
observable.set( 'prop', 1 ); observable.on<ObservableChangeEvent<number>>( 'change:prop', ( evt, propertyName, newValue, oldValue ) => { console.log( `${ propertyName } has changed from ${ oldValue } to ${ newValue }` ); } ); observable.prop = 2; // -> 'prop has changed from 1 to 2'Copy codeParameters
eventInfo : EventInfoAn object containing information about the fired event.
name : stringThe property name.
value : TValueThe new property value.
oldValue : TValueThe previous property value.
set:isFocused( eventInfo, name, value, oldValue )module:engine/view/editableelement~ViewEditableElement#event:set:isFocusedFired when the
isFocusedproperty is going to be set but is not set yet (before thechangeevent is fired).Parameters
eventInfo : EventInfoAn object containing information about the fired event.
name : stringName of the changed property (
isFocused).value : booleanNew value of the
isFocusedproperty with given key ornull, if operation should remove property.oldValue : booleanOld value of the
isFocusedproperty with given key ornull, if property was not set before.
set:isReadOnly( eventInfo, name, value, oldValue )module:engine/view/editableelement~ViewEditableElement#event:set:isReadOnlyFired when the
isReadOnlyproperty is going to be set but is not set yet (before thechangeevent is fired).Parameters
eventInfo : EventInfoAn object containing information about the fired event.
name : stringName of the changed property (
isReadOnly).value : booleanNew value of the
isReadOnlyproperty with given key ornull, if operation should remove property.oldValue : booleanOld value of the
isReadOnlyproperty with given key ornull, if property was not set before.
set:placeholder( eventInfo, name, value, oldValue )module:engine/view/editableelement~ViewEditableElement#event:set:placeholderFired when the
placeholderproperty is going to be set but is not set yet (before thechangeevent is fired).Parameters
eventInfo : EventInfoAn object containing information about the fired event.
name : stringName of the changed property (
placeholder).value : stringNew value of the
placeholderproperty with given key ornull, if operation should remove property.oldValue : stringOld value of the
placeholderproperty with given key ornull, if property was not set before.
set:{property}( eventInfo, name, value, oldValue )inheritedmodule:engine/view/editableelement~ViewEditableElement#event:set:{property}Fired when a property value is going to be set but is not set yet (before the
changeevent is fired).You can control the final value of the property by using the event's
returnproperty.observable.set( 'prop', 1 ); observable.on<ObservableSetEvent<number>>( 'set:prop', ( evt, propertyName, newValue, oldValue ) => { console.log( `Value is going to be changed from ${ oldValue } to ${ newValue }` ); console.log( `Current property value is ${ observable[ propertyName ] }` ); // Let's override the value. evt.return = 3; } ); observable.on<ObservableChangeEvent<number>>( 'change:prop', ( evt, propertyName, newValue, oldValue ) => { console.log( `Value has changed from ${ oldValue } to ${ newValue }` ); } ); observable.prop = 2; // -> 'Value is going to be changed from 1 to 2' // -> 'Current property value is 1' // -> 'Value has changed from 1 to 3'Copy codeNote: The event is fired even when the new value is the same as the old value.
Parameters
eventInfo : EventInfoAn object containing information about the fired event.
name : stringThe property name.
value : TValueThe new property value.
oldValue : TValueThe previous property value.