mirror of
https://github.com/makeplane/plane.git
synced 2025-12-20 05:39:32 +01:00
* [WEB-5134] refactor: update `web` ESLint configuration and refactor imports to use type imports - Enhanced ESLint configuration by adding new rules for import consistency and type imports. - Refactored multiple files to replace regular imports with type imports for better clarity and performance. - Ensured consistent use of type imports across the application to align with TypeScript best practices. * refactor: standardize type imports across components - Updated multiple files to replace regular imports with type imports for improved clarity and consistency. - Ensured adherence to TypeScript best practices in the rich filters and issue layouts components.
51 lines
1.7 KiB
TypeScript
51 lines
1.7 KiB
TypeScript
import type React from "react";
|
|
import { useEffect } from "react";
|
|
|
|
const useExtendedSidebarOutsideClickDetector = (
|
|
ref: React.RefObject<HTMLElement>,
|
|
callback: () => void,
|
|
targetId: string
|
|
) => {
|
|
const handleClick = (event: MouseEvent) => {
|
|
if (ref.current && !ref.current.contains(event.target as Node)) {
|
|
// check for the closest element with attribute name data-prevent-outside-click
|
|
const preventOutsideClickElement = (event.target as HTMLElement | undefined)?.closest(
|
|
"[data-prevent-outside-click]"
|
|
);
|
|
// if the closest element with attribute name data-prevent-outside-click is found, return
|
|
if (preventOutsideClickElement) {
|
|
return;
|
|
}
|
|
// check if the click target is the current issue element or its children
|
|
let targetElement = event.target as HTMLElement | null;
|
|
while (targetElement) {
|
|
if (targetElement.id === targetId) {
|
|
// if the click target is the current issue element, return
|
|
return;
|
|
}
|
|
targetElement = targetElement.parentElement;
|
|
}
|
|
const delayOutsideClickElement = (event.target as HTMLElement | undefined)?.closest("[data-delay-outside-click]");
|
|
if (delayOutsideClickElement) {
|
|
// if the click target is the closest element with attribute name data-delay-outside-click, delay the callback
|
|
setTimeout(() => {
|
|
callback();
|
|
}, 0);
|
|
return;
|
|
}
|
|
// else, call the callback immediately
|
|
callback();
|
|
}
|
|
};
|
|
|
|
useEffect(() => {
|
|
document.addEventListener("mousedown", handleClick);
|
|
|
|
return () => {
|
|
document.removeEventListener("mousedown", handleClick);
|
|
};
|
|
}, []);
|
|
};
|
|
|
|
export default useExtendedSidebarOutsideClickDetector;
|