fix: make movePercentage calculated from internalRef instead of e.target

This commit is contained in:
p-sw 2024-06-03 16:39:40 +09:00
parent b96c5883fb
commit ff5f9c72ec

View File

@ -272,16 +272,11 @@ const DrawerContent = forwardRef<HTMLDivElement, DrawerContentProps>(
};
});
if (
e.target instanceof Element &&
internalRef.current &&
internalRef.current.contains(e.target)
) {
if (internalRef.current) {
const size = ["top", "bottom"].includes(position)
? e.target.getBoundingClientRect().height
: e.target.getBoundingClientRect().width;
? internalRef.current.getBoundingClientRect().height
: internalRef.current.getBoundingClientRect().width;
const movePercentage = dragState.delta / size;
setState((prev) => ({
...prev,
movePercentage: ["top", "left"].includes(position)