mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-10 22:21:22 -07:00
45 lines
1.1 KiB
TypeScript
45 lines
1.1 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import { useEffect } from 'react';
|
|
import {
|
|
useKeypressContext,
|
|
type KeypressHandler,
|
|
type Key,
|
|
type KeypressPriority,
|
|
} from '../contexts/KeypressContext.js';
|
|
|
|
export type { Key };
|
|
|
|
/**
|
|
* A hook that listens for keypress events from stdin.
|
|
*
|
|
* @param onKeypress - The callback function to execute on each keypress.
|
|
* @param options - Options to control the hook's behavior.
|
|
* @param options.isActive - Whether the hook should be actively listening for input.
|
|
* @param options.priority - Priority level (integer or KeypressPriority enum) or boolean for backward compatibility.
|
|
*/
|
|
export function useKeypress(
|
|
onKeypress: KeypressHandler,
|
|
{
|
|
isActive,
|
|
priority,
|
|
}: { isActive: boolean; priority?: KeypressPriority | boolean },
|
|
) {
|
|
const { subscribe, unsubscribe } = useKeypressContext();
|
|
|
|
useEffect(() => {
|
|
if (!isActive) {
|
|
return;
|
|
}
|
|
|
|
subscribe(onKeypress, priority);
|
|
return () => {
|
|
unsubscribe(onKeypress);
|
|
};
|
|
}, [isActive, onKeypress, subscribe, unsubscribe, priority]);
|
|
}
|