SelectionObserver
Selection observer class observes selection changes in the document. If a selection changes on the document this observer checks if the DOM selection is different from the view selection. The selection observer fires event-selectionChange event only if a selection change was the only change in the document and the DOM selection is different from the view selection.
This observer also manages the isSelecting property of the view document.
Note that this observer is attached by the EditingView and is available by default.
Properties
document : ViewDocumentreadonlyinheritedmodule:engine/view/observer/selectionobserver~SelectionObserver#documentA reference to the
ViewDocumentobject.domConverter : ViewDomConverterreadonlymodule:engine/view/observer/selectionobserver~SelectionObserver#domConverterReference to the
domConverter.focusObserver : FocusObserverreadonlymodule:engine/view/observer/selectionobserver~SelectionObserver#focusObserverInstance of the focus observer. Focus observer calls
flushto mark the latest focus change as complete.isEnabled : booleanreadonlyinheritedmodule:engine/view/observer/selectionobserver~SelectionObserver#isEnabledThe state of the observer. If it is disabled, no events will be fired.
mutationObserver : MutationObserverreadonlymodule:engine/view/observer/selectionobserver~SelectionObserver#mutationObserverInstance of the mutation observer. Selection observer calls
flushto ensure that the mutations will be handled before the event-selectionChange event is fired.selection : ViewDocumentSelectionreadonlymodule:engine/view/observer/selectionobserver~SelectionObserver#selectionReference to the view
ViewDocumentSelectionobject used to compare new selection with it.view : EditingViewreadonlyinheritedmodule:engine/view/observer/selectionobserver~SelectionObserver#viewAn instance of the view controller.
_clearInfiniteLoopInterval : Timeoutprivatereadonlymodule:engine/view/observer/selectionobserver~SelectionObserver#_clearInfiniteLoopIntervalWhen called, starts clearing the
_loopbackCountercounter in time intervals. When the number of selection changes exceeds a certain limit within the interval of time, the observer will not fireselectionChangebut warn about possible infinite selection loop._documentIsSelectingInactivityTimeoutDebounced : DebouncedFunc<() => boolean>privatereadonlymodule:engine/view/observer/selectionobserver~SelectionObserver#_documentIsSelectingInactivityTimeoutDebouncedUnlocks the
isSelectingstate of the view document in case the selection observer did not record this fact correctly (for whatever reason). It is a safeguard (paranoid check), that returns document to the normal state after a certain period of time (debounced, postponed by each selectionchange event)._documents : WeakSet<Document>privatereadonlymodule:engine/view/observer/selectionobserver~SelectionObserver#_documentsA set of documents which have added
selectionchangelistener to avoid adding a listener twice to the same document._fireSelectionChangeDoneDebounced : DebouncedFunc<( data: ViewDocumentObserverSelectionEventData ) => void>privatereadonlymodule:engine/view/observer/selectionobserver~SelectionObserver#_fireSelectionChangeDoneDebouncedFires debounced event
selectionChangeDone. It useses-toolkit#debouncemethod to delay function call._loopbackCounter : numberprivatemodule:engine/view/observer/selectionobserver~SelectionObserver#_loopbackCounterPrivate property to check if the code does not enter infinite loop.
_pendingSelectionChange : Set<Document>privatemodule:engine/view/observer/selectionobserver~SelectionObserver#_pendingSelectionChangeA set of DOM documents that have a pending selection change. Pending selection change is recorded while selection change event is detected on non focused editable.
Methods
constructor( view )module:engine/view/observer/selectionobserver~SelectionObserver#constructorcheckShouldIgnoreEventFromTarget( domTarget ) → booleaninheritedmodule:engine/view/observer/selectionobserver~SelectionObserver#checkShouldIgnoreEventFromTargetChecks whether a given DOM event should be ignored (should not be turned into a synthetic view document event).
Currently, an event will be ignored only if its target or any of its ancestors has the
data-cke-ignore-eventsattribute. This attribute can be used inside the structures generated byViewDowncastWriter#createUIElement()to ignore events fired within a UI that should be excluded from CKEditor 5's realms.Parameters
domTarget : null | NodeThe DOM event target to check (usually an element, sometimes a text node and potentially sometimes a document, too).
Returns
booleanWhether this event should be ignored by the observer.
delegate( events ) → EmitterMixinDelegateChaininheritedmodule:engine/view/observer/selectionobserver~SelectionObserver#delegateDelegates selected events to another
Emitter. For instance:emitterA.delegate( 'eventX' ).to( emitterB ); emitterA.delegate( 'eventX', 'eventY' ).to( emitterC );Copy codethen
eventXis delegated (fired by)emitterBandemitterCalong withdata:emitterA.fire( 'eventX', data );Copy codeand
eventYis delegated (fired by)emitterCalong withdata:emitterA.fire( 'eventY', data );Copy codeParameters
events : Array<string>Event names that will be delegated to another emitter.
Returns
destroy() → voidmodule:engine/view/observer/selectionobserver~SelectionObserver#destroyDisables and destroys the observer, among others removes event listeners created by the observer.
Returns
void
disable() → voidinheritedmodule:engine/view/observer/selectionobserver~SelectionObserver#disableDisables the observer. This method is called before rendering to prevent firing events during rendering.
Returns
void
Related:
enable() → voidinheritedmodule:engine/view/observer/selectionobserver~SelectionObserver#enableEnables the observer. This method is called when the observer is registered to the
EditingViewand after rendering (all observers are disabled before rendering).A typical use case for disabling observers is that mutation observers need to be disabled for the rendering. However, a child class may not need to be disabled, so it can implement an empty method.
Returns
void
Related:
fire( eventOrInfo, args ) → GetEventInfo<TEvent>[ 'return' ]inheritedmodule:engine/view/observer/selectionobserver~SelectionObserver#fireFires an event, executing all callbacks registered for it.
The first parameter passed to callbacks is an
EventInfoobject, followed by the optionalargsprovided in thefire()method call.Type parameters
Parameters
eventOrInfo : GetNameOrEventInfo<TEvent>The name of the event or
EventInfoobject if event is delegated.args : TEvent[ 'args' ]Additional arguments to be passed to the callbacks.
Returns
GetEventInfo<TEvent>[ 'return' ]By default the method returns
undefined. However, the return value can be changed by listeners through modification of theevt.return's property (the event info is the first param of every callback).
listenTo( emitter, event, callback, [ options ] ) → voidinheritedmodule:engine/view/observer/selectionobserver~SelectionObserver#listenTo:DOM_EMITTERRegisters a callback function to be executed when an event is fired in a specific (emitter) object.
Events can be grouped in namespaces using
:. When namespaced event is fired, it additionally fires all callbacks for that namespace.// myEmitter.on( ... ) is a shorthand for myEmitter.listenTo( myEmitter, ... ). myEmitter.on( 'myGroup', genericCallback ); myEmitter.on( 'myGroup:myEvent', specificCallback ); // genericCallback is fired. myEmitter.fire( 'myGroup' ); // both genericCallback and specificCallback are fired. myEmitter.fire( 'myGroup:myEvent' ); // genericCallback is fired even though there are no callbacks for "foo". myEmitter.fire( 'myGroup:foo' );Copy codeAn event callback can stop the event and set the return value of the
firemethod.Type parameters
Parameters
emitter : EmitterThe object that fires the event.
event : TEvent[ 'name' ]The name of the event.
callback : GetCallback<TEvent>The function to be called on event.
[ options ] : CallbackOptionsAdditional options.
Returns
void
listenTo( emitter, event, callback, [ options ] ) → voidinheritedmodule:engine/view/observer/selectionobserver~SelectionObserver#listenTo:HTML_EMITTERRegisters a callback function to be executed when an event is fired in a specific Emitter or DOM Node. It is backwards compatible with
listenTo.Type parameters
K : extends keyof DomEventMap
Parameters
emitter : Window | EventTarget | NodeThe object that fires the event.
event : KThe name of the event.
callback : ( this: this, ev: EventInfo, event: DomEventMap[ K ] ) => voidThe function to be called on event.
[ options ] : objectAdditional options.
Returns
void
observe( domElement ) → voidmodule:engine/view/observer/selectionobserver~SelectionObserver#observeStarts observing given DOM element.
Parameters
domElement : HTMLElementDOM element to observe.
Returns
void
off( event, callback ) → voidinheritedmodule:engine/view/observer/selectionobserver~SelectionObserver#offStops executing the callback on the given event. Shorthand for
this.stopListening( this, event, callback ).Parameters
event : stringThe name of the event.
callback : FunctionThe function to stop being called.
Returns
void
on( event, callback, [ options ] ) → voidinheritedmodule:engine/view/observer/selectionobserver~SelectionObserver#onRegisters a callback function to be executed when an event is fired.
Shorthand for
this.listenTo( this, event, callback, options )(it makes the emitter listen on itself).Type parameters
Parameters
event : TEvent[ 'name' ]The name of the event.
callback : GetCallback<TEvent>The function to be called on event.
[ options ] : GetCallbackOptions<TEvent>Additional options.
Returns
void
once( event, callback, [ options ] ) → voidinheritedmodule:engine/view/observer/selectionobserver~SelectionObserver#onceRegisters a callback function to be executed on the next time the event is fired only. This is similar to calling
onfollowed byoffin the callback.Type parameters
Parameters
event : TEvent[ 'name' ]The name of the event.
callback : GetCallback<TEvent>The function to be called on event.
[ options ] : GetCallbackOptions<TEvent>Additional options.
Returns
void
stopDelegating( [ event ], [ emitter ] ) → voidinheritedmodule:engine/view/observer/selectionobserver~SelectionObserver#stopDelegatingStops delegating events. It can be used at different levels:
- To stop delegating all events.
- To stop delegating a specific event to all emitters.
- To stop delegating a specific event to a specific emitter.
Parameters
[ event ] : stringThe name of the event to stop delegating. If omitted, stops it all delegations.
[ emitter ] : Emitter(requires
event) The object to stop delegating a particular event to. If omitted, stops delegation ofeventto all emitters.
Returns
void
stopListening( [ emitter ], [ event ], [ callback ] ) → voidinheritedmodule:engine/view/observer/selectionobserver~SelectionObserver#stopListening:DOM_STOPStops listening for events. It can be used at different levels: It is backwards compatible with
listenTo.- To stop listening to a specific callback.
- To stop listening to a specific event.
- To stop listening to all events fired by a specific object.
- To stop listening to all events fired by all objects.
Parameters
[ emitter ] : Window | EventTarget | Node | EmitterThe object to stop listening to. If omitted, stops it for all objects.
[ event ] : string(Requires the
emitter) The name of the event to stop listening to. If omitted, stops it for all events fromemitter.[ callback ] : Function(Requires the
event) The function to be removed from the call list for the givenevent.
Returns
void
stopObserving( domElement ) → voidmodule:engine/view/observer/selectionobserver~SelectionObserver#stopObservingStops observing given DOM element.
Parameters
domElement : HTMLElement
Returns
void
_clearInfiniteLoop() → voidprivatemodule:engine/view/observer/selectionobserver~SelectionObserver#_clearInfiniteLoopClears
SelectionObserverinternal properties connected with preventing infinite loop.Returns
void
_handleSelectionChange( domDocument ) → voidprivatemodule:engine/view/observer/selectionobserver~SelectionObserver#_handleSelectionChangeSelection change listener. Flush mutations, check if a selection changes and fires event-selectionChange event on every change and event-selectionChangeDone when a selection stop changing.
Parameters
domDocument : DocumentDOM document.
Returns
void
_reportInfiniteLoop() → voidprivatemodule:engine/view/observer/selectionobserver~SelectionObserver#_reportInfiniteLoop