126 lines
3.3 KiB
TypeScript
126 lines
3.3 KiB
TypeScript
|
// Copyright: Ankitects Pty Ltd and contributors
|
||
|
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
||
|
|
||
|
import type {
|
||
|
ComputePositionConfig,
|
||
|
FloatingElement,
|
||
|
Middleware,
|
||
|
Placement,
|
||
|
} from "@floating-ui/dom";
|
||
|
import {
|
||
|
arrow,
|
||
|
autoPlacement,
|
||
|
computePosition,
|
||
|
hide,
|
||
|
inline,
|
||
|
offset,
|
||
|
shift,
|
||
|
} from "@floating-ui/dom";
|
||
|
|
||
|
import type { PositionAlgorithm } from "./position-algorithm";
|
||
|
|
||
|
export interface PositionFloatingArgs {
|
||
|
placement: Placement | "auto";
|
||
|
arrow: HTMLElement;
|
||
|
shift: number;
|
||
|
offset: number;
|
||
|
inline: boolean;
|
||
|
hideIfEscaped: boolean;
|
||
|
hideIfReferenceHidden: boolean;
|
||
|
hideCallback: (reason: string) => void;
|
||
|
}
|
||
|
|
||
|
function positionFloating({
|
||
|
placement,
|
||
|
arrow: arrowElement,
|
||
|
shift: shiftArg,
|
||
|
offset: offsetArg,
|
||
|
inline: inlineArg,
|
||
|
hideIfEscaped,
|
||
|
hideIfReferenceHidden,
|
||
|
hideCallback,
|
||
|
}: PositionFloatingArgs): PositionAlgorithm {
|
||
|
return async function (
|
||
|
reference: HTMLElement,
|
||
|
floating: FloatingElement,
|
||
|
): Promise<void> {
|
||
|
const middleware: Middleware[] = [
|
||
|
offset(offsetArg),
|
||
|
shift({ padding: shiftArg }),
|
||
|
arrow({ element: arrowElement, padding: 5 }),
|
||
|
];
|
||
|
|
||
|
if (inlineArg) {
|
||
|
middleware.unshift(inline());
|
||
|
}
|
||
|
|
||
|
const computeArgs: Partial<ComputePositionConfig> = {
|
||
|
middleware,
|
||
|
};
|
||
|
|
||
|
if (placement !== "auto") {
|
||
|
computeArgs.placement = placement;
|
||
|
} else {
|
||
|
middleware.push(autoPlacement());
|
||
|
}
|
||
|
|
||
|
if (hideIfEscaped) {
|
||
|
middleware.push(hide({ strategy: "escaped" }));
|
||
|
}
|
||
|
|
||
|
if (hideIfReferenceHidden) {
|
||
|
middleware.push(hide({ strategy: "referenceHidden" }));
|
||
|
}
|
||
|
|
||
|
const {
|
||
|
x,
|
||
|
y,
|
||
|
middlewareData,
|
||
|
placement: computedPlacement,
|
||
|
} = await computePosition(reference, floating, computeArgs);
|
||
|
|
||
|
if (middlewareData.hide?.escaped) {
|
||
|
return hideCallback("escaped");
|
||
|
}
|
||
|
|
||
|
if (middlewareData.hide?.referenceHidden) {
|
||
|
return hideCallback("referenceHidden");
|
||
|
}
|
||
|
|
||
|
Object.assign(floating.style, {
|
||
|
left: `${x}px`,
|
||
|
top: `${y}px`,
|
||
|
});
|
||
|
|
||
|
let rotation: number;
|
||
|
let arrowX: number | undefined;
|
||
|
let arrowY: number | undefined;
|
||
|
|
||
|
if (computedPlacement.startsWith("bottom")) {
|
||
|
rotation = 45;
|
||
|
arrowX = middlewareData.arrow?.x;
|
||
|
arrowY = -5;
|
||
|
} else if (computedPlacement.startsWith("left")) {
|
||
|
rotation = 135;
|
||
|
arrowX = floating.offsetWidth - 5;
|
||
|
arrowY = middlewareData.arrow?.y;
|
||
|
} else if (computedPlacement.startsWith("top")) {
|
||
|
rotation = 225;
|
||
|
arrowX = middlewareData.arrow?.x;
|
||
|
arrowY = floating.offsetHeight - 5;
|
||
|
} /* if (computedPlacement.startsWith("right")) */ else {
|
||
|
rotation = 315;
|
||
|
arrowX = -5;
|
||
|
arrowY = middlewareData.arrow?.y;
|
||
|
}
|
||
|
|
||
|
Object.assign(arrowElement.style, {
|
||
|
left: arrowX ? `${arrowX}px` : "",
|
||
|
top: arrowY ? `${arrowY}px` : "",
|
||
|
transform: `rotate(${rotation}deg)`,
|
||
|
});
|
||
|
};
|
||
|
}
|
||
|
|
||
|
export default positionFloating;
|