Conversion (engine/conversion)
@ckeditor/ckeditor5-engine/src/conversion/conversion
A utility class that helps add converters to upcast and downcast dispatchers.
We recommend reading the editor conversion guide first to understand the core concepts of the conversion mechanisms.
An instance of the conversion manager is available in the
editor.conversion
property
and by default has the following groups of dispatchers (i.e. directions of conversion):
downcast
(editing and data downcasts)editingDowncast
dataDowncast
upcast
One-way converters
To add a converter to a specific group, use the for()
method:
See for()
method documentation to learn more about
available conversion helpers and how to use your custom ones.
Two-way converters
Besides using one-way converters via the for()
method, you can also use other methods available in this
class to add two-way converters (upcast and downcast):
elementToElement()
– Model element to view element and vice versa.attributeToElement()
– Model attribute to view element and vice versa.attributeToAttribute()
– Model attribute to view attribute and vice versa.
Filtering
Properties
-
_helpers : Map.<String, ConversionHelpers>
private
Maps dispatchers group name to ConversionHelpers instances.
Methods
-
constructor( downcastDispatchers, upcastDispatchers )
Creates a new conversion instance.
Parameters
downcastDispatchers : DowncastDispatcher | Array.<DowncastDispatcher>
upcastDispatchers : UpcastDispatcher | Array.<UpcastDispatcher>
-
addAlias( alias, dispatcher )
Define an alias for registered dispatcher.
Parameters
alias : String
An alias of a dispatcher.
dispatcher : DowncastDispatcher | UpcastDispatcher
Dispatcher which should have an alias.
-
attributeToAttribute( definition = { definition.model, definition.view, [definition.upcastAlso] } )
Sets up converters between the model and the view that convert a model attribute to a view attribute (and vice versa). For example,
<imageBlock src='foo.jpg'></imageBlock>
is converted to<img src='foo.jpg'></img>
(the same attribute key and value). This type of converters is intended to be used with model element nodes. To convert the text attributes, theattributeToElement converter
should be set up.The
definition.model
parameter specifies which model attribute should be converted from and to. It can be a{ key, [ values ], [ name ] }
object or aString
, which will be treated like{ key: definition.model }
. Thekey
property is the model attribute key to convert from and to. Thevalues
are the possible model attribute values. If thevalues
parameter is not set, the model attribute value will be the same as the view attribute value. Ifname
is set, the conversion will be set up only for model elements with the given name.The
definition.view
parameter specifies which view attribute should be converted from and to. It can be a{ key, value, [ name ] }
object or aString
, which will be treated like{ key: definition.view }
. Thekey
property is the view attribute key to convert from and to. Thevalue
is the view attribute value to convert from and to. Ifdefinition.value
is not set, the view attribute value will be the same as the model attribute value. Ifkey
is'class'
,value
can be aString
or an array ofString
s. Ifkey
is'style'
,value
is an object with key-value pairs. In other cases,value
is aString
. Ifname
is set, the conversion will be set up only for model elements with the given name. Ifdefinition.model.values
is set,definition.view
is an object that assigns values fromdefinition.model.values
to{ key, value, [ name ] }
objects.definition.upcastAlso
specifies which other matching view elements should also be upcast to the given model configuration. Ifdefinition.model.values
is set,definition.upcastAlso
should be an object assigning values fromdefinition.model.values
toMatcherPattern
s or arrays ofMatcherPattern
s.Note:
definition.model
anddefinition.view
form should be mirrored, so the same types of parameters should be given in both parameters.Parameters
definition : Object
The converter definition.
Propertiesdefinition.model : String | Object
The model attribute to convert from and to.
definition.view : String | Object
The view attribute to convert from and to.
[ definition.upcastAlso ] : MatcherPattern | Array.<MatcherPattern>
Any view element matching
definition.upcastAlso
will also be converted to the given model attribute.definition.upcastAlso
is used only ifconfig.model.values
is specified.
-
attributeToElement( definition )
Sets up converters between the model and the view that convert a model attribute to a view element (and vice versa). For example, a model text node with
"Foo"
as data and thebold
attribute will be turned to<strong>Foo</strong>
in the view.The
definition.model
parameter specifies which model attribute should be converted from or to. It can be a{ key, value }
object describing the attribute key and value to convert or aString
specifying just the attribute key (in such a casevalue
is set totrue
). SeeConverterDefinition
to learn about other parameters.Parameters
definition : ConverterDefinition
The converter definition.
-
elementToElement( definition )
Sets up converters between the model and the view that convert a model element to a view element (and vice versa). For example, the model
<paragraph>Foo</paragraph>
is turned into<p>Foo</p>
in the view.definition.model
is aString
with a model element name to convert from or to. SeeConverterDefinition
to learn about other parameters.Parameters
definition : ConverterDefinition
The converter definition.
-
for( groupName ) → DowncastHelpers | UpcastHelpers
Provides a chainable API to assign converters to a conversion dispatchers group.
If the given group name has not been registered, the
conversion-for-unknown-group
error is thrown.You can use conversion helpers available directly in the
for()
chain or your custom ones via theadd()
method.Using built-in conversion helpers
The
for()
chain comes with a set of conversion helpers which you can use like this:Refer to the documentation of built-in conversion helpers to learn about their configuration options.
-
downcast (model-to-view) conversion helpers:
-
upcast (view-to-model) conversion helpers:
Using custom conversion helpers
If you need to implement an atypical converter, you can do so by calling:
The
.add()
method takes exactly one parameter, which is a function. This function should accept one parameter that is a dispatcher instance. The function should add an actual converter to the passed dispatcher instance.Example:
Refer to the documentation of
UpcastDispatcher
andDowncastDispatcher
to learn how to write custom converters.Parameters
groupName : String
The name of dispatchers group to add the converters to.
Returns
-
-
_createConversionHelpers( options = { options.name, options.dispatchers, options.isDowncast } )
private
Creates and caches conversion helpers for given dispatchers group.
Parameters
options : Object
-
Properties
options.name : String
Group name.
options.dispatchers : Array.<(DowncastDispatcher | UpcastDispatcher)>
options.isDowncast : 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.