KeyObserver (engine/view/observer)
@ckeditor/ckeditor5-engine/src/view/observer/keyobserver
Observer for events connected with pressing keyboard keys.
Note that this observer is attached by the View
and is available by default.
Filtering
Properties
-
A reference to the
Document
object. -
domEventType : String | Array.<String>
module:engine/view/observer/keyobserver~KeyObserver#domEventType
readonly inherited
Type of the DOM event the observer should listen to. Array of types can be defined if the observer should listen to multiple DOM events.
-
isEnabled : Boolean
module:engine/view/observer/keyobserver~KeyObserver#isEnabled
readonly inherited
The state of the observer. If it is disabled, no events will be fired.
-
useCapture : Boolean
module:engine/view/observer/keyobserver~KeyObserver#useCapture
inherited
If set to
true
DOM events will be listened on the capturing phase. Default value isfalse
. -
An instance of the view controller.
Methods
-
checkShouldIgnoreEventFromTarget( domTarget ) → Boolean
module:engine/view/observer/keyobserver~KeyObserver#checkShouldIgnoreEventFromTarget
inherited
Checks 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-events
attribute. This attribute can be used inside the structures generated byDowncastWriter#createUIElement()
to ignore events fired within a UI that should be excluded from CKEditor 5's realms.Parameters
domTarget : Node
The DOM event target to check (usually an element, sometimes a text node and potentially sometimes a document, too).
Returns
Boolean
Whether this event should be ignored by the observer.
-
destroy()
module:engine/view/observer/keyobserver~KeyObserver#destroy
inherited
Disables and destroys the observer, among others removes event listeners created by the observer.
-
disable()
module:engine/view/observer/keyobserver~KeyObserver#disable
inherited
Disables the observer. This method is called before rendering to prevent firing events during rendering.
Related:
-
enable()
module:engine/view/observer/keyobserver~KeyObserver#enable
inherited
Enables the observer. This method is called when the observer is registered to the
View
and 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.
Related:
-
fire( eventType, domEvent, [ additionalData ] )
module:engine/view/observer/keyobserver~KeyObserver#fire
inherited
Calls
Document#fire()
if observer is enabled.Parameters
eventType : String
The event type (name).
domEvent : Event
The DOM event.
[ additionalData ] : Object
The additional data which should extend the event data object.
Related:
-
observe( domElement, name )
module:engine/view/observer/keyobserver~KeyObserver#observe
inherited
Starts observing the given root element.
Parameters
domElement : HTMLElement
name : String
The name of the root element.
-
onDomEvent()
module:engine/view/observer/keyobserver~KeyObserver#onDomEvent
inherited
Callback which should be called when the DOM event occurred. Note that the callback will not be called if observer is not enabled.
Related:
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.