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 (
|
||||
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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user