fix(frontend): 子メニューの最大長調整が行われていない問題を修正

This commit is contained in:
kakkokari-gtyih 2024-06-15 16:35:29 +09:00
parent 34458d767b
commit ea58bf7a53
1 changed files with 6 additions and 2 deletions

View File

@ -5,12 +5,12 @@ 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"/>
<MkMenu :items="items" :align="align" :width="width" :maxHeight="maxHeight" :asDrawer="false" @close="onChildClosed"/>
</div>
</template>
<script lang="ts" setup>
import { nextTick, onMounted, onUnmounted, shallowRef, watch } from 'vue';
import { nextTick, onMounted, onUnmounted, shallowRef, ref, watch } from 'vue';
import MkMenu from './MkMenu.vue';
import { MenuItem } from '@/types/menu.js';
@ -29,6 +29,7 @@ const emit = defineEmits<{
const el = shallowRef<HTMLElement>();
const align = 'left';
const maxHeight = ref<number | undefined>(undefined);
const SCROLLBAR_THICKNESS = 16;
@ -40,6 +41,9 @@ function setPosition() {
let left = props.targetElement.offsetWidth;
let top = (parentRect.top - rootRect.top) - 8;
maxHeight.value = window.innerHeight - rootRect.top - SCROLLBAR_THICKNESS;
if (rootRect.left + left + myRect.width >= (window.innerWidth - SCROLLBAR_THICKNESS)) {
left = -myRect.width;
}