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 ( if (internalRef.current) {
e.target instanceof Element &&
internalRef.current &&
internalRef.current.contains(e.target)
) {
const size = ["top", "bottom"].includes(position) const size = ["top", "bottom"].includes(position)
? e.target.getBoundingClientRect().height ? internalRef.current.getBoundingClientRect().height
: e.target.getBoundingClientRect().width; : internalRef.current.getBoundingClientRect().width;
const movePercentage = dragState.delta / size; const movePercentage = dragState.delta / size;
setState((prev) => ({ setState((prev) => ({
...prev, ...prev,
movePercentage: ["top", "left"].includes(position) movePercentage: ["top", "left"].includes(position)