mirror of
https://github.com/QwenLM/qwen-code.git
synced 2025-12-19 09:33:53 +00:00
40 lines
891 B
TypeScript
40 lines
891 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import { useEffect } from 'react';
|
|
import {
|
|
useKeypressContext,
|
|
KeypressHandler,
|
|
Key,
|
|
} from '../contexts/KeypressContext.js';
|
|
|
|
export { 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.
|
|
*/
|
|
export function useKeypress(
|
|
onKeypress: KeypressHandler,
|
|
{ isActive }: { isActive: boolean },
|
|
) {
|
|
const { subscribe, unsubscribe } = useKeypressContext();
|
|
|
|
useEffect(() => {
|
|
if (!isActive) {
|
|
return;
|
|
}
|
|
|
|
subscribe(onKeypress);
|
|
return () => {
|
|
unsubscribe(onKeypress);
|
|
};
|
|
}, [isActive, onKeypress, subscribe, unsubscribe]);
|
|
}
|