mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-15 00:21:09 -07:00
135 lines
3.6 KiB
TypeScript
135 lines
3.6 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import { Box, Text } from 'ink';
|
|
import type React from 'react';
|
|
import { useEffect, useState, useCallback } from 'react';
|
|
import { theme } from '../semantic-colors.js';
|
|
import type { RadioSelectItem } from './shared/RadioButtonSelect.js';
|
|
import { RadioButtonSelect } from './shared/RadioButtonSelect.js';
|
|
import { useKeypress } from '../hooks/useKeypress.js';
|
|
import * as process from 'node:process';
|
|
import * as path from 'node:path';
|
|
import { relaunchApp } from '../../utils/processUtils.js';
|
|
import { runExitCleanup } from '../../utils/cleanup.js';
|
|
import { ExitCodes } from '@google/gemini-cli-core';
|
|
|
|
export enum FolderTrustChoice {
|
|
TRUST_FOLDER = 'trust_folder',
|
|
TRUST_PARENT = 'trust_parent',
|
|
DO_NOT_TRUST = 'do_not_trust',
|
|
}
|
|
|
|
interface FolderTrustDialogProps {
|
|
onSelect: (choice: FolderTrustChoice) => void;
|
|
isRestarting?: boolean;
|
|
}
|
|
|
|
export const FolderTrustDialog: React.FC<FolderTrustDialogProps> = ({
|
|
onSelect,
|
|
isRestarting,
|
|
}) => {
|
|
const [exiting, setExiting] = useState(false);
|
|
|
|
useEffect(() => {
|
|
let timer: ReturnType<typeof setTimeout>;
|
|
if (isRestarting) {
|
|
timer = setTimeout(async () => {
|
|
await relaunchApp();
|
|
}, 250);
|
|
}
|
|
return () => {
|
|
if (timer) clearTimeout(timer);
|
|
};
|
|
}, [isRestarting]);
|
|
|
|
const handleExit = useCallback(() => {
|
|
setExiting(true);
|
|
// Give time for the UI to render the exiting message
|
|
setTimeout(async () => {
|
|
await runExitCleanup();
|
|
process.exit(ExitCodes.FATAL_CANCELLATION_ERROR);
|
|
}, 100);
|
|
}, []);
|
|
|
|
useKeypress(
|
|
(key) => {
|
|
if (key.name === 'escape') {
|
|
handleExit();
|
|
return true;
|
|
}
|
|
return false;
|
|
},
|
|
{ isActive: !isRestarting },
|
|
);
|
|
|
|
const dirName = path.basename(process.cwd());
|
|
const parentFolder = path.basename(path.dirname(process.cwd()));
|
|
|
|
const options: Array<RadioSelectItem<FolderTrustChoice>> = [
|
|
{
|
|
label: `Trust folder (${dirName})`,
|
|
value: FolderTrustChoice.TRUST_FOLDER,
|
|
key: `Trust folder (${dirName})`,
|
|
},
|
|
{
|
|
label: `Trust parent folder (${parentFolder})`,
|
|
value: FolderTrustChoice.TRUST_PARENT,
|
|
key: `Trust parent folder (${parentFolder})`,
|
|
},
|
|
{
|
|
label: "Don't trust",
|
|
value: FolderTrustChoice.DO_NOT_TRUST,
|
|
key: "Don't trust",
|
|
},
|
|
];
|
|
|
|
return (
|
|
<Box flexDirection="column" width="100%">
|
|
<Box
|
|
flexDirection="column"
|
|
borderStyle="round"
|
|
borderColor={theme.status.warning}
|
|
padding={1}
|
|
marginLeft={1}
|
|
marginRight={1}
|
|
>
|
|
<Box flexDirection="column" marginBottom={1}>
|
|
<Text bold color={theme.text.primary}>
|
|
Do you trust this folder?
|
|
</Text>
|
|
<Text color={theme.text.primary}>
|
|
Trusting a folder allows Gemini to execute commands it suggests.
|
|
This is a security feature to prevent accidental execution in
|
|
untrusted directories.
|
|
</Text>
|
|
</Box>
|
|
|
|
<RadioButtonSelect
|
|
items={options}
|
|
onSelect={onSelect}
|
|
isFocused={!isRestarting}
|
|
/>
|
|
</Box>
|
|
{isRestarting && (
|
|
<Box marginLeft={1} marginTop={1}>
|
|
<Text color={theme.status.warning}>
|
|
Gemini CLI is restarting to apply the trust changes...
|
|
</Text>
|
|
</Box>
|
|
)}
|
|
{exiting && (
|
|
<Box marginLeft={1} marginTop={1}>
|
|
<Text color={theme.status.warning}>
|
|
A folder trust level must be selected to continue. Exiting since
|
|
escape was pressed.
|
|
</Text>
|
|
</Box>
|
|
)}
|
|
</Box>
|
|
);
|
|
};
|