mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-16 00:51:25 -07:00
Co-authored-by: Jack Wotherspoon <jackwoth@google.com> Co-authored-by: ehedlund <ehedlund@google.com>
91 lines
2.4 KiB
TypeScript
91 lines
2.4 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import { useState, useCallback } from 'react';
|
|
import type {
|
|
LoadableSettingScope,
|
|
LoadedSettings,
|
|
} from '../../config/settings.js';
|
|
import { MessageType } from '../types.js';
|
|
import type { EditorType } from '@google/gemini-cli-core';
|
|
import {
|
|
allowEditorTypeInSandbox,
|
|
hasValidEditorCommand,
|
|
getEditorDisplayName,
|
|
coreEvents,
|
|
CoreEvent,
|
|
} from '@google/gemini-cli-core';
|
|
import type { UseHistoryManagerReturn } from './useHistoryManager.js';
|
|
|
|
import { SettingPaths } from '../../config/settingPaths.js';
|
|
|
|
interface UseEditorSettingsReturn {
|
|
isEditorDialogOpen: boolean;
|
|
openEditorDialog: () => void;
|
|
handleEditorSelect: (
|
|
editorType: EditorType | undefined,
|
|
scope: LoadableSettingScope,
|
|
) => void;
|
|
exitEditorDialog: () => void;
|
|
}
|
|
|
|
export const useEditorSettings = (
|
|
loadedSettings: LoadedSettings,
|
|
setEditorError: (error: string | null) => void,
|
|
addItem: UseHistoryManagerReturn['addItem'],
|
|
): UseEditorSettingsReturn => {
|
|
const [isEditorDialogOpen, setIsEditorDialogOpen] = useState(false);
|
|
|
|
const openEditorDialog = useCallback(() => {
|
|
setIsEditorDialogOpen(true);
|
|
}, []);
|
|
|
|
const handleEditorSelect = useCallback(
|
|
(editorType: EditorType | undefined, scope: LoadableSettingScope) => {
|
|
if (
|
|
editorType &&
|
|
(!hasValidEditorCommand(editorType) ||
|
|
!allowEditorTypeInSandbox(editorType))
|
|
) {
|
|
return;
|
|
}
|
|
|
|
try {
|
|
loadedSettings.setValue(
|
|
scope,
|
|
SettingPaths.General.PreferredEditor,
|
|
editorType,
|
|
);
|
|
addItem(
|
|
{
|
|
type: MessageType.INFO,
|
|
text: `Editor preference ${editorType ? `set to "${getEditorDisplayName(editorType)}"` : 'cleared'} in ${scope} settings.`,
|
|
},
|
|
Date.now(),
|
|
);
|
|
setEditorError(null);
|
|
setIsEditorDialogOpen(false);
|
|
coreEvents.emit(CoreEvent.EditorSelected, { editor: editorType });
|
|
} catch (error) {
|
|
setEditorError(`Failed to set editor preference: ${error}`);
|
|
}
|
|
},
|
|
[loadedSettings, setEditorError, addItem],
|
|
);
|
|
|
|
const exitEditorDialog = useCallback(() => {
|
|
setIsEditorDialogOpen(false);
|
|
coreEvents.emit(CoreEvent.EditorSelected, { editor: undefined });
|
|
}, []);
|
|
|
|
return {
|
|
isEditorDialogOpen,
|
|
openEditorDialog,
|
|
handleEditorSelect,
|
|
exitEditorDialog,
|
|
};
|
|
};
|