engine/conversion/upcasthelpers
@ckeditor/ckeditor5-engine/src/conversion/upcasthelpers
Contains the view to model converters for
UpcastDispatcher
.
Filtering
Classes
-
UpcastHelpers
module:engine/conversion/upcasthelpers~UpcastHelpers
Upcast conversion helper functions.
Functions
-
convertSelectionChange( model, mapper ) → function
module:engine/conversion/upcasthelpers~convertSelectionChange
Function factory, creates a callback function which converts a view selection taken from the
event-selectionChange
event and sets in on the model.Note: because there is no view selection change dispatcher nor any other advanced view selection to model conversion mechanism, the callback should be set directly on view document.
view.document.on( 'selectionChange', convertSelectionChange( modelDocument, mapper ) );
Parameters
Returns
function
event-selectionChange
callback function.
-
convertText() → function
module:engine/conversion/upcasthelpers~convertText
-
convertToModelFragment() → function
module:engine/conversion/upcasthelpers~convertToModelFragment
Function factory, creates a converter that converts view document fragment or all children of
Element
into model document fragment. This is the "entry-point" converter for upcast (view to model conversion). This converter starts the conversion of all children of passed view document fragment. Those children view nodes are then handled by other converters.This also a "default", last resort converter for all view elements that has not been converted by other converters. When a view element is being converted to the model but it does not have converter specified, that view element will be converted to model document fragment and returned.
Returns
function
Universal converter for view fragments and elements that returns model fragment with children of converted view item.
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.