fix: 优化侧边栏拖拽逻辑,支持展开和折叠

This commit is contained in:
zouawen
2026-02-27 10:53:50 +08:00
parent 99710ef9dc
commit afffc4b3f0
4 changed files with 35 additions and 25 deletions

View File

@@ -2,7 +2,6 @@ export * from './use-is-mobile';
export * from './use-layout-style';
export * from './use-namespace';
export * from './use-priority-value';
export * from './use-resizable';
export * from './use-scroll-lock';
export * from './use-simple-locale';
export * from './use-sortable';

View File

@@ -3,11 +3,11 @@ import type { CSSProperties } from 'vue';
import { computed, shallowRef, useSlots, watchEffect } from 'vue';
import { useResizable } from '@vben-core/composables';
import { VbenScrollbar } from '@vben-core/shadcn-ui';
import { useScrollLock } from '@vueuse/core';
import { useSidebarDrag } from '../hooks/use-sidebar-drag';
import { SidebarCollapseButton, SidebarFixedButton } from './widgets';
interface Props {
@@ -256,18 +256,29 @@ function handleMouseleave() {
extraVisible.value = false;
}
const { startDrag } = useResizable({
min: 160,
max: 320,
onChange: (newWidth) => {
emit('update:width', newWidth);
},
});
const { startDrag } = useSidebarDrag();
const handleDragSidebar = (e: MouseEvent) => {
const { isSidebarMixed, extraWidth, width } = props;
const { isSidebarMixed, collapseWidth, extraWidth, width } = props;
const minLimit = isSidebarMixed ? width + collapseWidth : collapseWidth;
const maxLimit = isSidebarMixed ? width + 320 : 320;
const currentWidth = isSidebarMixed ? extraWidth : width;
startDrag(e, currentWidth, asideRef.value, dragBarRef.value);
startDrag(
e,
minLimit,
maxLimit,
currentWidth,
asideRef.value,
dragBarRef.value,
(newWidth) => {
emit('update:width', newWidth);
if (isSidebarMixed) {
extraCollapse.value = newWidth <= collapseWidth;
} else {
collapse.value = newWidth <= collapseWidth;
}
},
);
};
</script>

View File

@@ -1,14 +1,6 @@
import { onUnmounted } from 'vue';
interface ResizableOptions {
max?: number;
min?: number;
onChange?: (newWidth: number) => void;
}
export function useResizable(options: ResizableOptions = {}) {
const { min = 0, max = 999, onChange } = options;
export function useSidebarDrag() {
let startX = 0;
let startWidth = 0;
let targetTransition = '';
@@ -22,9 +14,12 @@ export function useResizable(options: ResizableOptions = {}) {
const startDrag = (
e: MouseEvent,
min: number,
max: number,
currentWidth: number,
targetElement: HTMLElement | null,
dragBarElement: HTMLElement | null,
onDrag: (newWidth: number) => void,
) => {
cleanup?.();
@@ -57,7 +52,9 @@ export function useResizable(options: ResizableOptions = {}) {
const onMouseMove = (moveEvent: MouseEvent) => {
const deltaX = moveEvent.clientX - startX;
const newLeft = dragBarOffsetLeft + deltaX;
let newLeft = dragBarOffsetLeft + deltaX;
if (newLeft < min) newLeft = min;
if (newLeft > max) newLeft = max;
dragBarElement.style.left = `${newLeft}px`;
};
@@ -71,7 +68,7 @@ export function useResizable(options: ResizableOptions = {}) {
dragBarElement.style.right = dragBarRight;
}
onChange?.(newWidth);
onDrag?.(newWidth);
cleanup?.();
};

View File

@@ -124,13 +124,16 @@ const headerWrapperHeight = computed(() => {
});
const getSideCollapseWidth = computed(() => {
const { sidebarCollapseShowTitle, sidebarMixedWidth, sideCollapseWidth } =
props;
const {
sidebarCollapseShowTitle,
sidebarExtraCollapsedWidth,
sideCollapseWidth,
} = props;
return sidebarCollapseShowTitle ||
isSidebarMixedNav.value ||
isHeaderMixedNav.value
? sidebarMixedWidth
? sidebarExtraCollapsedWidth
: sideCollapseWidth;
});