UNPKG

@maxgraph/core

Version:

maxGraph is a fully client side JavaScript diagramming library that uses SVG and HTML for rendering.

290 lines (286 loc) 10.7 kB
/* Copyright 2021-present The maxGraph project Contributors Copyright (c) 2006-2015, JGraph Ltd Copyright (c) 2006-2015, Gaudenz Alder Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ import InternalEvent from '../event/InternalEvent.js'; import { isAncestorNode } from '../../util/domUtils.js'; import { getSource, isAltDown, isConsumed, isControlDown as _isControlDown, isShiftDown, } from '../../util/EventUtils.js'; /** * Event handler that listens to keystroke events. This is not a singleton, * however, it is normally only required once if the target is the document * element (default). * * This handler installs a key event listener in the topmost DOM node and * processes all events that originate from descendants of {@link AbstractGraph.container} * or from the topmost DOM node. The latter means that all unhandled keystrokes * are handled by this object regardless of the focused state of the {@link graph}. * * Example: * * The following example creates a key handler that listens to the delete key * (46) and deletes the selection cells if the graph is enabled. * * ```javascript * const keyHandler = new KeyHandler(graph); * keyHandler.bindKey(46, (evt) => { * if (graph.isEnabled()) { * graph.removeCells(); * } * }); * ``` * * Keycodes: * * See http://tinyurl.com/yp8jgl or http://tinyurl.com/229yqw for a list of * keycodes or install a key event listener into the document element and print * the key codes of the respective events to the console. * * To support the Command key and the Control key on the Mac, the following * code can be used. * * ```javascript * keyHandler.getFunction = (evt) => { * if (evt) { * return (InternalEvent.isControlDown(evt) || (Client.IS_MAC && evt.metaKey)) ? this.controlKeys[evt.keyCode] : this.normalKeys[evt.keyCode]; * } * return null; * }; * ``` */ class KeyHandler { /** * Constructs an event handler that executes functions bound to specific keystrokes. * * @param graph Reference to the associated {@link AbstractGraph}. * @param target Optional reference to the event target. * If `null`, the document element is used as the event target, that is, the object where the key event listener is installed. */ constructor(graph, target = null) { this.keydownHandler = null; /** * Reference to the {@link AbstractGraph} associated with this handler. */ this.graph = null; /** * Reference to the target DOM, that is, the DOM node where the key event * listeners are installed. */ this.target = null; /** * Maps from keycodes to functions for non-pressed control keys. */ this.normalKeys = {}; /** * Maps from keycodes to functions for pressed shift keys. */ this.shiftKeys = {}; /** * Maps from keycodes to functions for pressed control keys. */ this.controlKeys = {}; /** * Maps from keycodes to functions for pressed control and shift keys. */ this.controlShiftKeys = {}; /** * Specifies if events are handled. Default is true. */ this.enabled = true; if (graph != null) { this.graph = graph; this.target = target || document.documentElement; this.keydownHandler = (evt) => { this.keyDown(evt); }; // Installs the keystroke listener in the target InternalEvent.addListener(this.target, 'keydown', this.keydownHandler); } } /** * Returns true if events are handled. This implementation returns * <enabled>. */ isEnabled() { return this.enabled; } /** * Enables or disables event handling by updating <enabled>. * * @param enabled Boolean that specifies the new enabled state. */ setEnabled(enabled) { this.enabled = enabled; } /** * Binds the specified keycode to the given function. This binding is used * if the control key is not pressed. * * @param code Integer that specifies the keycode. * @param funct JavaScript function that takes the key event as an argument. */ bindKey(code, funct) { this.normalKeys[code] = funct; } /** * Binds the specified keycode to the given function. This binding is used * if the shift key is pressed. * * @param code Integer that specifies the keycode. * @param funct JavaScript function that takes the key event as an argument. */ bindShiftKey(code, funct) { this.shiftKeys[code] = funct; } /** * Binds the specified keycode to the given function. This binding is used * if the control key is pressed. * * @param code Integer that specifies the keycode. * @param funct JavaScript function that takes the key event as an argument. */ bindControlKey(code, funct) { this.controlKeys[code] = funct; } /** * Binds the specified keycode to the given function. This binding is used * if the control and shift key are pressed. * * @param code Integer that specifies the keycode. * @param funct JavaScript function that takes the key event as an argument. */ bindControlShiftKey(code, funct) { this.controlShiftKeys[code] = funct; } /** * Returns true if the control key is pressed. This uses {@link Event#isControlDown}. * * @param evt Key event whose control key pressed state should be returned. */ isControlDown(evt) { return _isControlDown(evt); } /** * Returns the function associated with the given key event or null if no * function is associated with the given event. * * @param evt Key event whose associated function should be returned. */ getFunction(evt) { if (evt != null && !isAltDown(evt)) { if (this.isControlDown(evt)) { if (isShiftDown(evt)) { return this.controlShiftKeys[evt.keyCode]; } return this.controlKeys[evt.keyCode]; } if (isShiftDown(evt)) { return this.shiftKeys[evt.keyCode]; } return this.normalKeys[evt.keyCode]; } return null; } /** * Returns `true` if the event should be processed by this handler. * That is, if the event source is either the target, one of its direct children a descendant of the {@link AbstractGraph.container}, * or the {@link CellEditorHandler} plugin of the {@link graph}. * * @param evt Key event that represents the keystroke. */ isGraphEvent(evt) { const source = getSource(evt); // Accepts events from the target object or in-place editing inside graph const cellEditorHandler = this.graph?.getPlugin('CellEditorHandler'); if (source === this.target || source.parentNode === this.target || (cellEditorHandler && cellEditorHandler.isEventSource(evt))) { return true; } // Accepts events from inside the container return this.graph ? isAncestorNode(this.graph.container, source) : false; } /** * Handles the event by invoking the function bound to the respective keystroke * if {@link isEnabledForEvent} returns `true` for the given event and if * {@link isEventIgnored} returns `false`, except for escape for which * {@link isEventIgnored} is not invoked. * * @param evt Key event that represents the keystroke. */ keyDown(evt) { if (this.isEnabledForEvent(evt)) { // Cancels the editing if escape is pressed if (evt.keyCode === 27 /* Escape */) { this.escape(evt); } // Invokes the function for the keystroke else if (!this.isEventIgnored(evt)) { const boundFunction = this.getFunction(evt); if (boundFunction != null) { boundFunction(evt); InternalEvent.consume(evt); } } } } /** * Returns true if the given event should be handled. {@link isEventIgnored} is * called later if the event is not an escape keystroke, in which case * {@link escape} is called. * * This implementation returns `true` if {@link AbstractGraph.isEnabled} * returns `true` for both, this handler and {@link graph}, if the event is not * consumed and if {@link isGraphEvent} returns `true`. * * @param evt Key event that represents the keystroke. */ isEnabledForEvent(evt) { return (this.graph?.isEnabled() && !isConsumed(evt) && this.isGraphEvent(evt) && this.isEnabled()); } /** * Returns true if the given keystroke should be ignored. This returns {@link AbstractGraph.isEditing}. * * @param evt Key event that represents the keystroke. */ isEventIgnored(evt) { return this.graph?.isEditing() ?? false; } /** * Hook to process ESCAPE keystrokes. This implementation invokes * {@link AbstractGraph.stopEditing} to cancel the current editing, connecting * and/or other ongoing modifications. * * @param evt Key event that represents the keystroke. Possible keycode in this case is 27 (ESCAPE). */ escape(evt) { if (this.graph?.isEscapeEnabled()) { this.graph.escape(evt); } } /** * Destroys the handler and all its references into the DOM. This does * normally not need to be called, it is called automatically when the * window unloads (in IE). */ onDestroy() { if (this.target != null && this.keydownHandler != null) { InternalEvent.removeListener(this.target, 'keydown', this.keydownHandler); this.keydownHandler = null; } this.target = null; } } export default KeyHandler;