Some checks failed
build-packages / resolve bundled mosh-client (push) Has been cancelled
build-packages / resolve bundled et-client (push) Has been cancelled
build-packages / build-macos (push) Has been cancelled
build-packages / build-windows (push) Has been cancelled
build-packages / build-linux-x64 (push) Has been cancelled
build-packages / build-linux-arm64 (push) Has been cancelled
build-packages / release (push) Has been cancelled
build-packages / update Nix release metadata (push) Has been cancelled
build-packages / bump homebrew tap (push) Has been cancelled
test / lint-and-test (push) Has been cancelled
AI automation / Route event (push) Has been cancelled
AI automation / Hand reopened issue to maintainers (push) Has been cancelled
AI automation / Clean source issue state (push) Has been cancelled
AI automation / Reconcile handoffs (push) Has been cancelled
AI automation / Classify issue (push) Has been cancelled
AI automation / Claude Code smoke (push) Has been cancelled
AI automation / Review issue follow-up (push) Has been cancelled
AI automation / Publish issue follow-up (push) Has been cancelled
AI automation / Implement with Claude Code (push) Has been cancelled
AI automation / Publish implement PR (push) Has been cancelled
AI automation / Continue queued issue comments (push) Has been cancelled
AI automation / Codex review loop (push) Has been cancelled
AI automation / Publish Codex fix (push) Has been cancelled
AI automation / Clear Codex dispatch marker (push) Has been cancelled
AI automation / Own PR re-request Codex (push) Has been cancelled
AI automation / External PR re-request Codex (push) Has been cancelled
AI automation / Poll Codex reaction / retry (push) Has been cancelled
build-et-binaries / build-linux-x64 (push) Has been cancelled
build-et-binaries / build-linux-arm64 (push) Has been cancelled
build-et-binaries / build-macos-universal (push) Has been cancelled
build-et-binaries / build-windows-x64 (push) Has been cancelled
build-et-binaries / release (push) Has been cancelled
99 lines
3.2 KiB
TypeScript
99 lines
3.2 KiB
TypeScript
const TERMINAL_KEYBOARD_TARGET_SELECTOR =
|
|
".xterm, .xterm-helper-textarea, .xterm-screen, .xterm-viewport";
|
|
|
|
type FocusDocument = Pick<Document, "activeElement" | "addEventListener" | "removeEventListener">;
|
|
type FocusWindow = Pick<Window, "addEventListener" | "removeEventListener">;
|
|
|
|
export const isTerminalKeyboardTarget = (target: EventTarget | null): boolean => {
|
|
const element = target as (Element & {
|
|
closest?: (selector: string) => Element | null;
|
|
}) | null;
|
|
return Boolean(element?.closest?.(TERMINAL_KEYBOARD_TARGET_SELECTOR));
|
|
};
|
|
|
|
export function installTerminalKeyboardFocusTracking(
|
|
documentRef: FocusDocument,
|
|
windowRef: FocusWindow,
|
|
onFocusChange: (focused: boolean) => void,
|
|
): () => void {
|
|
let pendingPointerTarget: EventTarget | null | undefined;
|
|
let pendingPointerClearTimer: ReturnType<typeof setTimeout> | undefined;
|
|
let isTracking = true;
|
|
let windowFocused = true;
|
|
|
|
const clearPendingPointerTarget = () => {
|
|
if (pendingPointerClearTimer !== undefined) {
|
|
clearTimeout(pendingPointerClearTimer);
|
|
pendingPointerClearTimer = undefined;
|
|
}
|
|
pendingPointerTarget = undefined;
|
|
};
|
|
|
|
const publishForTarget = (target: EventTarget | null) => {
|
|
if (!isTracking) return;
|
|
onFocusChange(windowFocused && isTerminalKeyboardTarget(target));
|
|
};
|
|
|
|
const handlePointerDown = (event: Event) => {
|
|
clearPendingPointerTarget();
|
|
pendingPointerTarget = event.target;
|
|
pendingPointerClearTimer = setTimeout(() => {
|
|
const pointerTarget = pendingPointerTarget;
|
|
clearPendingPointerTarget();
|
|
if (pointerTarget !== undefined) {
|
|
publishForTarget(documentRef.activeElement);
|
|
}
|
|
}, 0);
|
|
};
|
|
|
|
const handleFocusIn = (event: Event) => {
|
|
clearPendingPointerTarget();
|
|
publishForTarget(event.target);
|
|
};
|
|
|
|
const handleFocusOut = () => {
|
|
queueMicrotask(() => {
|
|
if (!isTracking) return;
|
|
const pointerTarget = pendingPointerTarget;
|
|
clearPendingPointerTarget();
|
|
if (!windowFocused) {
|
|
onFocusChange(false);
|
|
return;
|
|
}
|
|
if (pointerTarget !== undefined) {
|
|
publishForTarget(documentRef.activeElement);
|
|
return;
|
|
}
|
|
publishForTarget(documentRef.activeElement);
|
|
});
|
|
};
|
|
|
|
const handleWindowBlur = () => {
|
|
windowFocused = false;
|
|
clearPendingPointerTarget();
|
|
onFocusChange(false);
|
|
};
|
|
|
|
const handleWindowFocus = () => {
|
|
windowFocused = true;
|
|
publishForTarget(documentRef.activeElement);
|
|
};
|
|
|
|
publishForTarget(documentRef.activeElement);
|
|
documentRef.addEventListener("pointerdown", handlePointerDown, true);
|
|
documentRef.addEventListener("focusin", handleFocusIn, true);
|
|
documentRef.addEventListener("focusout", handleFocusOut, true);
|
|
windowRef.addEventListener("blur", handleWindowBlur);
|
|
windowRef.addEventListener("focus", handleWindowFocus);
|
|
|
|
return () => {
|
|
isTracking = false;
|
|
documentRef.removeEventListener("pointerdown", handlePointerDown, true);
|
|
documentRef.removeEventListener("focusin", handleFocusIn, true);
|
|
documentRef.removeEventListener("focusout", handleFocusOut, true);
|
|
windowRef.removeEventListener("blur", handleWindowBlur);
|
|
windowRef.removeEventListener("focus", handleWindowFocus);
|
|
clearPendingPointerTarget();
|
|
};
|
|
}
|