Files
outline/app/hooks/useMaxHeight.ts
T
Apoorv Mishra 340109d9a3 Make share dialog scrollable (#7344)
* fix: make share dialog scrollable

* fix: rename

* fix: mobile

* fix: useMaxHeight margin calculation

* cleanup

---------

Co-authored-by: Tom Moor <tom.moor@gmail.com>
2024-08-04 08:59:54 -07:00

44 lines
1.2 KiB
TypeScript

import * as React from "react";
import useWindowSize from "./useWindowSize";
const useMaxHeight = ({
elementRef,
maxViewportPercentage = 90,
margin = 16,
}: {
/** The maximum height of the element as a percentage of the viewport. */
maxViewportPercentage?: number;
/** A ref pointing to the element. */
elementRef?: React.RefObject<HTMLElement | null>;
/** The margin to apply to the positioning. */
margin?: number;
}) => {
const [maxHeight, setMaxHeight] = React.useState<number | undefined>(10);
const { height: windowHeight } = useWindowSize();
const calcMaxHeight = React.useCallback(() => {
if (elementRef?.current) {
const mxHeight = (windowHeight / 100) * maxViewportPercentage - margin;
setMaxHeight(
Math.min(
mxHeight,
elementRef?.current
? windowHeight -
elementRef.current.getBoundingClientRect().top -
margin
: 0
)
);
} else {
setMaxHeight(0);
}
}, [elementRef, windowHeight, margin, maxViewportPercentage]);
React.useLayoutEffect(calcMaxHeight, [calcMaxHeight]);
return { maxHeight, calcMaxHeight };
};
export default useMaxHeight;