mirror of
https://github.com/ant-design/ant-design.git
synced 2025-07-31 20:36:35 +08:00

* fix(splitter): correct collapse behavior in RTL mode * chore: update rtl logic * chore: remove unnecessary Optional Chaining * Update components/splitter/hooks/useResizable.ts Signed-off-by: afc163 <afc163@gmail.com> --------- Signed-off-by: afc163 <afc163@gmail.com> Co-authored-by: afc163 <afc163@gmail.com>
63 lines
1.8 KiB
TypeScript
63 lines
1.8 KiB
TypeScript
import * as React from 'react';
|
|
|
|
import type { ItemType } from './useItems';
|
|
|
|
export type ResizableInfo = {
|
|
resizable: boolean;
|
|
startCollapsible: boolean;
|
|
endCollapsible: boolean;
|
|
};
|
|
|
|
export default function useResizable(items: ItemType[], pxSizes: number[], isRTL: boolean) {
|
|
return React.useMemo(() => {
|
|
const resizeInfos: ResizableInfo[] = [];
|
|
|
|
for (let i = 0; i < items.length - 1; i += 1) {
|
|
const prevItem = items[i];
|
|
const nextItem = items[i + 1];
|
|
const prevSize = pxSizes[i];
|
|
const nextSize = pxSizes[i + 1];
|
|
|
|
const {
|
|
resizable: prevResizable = true,
|
|
min: prevMin,
|
|
collapsible: prevCollapsible,
|
|
} = prevItem;
|
|
const {
|
|
resizable: nextResizable = true,
|
|
min: nextMin,
|
|
collapsible: nextCollapsible,
|
|
} = nextItem;
|
|
|
|
const mergedResizable =
|
|
// Both need to be resizable
|
|
prevResizable &&
|
|
nextResizable &&
|
|
// Prev is not collapsed and limit min size
|
|
(prevSize !== 0 || !prevMin) &&
|
|
// Next is not collapsed and limit min size
|
|
(nextSize !== 0 || !nextMin);
|
|
|
|
const startCollapsible =
|
|
// Self is collapsible
|
|
(prevCollapsible.end && prevSize > 0) ||
|
|
// Collapsed and can be collapsed
|
|
(nextCollapsible.start && nextSize === 0 && prevSize > 0);
|
|
|
|
const endCollapsible =
|
|
// Self is collapsible
|
|
(nextCollapsible.start && nextSize > 0) ||
|
|
// Collapsed and can be collapsed
|
|
(prevCollapsible.end && prevSize === 0 && nextSize > 0);
|
|
|
|
resizeInfos[i] = {
|
|
resizable: mergedResizable,
|
|
startCollapsible: !!(isRTL ? endCollapsible : startCollapsible),
|
|
endCollapsible: !!(isRTL ? startCollapsible : endCollapsible),
|
|
};
|
|
}
|
|
|
|
return resizeInfos;
|
|
}, [pxSizes, items]);
|
|
}
|