mirror of
https://github.com/outline/outline.git
synced 2026-04-29 22:19:32 -05:00
340109d9a3
* fix: make share dialog scrollable * fix: rename * fix: mobile * fix: useMaxHeight margin calculation * cleanup --------- Co-authored-by: Tom Moor <tom.moor@gmail.com>
44 lines
1.2 KiB
TypeScript
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;
|