spiegel-keyman/common/web/gesture-recognizer/src/engine/mouseEventEngine.ts

132 lines
No EOL
4.9 KiB
TypeScript

import { GestureRecognizerConfiguration } from "./configuration/gestureRecognizerConfiguration.js";
import { InputEventEngine } from "./inputEventEngine.js";
import { InputSample } from "./headless/inputSample.js";
import { Nonoptional } from "./nonoptional.js";
import { ZoneBoundaryChecker } from "./configuration/zoneBoundaryChecker.js";
export class MouseEventEngine<HoveredItemType, StateToken = any> extends InputEventEngine<HoveredItemType, StateToken> {
private readonly _mouseStart: typeof MouseEventEngine.prototype.onMouseStart;
private readonly _mouseMove: typeof MouseEventEngine.prototype.onMouseMove;
private readonly _mouseEnd: typeof MouseEventEngine.prototype.onMouseEnd;
private hasActiveClick: boolean = false;
private disabledSafeBounds: number = 0;
public constructor(config: Nonoptional<GestureRecognizerConfiguration<HoveredItemType, StateToken>>) {
super(config);
// We use this approach, rather than .bind, because _this_ version allows hook
// insertion for unit tests via prototype manipulation. The .bind version doesn't.
this._mouseStart = (event: MouseEvent) => this.onMouseStart(event);
this._mouseMove = (event: MouseEvent) => this.onMouseMove(event);
this._mouseEnd = (event: MouseEvent) => this.onMouseEnd(event);
}
private get eventRoot(): HTMLElement {
return this.config.mouseEventRoot;
}
private get activeIdentifier(): number {
return 0;
}
// public static forPredictiveBanner(banner: SuggestionBanner, handlerRoot: SuggestionManager) {
// const config: GestureRecognizerConfiguration = {
// targetRoot: banner.getDiv(),
// // document.body is the event root b/c we need to track the mouse if it leaves
// // the VisualKeyboard's hierarchy.
// eventRoot: document.body,
// };
// return new MouseEventEngine(config);
// }
registerEventHandlers() {
this.eventRoot.addEventListener('mousedown', this._mouseStart, true);
this.eventRoot.addEventListener('mousemove', this._mouseMove, false);
// The listener below fails to capture when performing automated testing checks in Chrome emulation unless 'true'.
this.eventRoot.addEventListener('mouseup', this._mouseEnd, true);
}
unregisterEventHandlers() {
this.eventRoot.removeEventListener('mousedown', this._mouseStart, true);
this.eventRoot.removeEventListener('mousemove', this._mouseMove, false);
this.eventRoot.removeEventListener('mouseup', this._mouseEnd, true);
}
private preventPropagation(e: MouseEvent) {
// Standard event maintenance
e.preventDefault();
e.cancelBubble=true;
e.returnValue=false; // I2409 - Avoid focus loss for visual keyboard events
if(typeof e.stopImmediatePropagation == 'function') {
e.stopImmediatePropagation();
} else if(typeof e.stopPropagation == 'function') {
e.stopPropagation();
}
}
private buildSampleFromEvent(event: MouseEvent, identifier: number) {
// WILL be null for newly-starting `GestureSource`s / contact points.
const source = this.getTouchpointWithId(identifier);
return this.buildSampleFor(event.clientX, event.clientY, event.target, performance.now(), source);
}
onMouseStart(event: MouseEvent) {
// If it's not an event we'd consider handling, do not prevent event
// propagation! Just don't process it.
if(!this.config.targetRoot.contains(event.target as Node)) {
return;
}
this.preventPropagation(event);
const identifier = this.activeIdentifier;
const sample = this.buildSampleFromEvent(event, identifier);
if(!ZoneBoundaryChecker.inputStartOutOfBoundsCheck(sample, this.config)) {
// If we started very close to a safe zone border, remember which one(s).
// This is important for input-sequence cancellation check logic.
this.disabledSafeBounds = ZoneBoundaryChecker.inputStartSafeBoundProximityCheck(sample, this.config);
}
this.onInputStart(identifier, sample, event.target, false);
}
onMouseMove(event: MouseEvent) {
if(!this.hasActiveTouchpoint(this.activeIdentifier)) {
return;
}
const sample = this.buildSampleFromEvent(event, this.activeIdentifier);
if(!event.buttons) {
if(this.hasActiveClick) {
this.hasActiveClick = false;
this.onInputMoveCancel(this.activeIdentifier, sample, event.target);
}
return;
}
this.preventPropagation(event);
const config = this.getConfigForId(this.activeIdentifier);
if(!ZoneBoundaryChecker.inputMoveCancellationCheck(sample, config, this.disabledSafeBounds)) {
this.onInputMove(this.activeIdentifier, sample, event.target);
} else {
this.onInputMoveCancel(this.activeIdentifier, sample, event.target);
}
}
onMouseEnd(event: MouseEvent) {
if(!this.hasActiveTouchpoint(this.activeIdentifier)) {
return;
}
if(!event.buttons) {
this.hasActiveClick = false;
}
this.onInputEnd(this.activeIdentifier, event.target);
}
}