Files
gemini-cli/packages/cli/src/ui/hooks/useMouse.ts
2025-11-03 21:41:58 +00:00

37 lines
946 B
TypeScript

/**
* @license
* Copyright 2025 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import { useEffect } from 'react';
import type { MouseHandler, MouseEvent } from '../contexts/MouseContext.js';
import { useMouseContext } from '../contexts/MouseContext.js';
export type { MouseEvent };
/**
* A hook that listens for mouse events from stdin.
*
* @param onMouseEvent - The callback function to execute on each mouse event.
* @param options - Options to control the hook's behavior.
* @param options.isActive - Whether the hook should be actively listening for input.
*/
export function useMouse(
onMouseEvent: MouseHandler,
{ isActive }: { isActive: boolean },
) {
const { subscribe, unsubscribe } = useMouseContext();
useEffect(() => {
if (!isActive) {
return;
}
subscribe(onMouseEvent);
return () => {
unsubscribe(onMouseEvent);
};
}, [isActive, onMouseEvent, subscribe, unsubscribe]);
}