2019-11-09 22:21:34 +00:00
|
|
|
<template>
|
2019-11-18 20:05:47 +00:00
|
|
|
<div
|
|
|
|
v-if="isOpen"
|
|
|
|
id="context-menu-container"
|
|
|
|
@click="containerClick"
|
|
|
|
@contextmenu.prevent="containerClick"
|
|
|
|
>
|
|
|
|
<ul
|
|
|
|
id="context-menu"
|
|
|
|
ref="contextMenu"
|
|
|
|
role="menu"
|
|
|
|
:style="style"
|
|
|
|
tabindex="-1"
|
|
|
|
@mouseleave="activeItem = -1"
|
|
|
|
@keydown.enter.prevent="clickActiveItem"
|
|
|
|
>
|
|
|
|
<template v-for="(item, id) of items">
|
|
|
|
<li
|
|
|
|
:key="item.name"
|
|
|
|
:class="[
|
|
|
|
'context-menu-' + item.type,
|
|
|
|
item.class ? 'context-menu-' + item.class : null,
|
|
|
|
{active: id === activeItem},
|
|
|
|
]"
|
|
|
|
role="menuitem"
|
|
|
|
@mouseover="hoverItem(id)"
|
|
|
|
@click="clickItem(item)"
|
|
|
|
>
|
|
|
|
{{ item.label }}
|
|
|
|
</li>
|
|
|
|
</template>
|
2019-11-09 22:21:34 +00:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2019-11-16 17:24:03 +00:00
|
|
|
import Mousetrap from "mousetrap";
|
2019-11-09 22:21:34 +00:00
|
|
|
|
|
|
|
export default {
|
|
|
|
name: "ContextMenu",
|
|
|
|
props: {
|
|
|
|
message: Object,
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
isOpen: false,
|
|
|
|
previousActiveElement: null,
|
|
|
|
items: [],
|
2019-11-18 20:05:47 +00:00
|
|
|
activeItem: -1,
|
2019-11-09 22:21:34 +00:00
|
|
|
style: {
|
|
|
|
left: 0,
|
|
|
|
top: 0,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
},
|
|
|
|
mounted() {
|
2019-11-18 19:18:35 +00:00
|
|
|
Mousetrap.bind("esc", this.close);
|
2019-11-18 20:05:47 +00:00
|
|
|
Mousetrap.bind(["up", "down", "tab", "shift+tab"], this.navigateMenu);
|
2019-11-09 22:21:34 +00:00
|
|
|
},
|
2019-11-18 19:18:35 +00:00
|
|
|
destroyed() {
|
|
|
|
Mousetrap.unbind("esc", this.close);
|
2019-11-18 20:05:47 +00:00
|
|
|
Mousetrap.unbind(["up", "down", "tab", "shift+tab"], this.navigateMenu);
|
2019-11-18 19:18:35 +00:00
|
|
|
},
|
2019-11-09 22:21:34 +00:00
|
|
|
methods: {
|
|
|
|
open(event, items) {
|
2019-11-18 20:05:47 +00:00
|
|
|
event.preventDefault();
|
|
|
|
|
|
|
|
this.previousActiveElement = document.activeElement;
|
2019-11-09 22:21:34 +00:00
|
|
|
this.items = items;
|
2019-11-18 20:05:47 +00:00
|
|
|
this.activeItem = 0;
|
2019-11-09 22:21:34 +00:00
|
|
|
this.isOpen = true;
|
|
|
|
|
|
|
|
// Position the menu and set the focus on the first item after it's size has updated
|
|
|
|
this.$nextTick(() => {
|
|
|
|
const pos = this.positionContextMenu(event);
|
|
|
|
this.style.left = pos.left + "px";
|
|
|
|
this.style.top = pos.top + "px";
|
2019-11-18 20:05:47 +00:00
|
|
|
this.$refs.contextMenu.focus();
|
2019-11-09 22:21:34 +00:00
|
|
|
});
|
|
|
|
},
|
|
|
|
close() {
|
|
|
|
if (!this.isOpen) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.isOpen = false;
|
2019-11-18 20:05:47 +00:00
|
|
|
this.items = [];
|
2019-11-09 22:21:34 +00:00
|
|
|
|
|
|
|
if (this.previousActiveElement) {
|
|
|
|
this.previousActiveElement.focus();
|
|
|
|
this.previousActiveElement = null;
|
|
|
|
}
|
|
|
|
},
|
2019-11-18 20:05:47 +00:00
|
|
|
hoverItem(id) {
|
|
|
|
this.activeItem = id;
|
|
|
|
},
|
2019-11-09 22:21:34 +00:00
|
|
|
clickItem(item) {
|
|
|
|
if (item.action) {
|
|
|
|
item.action();
|
2019-11-18 20:05:47 +00:00
|
|
|
this.close();
|
2019-11-09 22:21:34 +00:00
|
|
|
} else if (item.link) {
|
|
|
|
this.$router.push(item.link);
|
2019-11-18 20:05:47 +00:00
|
|
|
this.close();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
clickActiveItem() {
|
|
|
|
if (this.items[this.activeItem]) {
|
|
|
|
this.clickItem(this.items[this.activeItem]);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
navigateMenu(event, key) {
|
|
|
|
event.preventDefault();
|
|
|
|
|
|
|
|
const direction = key === "down" || key === "tab" ? 1 : -1;
|
|
|
|
|
|
|
|
let currentIndex = this.activeItem;
|
|
|
|
|
|
|
|
currentIndex += direction;
|
|
|
|
|
|
|
|
const nextItem = this.items[currentIndex];
|
|
|
|
|
|
|
|
// If the next item we would select is a divider, skip over it
|
|
|
|
if (nextItem && !nextItem.action && !nextItem.link) {
|
|
|
|
currentIndex += direction;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (currentIndex < 0) {
|
|
|
|
currentIndex += this.items.length;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (currentIndex > this.items.length - 1) {
|
|
|
|
currentIndex -= this.items.length;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.activeItem = currentIndex;
|
|
|
|
},
|
|
|
|
containerClick(event) {
|
|
|
|
if (event.currentTarget === event.target) {
|
|
|
|
this.close();
|
2019-11-09 22:21:34 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
positionContextMenu(event) {
|
|
|
|
const element = event.target;
|
|
|
|
const menuWidth = this.$refs.contextMenu.offsetWidth;
|
|
|
|
const menuHeight = this.$refs.contextMenu.offsetHeight;
|
|
|
|
|
|
|
|
if (element.classList.contains("menu")) {
|
|
|
|
return {
|
|
|
|
left: element.getBoundingClientRect().left - (menuWidth - element.offsetWidth),
|
|
|
|
top: element.getBoundingClientRect().top + element.offsetHeight,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
const offset = {left: event.pageX, top: event.pageY};
|
|
|
|
|
|
|
|
if (window.innerWidth - offset.left < menuWidth) {
|
|
|
|
offset.left = window.innerWidth - menuWidth;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (window.innerHeight - offset.top < menuHeight) {
|
|
|
|
offset.top = window.innerHeight - menuHeight;
|
|
|
|
}
|
|
|
|
|
|
|
|
return offset;
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|