fix: make movePercentage calculated from internalRef instead of e.target
This commit is contained in:
parent
b96c5883fb
commit
ff5f9c72ec
@ -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)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user