@eclipse-scout/core
Version:
Eclipse Scout runtime
45 lines (39 loc) • 1.21 kB
text/typescript
/*
* Copyright (c) 2010, 2023 BSI Business Systems Integration AG
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*/
import {ContextMenuPopup, KeyStroke, ScoutKeyboardEvent} from '../index';
export class MenuNavigationKeyStroke extends KeyStroke {
declare field: ContextMenuPopup;
protected _menuItemClass: string;
constructor(popup: ContextMenuPopup) {
super();
this.field = popup;
this.inheritAccessibility = false;
}
protected override _accept(event: ScoutKeyboardEvent): boolean {
let accepted = super._accept(event);
if (!accepted || this.field.bodyAnimating) {
return false;
}
return accepted;
}
protected _changeSelection($oldItem: JQuery, $newItem: JQuery) {
if ($newItem.length === 0) {
// do not change selection
return;
}
$newItem.select(true).focus();
if (this.field.updateNextToSelected) {
this.field.updateNextToSelected(this._menuItemClass, $newItem);
}
if ($oldItem.length > 0) {
$oldItem.select(false);
}
}
}