mirror of
https://github.com/QwenLM/qwen-code.git
synced 2025-12-19 09:33:53 +00:00
32 lines
722 B
TypeScript
32 lines
722 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import { useState } from 'react';
|
|
import {
|
|
isKittyProtocolEnabled,
|
|
isKittyProtocolSupported,
|
|
} from '../utils/kittyProtocolDetector.js';
|
|
|
|
export interface KittyProtocolStatus {
|
|
supported: boolean;
|
|
enabled: boolean;
|
|
checking: boolean;
|
|
}
|
|
|
|
/**
|
|
* Hook that returns the cached Kitty keyboard protocol status.
|
|
* Detection is done once at app startup to avoid repeated queries.
|
|
*/
|
|
export function useKittyKeyboardProtocol(): KittyProtocolStatus {
|
|
const [status] = useState<KittyProtocolStatus>({
|
|
supported: isKittyProtocolSupported(),
|
|
enabled: isKittyProtocolEnabled(),
|
|
checking: false,
|
|
});
|
|
|
|
return status;
|
|
}
|