mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-14 07:33:09 +02:00
c2370a1be6
* chore: Add the SPDX information to each file Add copyright and licensing information as defined in version 3.0 of the REUSE Specification. * tweak format --------- Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
91 lines
2 KiB
Vue
91 lines
2 KiB
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<div ref="el" :class="$style.root">
|
|
<MkMenu :items="items" :align="align" :width="width" :asDrawer="false" @close="onChildClosed"/>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { nextTick, onMounted, onUnmounted, shallowRef, watch } from 'vue';
|
|
import MkMenu from './MkMenu.vue';
|
|
import { MenuItem } from '@/types/menu';
|
|
|
|
const props = defineProps<{
|
|
items: MenuItem[];
|
|
targetElement: HTMLElement;
|
|
rootElement: HTMLElement;
|
|
width?: number;
|
|
viaKeyboard?: boolean;
|
|
}>();
|
|
|
|
const emit = defineEmits<{
|
|
(ev: 'closed'): void;
|
|
(ev: 'actioned'): void;
|
|
}>();
|
|
|
|
const el = shallowRef<HTMLElement>();
|
|
const align = 'left';
|
|
|
|
const SCROLLBAR_THICKNESS = 16;
|
|
|
|
function setPosition() {
|
|
const rootRect = props.rootElement.getBoundingClientRect();
|
|
const parentRect = props.targetElement.getBoundingClientRect();
|
|
const myRect = el.value.getBoundingClientRect();
|
|
|
|
let left = props.targetElement.offsetWidth;
|
|
let top = (parentRect.top - rootRect.top) - 8;
|
|
if (rootRect.left + left + myRect.width >= (window.innerWidth - SCROLLBAR_THICKNESS)) {
|
|
left = -myRect.width;
|
|
}
|
|
if (rootRect.top + top + myRect.height >= (window.innerHeight - SCROLLBAR_THICKNESS)) {
|
|
top = top - ((rootRect.top + top + myRect.height) - (window.innerHeight - SCROLLBAR_THICKNESS));
|
|
}
|
|
el.value.style.left = left + 'px';
|
|
el.value.style.top = top + 'px';
|
|
}
|
|
|
|
function onChildClosed(actioned?: boolean) {
|
|
if (actioned) {
|
|
emit('actioned');
|
|
} else {
|
|
emit('closed');
|
|
}
|
|
}
|
|
|
|
watch(() => props.targetElement, () => {
|
|
setPosition();
|
|
});
|
|
|
|
const ro = new ResizeObserver((entries, observer) => {
|
|
setPosition();
|
|
});
|
|
|
|
onMounted(() => {
|
|
ro.observe(el.value);
|
|
setPosition();
|
|
nextTick(() => {
|
|
setPosition();
|
|
});
|
|
});
|
|
|
|
onUnmounted(() => {
|
|
ro.disconnect();
|
|
});
|
|
|
|
defineExpose({
|
|
checkHit: (ev: MouseEvent) => {
|
|
return (ev.target === el.value || el.value.contains(ev.target));
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" module>
|
|
.root {
|
|
position: absolute;
|
|
}
|
|
</style>
|