Element (engine/view)
@ckeditor/ckeditor5-engine/src/view/element
View element.
The editing engine does not define a fixed semantics of its elements (it is "DTD-free").
This is why the type of the Element
need to
be defined by the feature developer. When creating an element you should use one of the following methods:
downcastWriter#createContainerElement()
in order to create aContainerElement
,downcastWriter#createAttributeElement()
in order to create aAttributeElement
,downcastWriter#createEmptyElement()
in order to create aEmptyElement
.downcastWriter#createUIElement()
in order to create aUIElement
.downcastWriter#createEditableElement()
in order to create aEditableElement
.
Note that for view elements which are not created from the model, like elements from mutations, paste or
data.set it is not possible to define the type of the element.
In such cases the UpcastWriter#createElement()
method
should be used to create generic view elements.
Filtering
Properties
-
Number of element's children.
-
The document instance to which this node belongs.
-
Index 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.
-
Is
true
if there are no nodes inside this element,false
otherwise. -
Name of the element.
-
Node's next sibling, or
null
if it is the last child. -
readonly inherited
parent : Element | DocumentFragment | null
module:engine/view/element~Element#parent
Parent element. Null by default. Set by
_insertChild
. -
Node's previous sibling, or
null
if it is the first child. -
Top-most ancestor of the node. If the node has no parent it is the root itself.
-
Map of attributes, where attributes names are keys and attributes values are values.
-
Array of child nodes.
-
Set of classes associated with element instance.
-
Map of custom properties. Custom properties can be added to element instance, will be cloned but not rendered into DOM.
-
Normalized styles.
-
private readonly
_unsafeAttributesToRender : Array.<String>
module:engine/view/element~Element#_unsafeAttributesToRender
A list of attribute names that should be rendered in the editing pipeline even though filtering mechanisms implemented in the
DomConverter
(for instance,shouldRenderAttribute
) would filter them out.These attributes can be specified as an option when the element is created by the
DowncastWriter
. To check whether an unsafe an attribute should be permitted, use theshouldRenderUnsafeAttribute
method.
Methods
-
protected
constructor( document, name, [ attrs ], [ children ] )
module:engine/view/element~Element#constructor
Creates a view element.
Attributes can be passed in various formats:
new Element( viewDocument, 'div', { class: 'editor', contentEditable: 'true' } ); // object new Element( viewDocument, 'div', [ [ 'class', 'editor' ], [ 'contentEditable', 'true' ] ] ); // map-like iterator new Element( viewDocument, 'div', mapOfAttributes ); // map
Parameters
-
findAncestor( patterns ) → Element | null
module:engine/view/element~Element#findAncestor
Returns ancestor element that match specified pattern. Provided patterns should be compatible with Matcher as it is used internally.
Parameters
patterns : Object | String | RegExp | function
Patterns used to match correct ancestor. See
Matcher
.
Returns
Element | null
Found element or
null
if no matching ancestor was found.
Related:
-
inherited
getAncestors( options = { [options.includeSelf], [options.parentFirst] } ) → Array
module:engine/view/element~Element#getAncestors
Returns ancestors array of this node.
Parameters
options : Object
Options object.
Properties[ options.includeSelf ] : Boolean
When set to
true
this node will be also included in parent's array.Defaults to
false
[ options.parentFirst ] : Boolean
When 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
false
Returns
Array
Array with ancestors.
-
getAttribute( key ) → String | undefined
module:engine/view/element~Element#getAttribute
Gets attribute by key. If attribute is not present - returns undefined.
Parameters
key : String
Attribute key.
Returns
String | undefined
Attribute value.
-
getAttributeKeys() → Iterable.<String>
module:engine/view/element~Element#getAttributeKeys
Returns an iterator that contains the keys for attributes. Order of inserting attributes is not preserved.
Returns
Iterable.<String>
Keys for attributes.
-
getAttributes() → Iterable.<*>
module:engine/view/element~Element#getAttributes
Returns 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
Map
object and also can be passed inNode
constructor.Returns
Iterable.<*>
-
-
getChildIndex( node ) → Number
module:engine/view/element~Element#getChildIndex
Gets index of the given child node. Returns
-1
if child node is not found.Parameters
node : Node
Child node.
Returns
Number
Index of the child node.
-
getChildren() → Iterable.<Node>
module:engine/view/element~Element#getChildren
-
getClassNames() → Iterable.<String>
module:engine/view/element~Element#getClassNames
-
inherited
getCommonAncestor( node, options = { [options.includeSelf] } ) → Element | DocumentFragment | null
module:engine/view/element~Element#getCommonAncestor
Returns a
Element
orDocumentFragment
which is a common ancestor of both nodes.Parameters
node : Node
The second node.
options : Object
Options object.
Properties[ options.includeSelf ] : Boolean
When set to
true
both 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
false
Returns
Element | DocumentFragment | null
-
getCustomProperties() → Iterable.<*>
module:engine/view/element~Element#getCustomProperties
Returns an iterator which iterates over this element's custom properties. Iterator provides
[ key, value ]
pairs for each stored property.Returns
Iterable.<*>
-
getCustomProperty( key ) → *
module:engine/view/element~Element#getCustomProperty
Returns the custom property value for the given key.
Parameters
key : String | Symbol
Returns
*
-
getFillerOffset()
module:engine/view/element~Element#getFillerOffset
Returns block filler offset or
null
if block filler is not needed. -
getIdentity() → String
module:engine/view/element~Element#getIdentity
Returns 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"'
For 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();
Note: Classes, styles and other attributes are sorted alphabetically.
Returns
String
-
getNormalizedStyle( property ) → Object | String | undefined
module:engine/view/element~Element#getNormalizedStyle
Returns a normalized style object or single style value.
For an element with style set to: margin:1px 2px 3em;
element.getNormalizedStyle( 'margin' ) );
will return:
{ top: '1px', right: '2px', bottom: '3em', left: '2px' // a normalized value from margin shorthand }
and reading for single style value:
styles.getNormalizedStyle( 'margin-left' );
Will return a
2px
string.Note: This method will return normalized values only if a particular style processor rule is enabled. See
StylesMap#getNormalized()
for details.Parameters
property : String
Name of CSS property
Returns
Object | String | undefined
-
Gets 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 [].
Returns
Array.<Number>
The path.
-
getStyle( property ) → String | undefined
module:engine/view/element~Element#getStyle
Returns style value for the given property mae. If the style does not exist
undefined
is 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( addMarginRules ); 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;'
Parameters
property : String
Returns
String | undefined
-
getStyleNames( [ expand ] ) → Iterable.<String>
module:engine/view/element~Element#getStyleNames
Returns iterator that contains all style names.
Parameters
[ expand ] : Boolean
Expand shorthand style properties and return all equivalent style representations.
Defaults to
false
Returns
Iterable.<String>
-
hasAttribute( key ) → Boolean
module:engine/view/element~Element#hasAttribute
Returns a boolean indicating whether an attribute with the specified key exists in the element.
Parameters
key : String
Attribute key.
Returns
Boolean
true
if attribute with the specified key exists in the element, false otherwise.
-
hasClass( className )
module:engine/view/element~Element#hasClass
Returns 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.
Parameters
className : String
-
hasStyle( property )
module:engine/view/element~Element#hasStyle
Returns 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.
Parameters
property : String
-
is( type, [ name ] ) → Boolean
module:engine/view/element~Element#is
Checks whether this object is of the given.
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' ); // -> false
Assuming 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' ); -> false
Check the entire list of view objects which implement the
is()
method.Parameters
type : String
Type to check.
[ name ] : String
Element name.
Returns
Boolean
-
Returns whether this node is after given node.
false
is returned if nodes are in different trees (for example, in differentDocumentFragment
s).Parameters
node : Node
Node to compare with.
Returns
Boolean
-
Returns true if the node is in a tree rooted in the document (is a descendant of one of its roots).
Returns
Boolean
-
Returns whether this node is before given node.
false
is returned if nodes are in different trees (for example, in differentDocumentFragment
s).Parameters
node : Node
Node to compare with.
Returns
Boolean
-
isSimilar( otherElement ) → Boolean
module:engine/view/element~Element#isSimilar
Checks 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 : Element
Returns
Boolean
-
shouldRenderUnsafeAttribute( attributeName ) → Boolean
module:engine/view/element~Element#shouldRenderUnsafeAttribute
Decides whether an unsafe attribute is whitelisted and should be rendered in the editing pipeline even though filtering mechanisms like
shouldRenderAttribute
say it should not.Unsafe attribute names can be specified when creating an element via
DowncastWriter
.Parameters
attributeName : String
The name of the attribute to be checked.
Returns
Boolean
-
Custom toJSON method to solve child-parent circular dependencies.
Returns
Object
Clone of this object with the parent property removed.
-
Adds specified class.
element._addClass( 'foo' ); // Adds 'foo' class. element._addClass( [ 'foo', 'bar' ] ); // Adds 'foo' and 'bar' classes.
Parameters
className : Array.<String> | String
Fires
Related:
-
Insert a child node or a list of child nodes at the end of this node and sets the parent of these nodes to this element.
Parameters
Returns
Number
Number of appended nodes.
Fires
Related:
-
Clones provided element.
Parameters
[ deep ] : Boolean
If set to
true
clones element and all its children recursively. When set tofalse
, element will be cloned without any children.Defaults to
false
Returns
Element
Clone of this element.
-
-
Removes node from parent.
-
Removes attribute from the element.
Parameters
key : String
Attribute key.
Returns
Boolean
Returns true if an attribute existed and has been removed.
Fires
Related:
-
protected
_removeChildren( index, [ howMany ] ) → Array.<Node>
module:engine/view/element~Element#_removeChildren
Removes number of child nodes starting at the given index and set the parent of these nodes to
null
.Parameters
index : Number
Number of the first node to remove.
[ howMany ] : Number
Number of nodes to remove.
Defaults to
1
Returns
Array.<Node>
The array of removed nodes.
Fires
Related:
-
Removes specified class.
element._removeClass( 'foo' ); // Removes 'foo' class. element._removeClass( [ 'foo', 'bar' ] ); // Removes both 'foo' and 'bar' classes.
Parameters
className : Array.<String> | String
Fires
Related:
-
protected
_removeCustomProperty( key ) → Boolean
module:engine/view/element~Element#_removeCustomProperty
Removes the custom property stored under the given key.
Parameters
key : String | Symbol
Returns
Boolean
Returns true if property was removed.
Related:
-
Removes specified style.
element._removeStyle( 'color' ); // Removes 'color' style. element._removeStyle( [ 'color', 'border-top' ] ); // Removes both 'color' and 'border-top' styles.
Note: This method can work with normalized style names if a particular style processor rule is enabled. See
StylesMap#remove()
for details.Parameters
property : Array.<String> | String
Fires
Related:
-
Adds or overwrite attribute with a specified key and value.
Parameters
key : String
Attribute key.
value : String
Attribute value.
Fires
Related:
-
Sets 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 | Symbol
value : *
Related:
-
Adds style to the element.
element._setStyle( 'color', 'red' ); element._setStyle( { color: 'red', position: 'fixed' } );
Note: This method can work with normalized style names if a particular style processor rule is enabled. See
StylesMap#set()
for details.Parameters
property : String | Object
Property name or object with key - value pairs.
[ value ] : String
Value to set. This parameter is ignored if object is provided as the first parameter.
Fires
Related:
Events
-
-
inherited
change:attributes( eventInfo, changedNode )
module:engine/view/element~Element#event:change:attributes
Fired when list of elements attributes changes.
Change event is bubbled – it is fired on all ancestors.
Parameters
-
inherited
change:children( eventInfo, changedNode )
module:engine/view/element~Element#event:change:children
Fired when list of elements children changes.
Change event is bubbled – it is fired on all ancestors.
Parameters
-
Fired when text nodes data changes.
Change event is bubbled – it is fired on all ancestors.
Parameters
Every day, we work hard to keep our documentation complete. Have you spotted outdated information? Is something missing? Please report it via our issue tracker.