AttributeElement (engine/view)
@ckeditor/ckeditor5-engine/src/view/attributeelement
Attribute elements are used to represent formatting elements in the view (think – <b>
, <span style="font-size: 2em">
, etc.).
Most often they are created when downcasting model text attributes.
Editing engine does not define a fixed HTML DTD. This is why a feature developer needs to choose between various types (container element, attribute element, empty element, etc) when developing a feature.
To create a new attribute element instance use the
DowncastWriter#createAttributeElement()
method.
Filtering
Properties
-
childCount : Number
module:engine/view/attributeelement~AttributeElement#childCount
readonly inherited
Number of element's children.
-
The document instance to which this node belongs.
-
id : String | Number
module:engine/view/attributeelement~AttributeElement#id
readonly
Element identifier. If set, it is used by
isSimilar
, and then two elements are considered similar if, and only if they have the sameid
. -
index : Number | null
module:engine/view/attributeelement~AttributeElement#index
readonly inherited
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.
-
isEmpty : Boolean
module:engine/view/attributeelement~AttributeElement#isEmpty
readonly inherited
Is
true
if there are no nodes inside this element,false
otherwise. -
name : String
module:engine/view/attributeelement~AttributeElement#name
readonly inherited
Name of the element.
-
nextSibling : Node | null
module:engine/view/attributeelement~AttributeElement#nextSibling
readonly inherited
Node's next sibling, or
null
if it is the last child. -
parent : Element | DocumentFragment | null
module:engine/view/attributeelement~AttributeElement#parent
readonly inherited
Parent element. Null by default. Set by
_insertChild
. -
previousSibling : Node | null
module:engine/view/attributeelement~AttributeElement#previousSibling
readonly inherited
Node's previous sibling, or
null
if it is the first child. -
priority : Number
module:engine/view/attributeelement~AttributeElement#priority
readonly
Element priority. Decides in what order elements are wrapped by
DowncastWriter
. -
root : Node | DocumentFragment
module:engine/view/attributeelement~AttributeElement#root
readonly inherited
Top-most ancestor of the node. If the node has no parent it is the root itself.
-
_attrs : Map
module:engine/view/attributeelement~AttributeElement#_attrs
protected inherited
Map of attributes, where attributes names are keys and attributes values are values.
-
_children : Array.<Node>
module:engine/view/attributeelement~AttributeElement#_children
protected inherited
Array of child nodes.
-
_classes : Set
module:engine/view/attributeelement~AttributeElement#_classes
protected inherited
Set of classes associated with element instance.
-
_clonesGroup : Set.<AttributeElement> | null
module:engine/view/attributeelement~AttributeElement#_clonesGroup
protected
Keeps all the attribute elements that have the same ids and still exist in the view tree.
This property is managed by
DowncastWriter
. -
_customProperties : Map
module:engine/view/attributeelement~AttributeElement#_customProperties
protected inherited
Map of custom properties. Custom properties can be added to element instance, will be cloned but not rendered into DOM.
-
_id : String | Number
module:engine/view/attributeelement~AttributeElement#_id
protected
Element identifier. If set, it is used by
isSimilar
, and then two elements are considered similar if, and only if they have the same_id
. -
_priority : Number
module:engine/view/attributeelement~AttributeElement#_priority
protected
Element priority. Decides in what order elements are wrapped by
DowncastWriter
. -
Normalized styles.
-
_unsafeAttributesToRender : Array.<String>
module:engine/view/attributeelement~AttributeElement#_unsafeAttributesToRender
private readonly inherited
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.
Static properties
-
DEFAULT_PRIORITY : Number
module:engine/view/attributeelement~AttributeElement.DEFAULT_PRIORITY
static
Default attribute priority.
Methods
-
constructor( document, name, [ attrs ], [ children ] )
module:engine/view/attributeelement~AttributeElement#constructor
protected
-
findAncestor( patterns ) → Element | null
module:engine/view/attributeelement~AttributeElement#findAncestor
inherited
Returns ancestor element that match specified pattern. Provided patterns should be compatible with Matcher as it is used internally.
-
getAncestors( options = { [options.includeSelf], [options.parentFirst] } ) → Array
module:engine/view/attributeelement~AttributeElement#getAncestors
inherited
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/attributeelement~AttributeElement#getAttribute
inherited
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/attributeelement~AttributeElement#getAttributeKeys
inherited
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/attributeelement~AttributeElement#getAttributes
inherited
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.<*>
-
Gets child at the given index.
-
getChildIndex( node ) → Number
module:engine/view/attributeelement~AttributeElement#getChildIndex
inherited
Gets index of the given child node. Returns
-1
if child node is not found. -
getChildren() → Iterable.<Node>
module:engine/view/attributeelement~AttributeElement#getChildren
inherited
Gets child nodes iterator.
Returns
Iterable.<Node>
Child nodes iterator.
-
getClassNames() → Iterable.<String>
module:engine/view/attributeelement~AttributeElement#getClassNames
inherited
Returns iterator that contains all class names.
Returns
Iterable.<String>
-
getCommonAncestor( node, options = { [options.includeSelf] } ) → Element | DocumentFragment | null
module:engine/view/attributeelement~AttributeElement#getCommonAncestor
inherited
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/attributeelement~AttributeElement#getCustomProperties
inherited
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/attributeelement~AttributeElement#getCustomProperty
inherited
Returns the custom property value for the given key.
Parameters
key : String | Symbol
Returns
*
-
getElementsWithSameId() → Set.<AttributeElement>
module:engine/view/attributeelement~AttributeElement#getElementsWithSameId
Returns all attribute elements that has the same id and are in the view tree (were not removed).
Note: If this element has been removed from the tree, returned set will not include it.
Throws attribute-element-get-elements-with-same-id-no-id if this element has no
id
.Returns
Set.<AttributeElement>
Set containing all the attribute elements with the same
id
that were added and not removed from the view tree.
-
getFillerOffset() → Number | null
module:engine/view/attributeelement~AttributeElement#getFillerOffset
inherited
Returns block filler offset or
null
if block filler is not needed.Returns
Number | null
Block filler offset or
null
if block filler is not needed.
-
getIdentity() → String
module:engine/view/attributeelement~AttributeElement#getIdentity
inherited
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/attributeelement~AttributeElement#getNormalizedStyle
inherited
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
-
getPath() → Array.<Number>
module:engine/view/attributeelement~AttributeElement#getPath
inherited
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/attributeelement~AttributeElement#getStyle
inherited
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/attributeelement~AttributeElement#getStyleNames
inherited
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/attributeelement~AttributeElement#hasAttribute
inherited
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/attributeelement~AttributeElement#hasClass
inherited
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/attributeelement~AttributeElement#hasStyle
inherited
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 ) → Boolean
module:engine/view/attributeelement~AttributeElement#is
inherited
Checks whether this object is of the given type.
This method is useful when processing view objects that are of unknown type. For example, a function may return a
DocumentFragment
or aNode
that 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 fragment
Since 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' ); // -> false
By 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 precise
The list of view objects which implement the
is()
method:AttributeElement#is()
ContainerElement#is()
DocumentFragment#is()
DocumentSelection#is()
EditableElement#is()
Element#is()
EmptyElement#is()
Node#is()
Position#is()
Range#is()
RootEditableElement#is()
Selection#is()
Text#is()
TextProxy#is()
UIElement#is()
Parameters
type : String
Type to check.
Returns
Boolean
-
isAfter( node ) → Boolean
module:engine/view/attributeelement~AttributeElement#isAfter
inherited
Returns whether this node is after given node.
false
is returned if nodes are in different trees (for example, in differentDocumentFragment
s). -
isAttached() → Boolean
module:engine/view/attributeelement~AttributeElement#isAttached
inherited
Returns true if the node is in a tree rooted in the document (is a descendant of one of its roots).
Returns
Boolean
-
isBefore( node ) → Boolean
module:engine/view/attributeelement~AttributeElement#isBefore
inherited
Returns whether this node is before given node.
false
is returned if nodes are in different trees (for example, in differentDocumentFragment
s). -
isSimilar() → Boolean
module:engine/view/attributeelement~AttributeElement#isSimilar
inherited
Checks if provided node is similar to this node.
Returns
Boolean
True if nodes are similar.
-
shouldRenderUnsafeAttribute( attributeName ) → Boolean
module:engine/view/attributeelement~AttributeElement#shouldRenderUnsafeAttribute
inherited
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
-
toJSON() → Object
module:engine/view/attributeelement~AttributeElement#toJSON
inherited
Custom toJSON method to solve child-parent circular dependencies.
Returns
Object
Clone of this object with the parent property removed.
-
_addClass( className )
module:engine/view/attributeelement~AttributeElement#_addClass
protected inherited
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:
-
_appendChild( items ) → Number
module:engine/view/attributeelement~AttributeElement#_appendChild
protected inherited
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 this node.
Returns
Node
Clone of this node.
-
_fireChange( type, node )
module:engine/view/attributeelement~AttributeElement#_fireChange
protected inherited
-
_insertChild( index, items ) → Number
module:engine/view/attributeelement~AttributeElement#_insertChild
protected inherited
-
_remove()
module:engine/view/attributeelement~AttributeElement#_remove
protected inherited
Removes node from parent.
-
_removeAttribute( key ) → Boolean
module:engine/view/attributeelement~AttributeElement#_removeAttribute
protected inherited
Removes attribute from the element.
Parameters
key : String
Attribute key.
Returns
Boolean
Returns true if an attribute existed and has been removed.
Fires
Related:
-
_removeChildren( index, [ howMany ] ) → Array.<Node>
module:engine/view/attributeelement~AttributeElement#_removeChildren
protected inherited
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:
-
_removeClass( className )
module:engine/view/attributeelement~AttributeElement#_removeClass
protected inherited
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:
-
_removeCustomProperty( key ) → Boolean
module:engine/view/attributeelement~AttributeElement#_removeCustomProperty
protected inherited
Removes the custom property stored under the given key.
Parameters
key : String | Symbol
Returns
Boolean
Returns true if property was removed.
Related:
-
_removeStyle( property )
module:engine/view/attributeelement~AttributeElement#_removeStyle
protected inherited
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:
-
_setAttribute( key, value )
module:engine/view/attributeelement~AttributeElement#_setAttribute
protected inherited
Adds or overwrite attribute with a specified key and value.
Parameters
key : String
Attribute key.
value : String
Attribute value.
Fires
Related:
-
_setCustomProperty( key, value )
module:engine/view/attributeelement~AttributeElement#_setCustomProperty
protected inherited
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.
-
_setStyle( property, [ value ] )
module:engine/view/attributeelement~AttributeElement#_setStyle
protected inherited
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
-
change( eventInfo )
module:engine/view/attributeelement~AttributeElement#event:change
inherited
Parameters
eventInfo : EventInfo
An object containing information about the fired event.
-
change:attributes( eventInfo, changedNode )
module:engine/view/attributeelement~AttributeElement#event:change:attributes
inherited
Fired when list of elements attributes changes.
-
change:children( eventInfo, changedNode )
module:engine/view/attributeelement~AttributeElement#event:change:children
inherited
Fired when list of elements children changes.
-
change:text( eventInfo, changedNode )
module:engine/view/attributeelement~AttributeElement#event:change:text
inherited
Fired when text nodes data changes.
Every day, we work hard to keep our documentation complete. Have you spotted an outdated information? Is something missing? Please report it via our issue tracker.