Some checks failed
Branch Build CE / Build Setup (push) Has been cancelled
Branch Build CE / Build-Push Admin Docker Image (push) Has been cancelled
Branch Build CE / Build-Push Web Docker Image (push) Has been cancelled
Branch Build CE / Build-Push Space Docker Image (push) Has been cancelled
Branch Build CE / Build-Push Live Collaboration Docker Image (push) Has been cancelled
Branch Build CE / Build-Push API Server Docker Image (push) Has been cancelled
Branch Build CE / Build-Push Proxy Docker Image (push) Has been cancelled
Branch Build CE / Build-Push AIO Docker Image (push) Has been cancelled
Branch Build CE / Upload Build Assets (push) Has been cancelled
Branch Build CE / Build Release (push) Has been cancelled
CodeQL / Analyze (javascript) (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
Codespell / Check for spelling errors (push) Has been cancelled
Sync Repositories / sync_changes (push) Has been cancelled
Synced from upstream: 8853637e981ed7d8a6cff32bd98e7afe20f54362
51 lines
1.7 KiB
TypeScript
51 lines
1.7 KiB
TypeScript
import type React from "react";
|
|
import { useEffect } from "react";
|
|
|
|
const usePeekOverviewOutsideClickDetector = (
|
|
ref: React.RefObject<HTMLElement>,
|
|
callback: () => void,
|
|
issueId: 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 === `issue-${issueId}`) {
|
|
// 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 usePeekOverviewOutsideClickDetector;
|