You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
1.6 KiB
68 lines
1.6 KiB
'use strict';
|
|
|
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
|
var aria = require('../aria.js');
|
|
|
|
class SubMenu {
|
|
constructor(parent, domNode) {
|
|
this.parent = parent;
|
|
this.domNode = domNode;
|
|
this.subIndex = 0;
|
|
this.subIndex = 0;
|
|
this.init();
|
|
}
|
|
init() {
|
|
this.subMenuItems = this.domNode.querySelectorAll("li");
|
|
this.addListeners();
|
|
}
|
|
gotoSubIndex(idx) {
|
|
if (idx === this.subMenuItems.length) {
|
|
idx = 0;
|
|
} else if (idx < 0) {
|
|
idx = this.subMenuItems.length - 1;
|
|
}
|
|
;
|
|
this.subMenuItems[idx].focus();
|
|
this.subIndex = idx;
|
|
}
|
|
addListeners() {
|
|
const parentNode = this.parent.domNode;
|
|
Array.prototype.forEach.call(this.subMenuItems, (el) => {
|
|
el.addEventListener("keydown", (event) => {
|
|
let prevDef = false;
|
|
switch (event.code) {
|
|
case aria.EVENT_CODE.down: {
|
|
this.gotoSubIndex(this.subIndex + 1);
|
|
prevDef = true;
|
|
break;
|
|
}
|
|
case aria.EVENT_CODE.up: {
|
|
this.gotoSubIndex(this.subIndex - 1);
|
|
prevDef = true;
|
|
break;
|
|
}
|
|
case aria.EVENT_CODE.tab: {
|
|
aria.triggerEvent(parentNode, "mouseleave");
|
|
break;
|
|
}
|
|
case aria.EVENT_CODE.enter:
|
|
case aria.EVENT_CODE.space: {
|
|
prevDef = true;
|
|
event.currentTarget.click();
|
|
break;
|
|
}
|
|
}
|
|
if (prevDef) {
|
|
event.preventDefault();
|
|
event.stopPropagation();
|
|
}
|
|
return false;
|
|
});
|
|
});
|
|
}
|
|
}
|
|
|
|
exports["default"] = SubMenu;
|
|
//# sourceMappingURL=submenu.js.map
|