mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-04-08 04:10:35 -07:00
57 lines
1.9 KiB
TypeScript
57 lines
1.9 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import { createContext, useContext } from 'react';
|
|
import { type Key } from '../hooks/useKeypress.js';
|
|
import { type IdeIntegrationNudgeResult } from '../IdeIntegrationNudge.js';
|
|
import { type FolderTrustChoice } from '../components/FolderTrustDialog.js';
|
|
import { type AuthType, type EditorType } from '@google/gemini-cli-core';
|
|
import { type SettingScope } from '../../config/settings.js';
|
|
import type { AuthState } from '../types.js';
|
|
|
|
export interface UIActions {
|
|
handleThemeSelect: (
|
|
themeName: string | undefined,
|
|
scope: SettingScope,
|
|
) => void;
|
|
handleThemeHighlight: (themeName: string | undefined) => void;
|
|
handleAuthSelect: (
|
|
authType: AuthType | undefined,
|
|
scope: SettingScope,
|
|
) => void;
|
|
setAuthState: (state: AuthState) => void;
|
|
onAuthError: (error: string) => void;
|
|
handleEditorSelect: (
|
|
editorType: EditorType | undefined,
|
|
scope: SettingScope,
|
|
) => void;
|
|
exitEditorDialog: () => void;
|
|
exitPrivacyNotice: () => void;
|
|
closeSettingsDialog: () => void;
|
|
setShellModeActive: (value: boolean) => void;
|
|
vimHandleInput: (key: Key) => boolean;
|
|
handleIdePromptComplete: (result: IdeIntegrationNudgeResult) => void;
|
|
handleFolderTrustSelect: (choice: FolderTrustChoice) => void;
|
|
setConstrainHeight: (value: boolean) => void;
|
|
onEscapePromptChange: (show: boolean) => void;
|
|
refreshStatic: () => void;
|
|
handleFinalSubmit: (value: string) => void;
|
|
handleClearScreen: () => void;
|
|
onWorkspaceMigrationDialogOpen: () => void;
|
|
onWorkspaceMigrationDialogClose: () => void;
|
|
handleProQuotaChoice: (choice: 'auth' | 'continue') => void;
|
|
}
|
|
|
|
export const UIActionsContext = createContext<UIActions | null>(null);
|
|
|
|
export const useUIActions = () => {
|
|
const context = useContext(UIActionsContext);
|
|
if (!context) {
|
|
throw new Error('useUIActions must be used within a UIActionsProvider');
|
|
}
|
|
return context;
|
|
};
|