SchemaContext (engine/model)
@ckeditor/ckeditor5-engine/src/model/schema
A schema context — a list of ancestors of a given position in the document.
Considering such position:
The context of this position is its lists of ancestors:
Contexts are used in the Schema#checkChild
and
Schema#checkAttribute
events as a definition
of a place in the document where the check occurs. The context instances are created based on the first arguments
of the Schema#checkChild()
and
Schema#checkAttribute()
methods so when
using these methods you need to use SchemaContextDefinition
s.
Filtering
Properties
-
The last item (the lowest node).
-
length : Number
The number of items.
Methods
-
constructor( context )
Creates an instance of the context.
Parameters
context : SchemaContextDefinition
-
Symbol.iterator() → Iterable.<SchemaContextItem>
Iterable interface.
-
endsWith( query ) → Boolean
Checks whether the context ends with the given nodes.
Parameters
query : String
Returns
Boolean
-
Gets an item on the given index.
Returns
-
getNames() → Iterable.<String>
Returns the names of items.
Returns
Iterable.<String>
-
push( item ) → SchemaContext
Returns a new schema context instance with an additional item.
Item can be added as:
Note
Node
that is already in the model tree will be added as the only item (without ancestors).Parameters
Returns
SchemaContext
A new schema context instance with an additional item.
-
startsWith( query ) → Boolean
Checks whether the context starts with the given nodes.
Parameters
query : String
Returns
Boolean
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.