64 lines
1.3 KiB
Vue
64 lines
1.3 KiB
Vue
|
<template>
|
||
|
<div ref="el" class="sfhdhdhr">
|
||
|
<MkMenu ref="menu" :items="items" :align="align" :width="width" :as-drawer="false" @close="onChildClosed"/>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts" setup>
|
||
|
import { on } from 'events';
|
||
|
import { nextTick, onBeforeUnmount, onMounted, onUnmounted, ref, watch } from 'vue';
|
||
|
import MkMenu from './menu.vue';
|
||
|
import { MenuItem } from '@/types/menu';
|
||
|
import * as os from '@/os';
|
||
|
|
||
|
const props = defineProps<{
|
||
|
items: MenuItem[];
|
||
|
targetElement: HTMLElement;
|
||
|
width?: number;
|
||
|
viaKeyboard?: boolean;
|
||
|
}>();
|
||
|
|
||
|
const emit = defineEmits<{
|
||
|
(ev: 'closed'): void;
|
||
|
(ev: 'actioned'): void;
|
||
|
}>();
|
||
|
|
||
|
const el = ref<HTMLElement>();
|
||
|
const align = 'left';
|
||
|
|
||
|
function setPosition() {
|
||
|
const rect = props.targetElement.getBoundingClientRect();
|
||
|
const left = rect.left + props.targetElement.offsetWidth;
|
||
|
const top = rect.top - 8;
|
||
|
el.value.style.left = left + 'px';
|
||
|
el.value.style.top = top + 'px';
|
||
|
}
|
||
|
|
||
|
function onChildClosed(actioned?: boolean) {
|
||
|
if (actioned) {
|
||
|
emit('actioned');
|
||
|
} else {
|
||
|
emit('closed');
|
||
|
}
|
||
|
}
|
||
|
|
||
|
onMounted(() => {
|
||
|
setPosition();
|
||
|
nextTick(() => {
|
||
|
setPosition();
|
||
|
});
|
||
|
});
|
||
|
|
||
|
defineExpose({
|
||
|
checkHit: (ev: MouseEvent) => {
|
||
|
return (ev.target === el.value || el.value.contains(ev.target));
|
||
|
},
|
||
|
});
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped>
|
||
|
.sfhdhdhr {
|
||
|
position: fixed;
|
||
|
}
|
||
|
</style>
|