mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-07-10 01:50:20 -07:00
57 lines
1.3 KiB
TypeScript
57 lines
1.3 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright 2026 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import {
|
|
CoreToolCallStatus,
|
|
belongsInConfirmationQueue,
|
|
} from '@google/gemini-cli-core';
|
|
import {
|
|
type HistoryItemWithoutId,
|
|
type IndividualToolCallDisplay,
|
|
} from '../types.js';
|
|
import {
|
|
getAllToolCalls,
|
|
buildToolVisibilityContextFromDisplay,
|
|
} from './historyUtils.js';
|
|
|
|
export interface ConfirmingToolState {
|
|
tool: IndividualToolCallDisplay;
|
|
index: number;
|
|
total: number;
|
|
}
|
|
|
|
/**
|
|
* Selects the "head" of the confirmation queue.
|
|
*/
|
|
export function getConfirmingToolState(
|
|
pendingHistoryItems: HistoryItemWithoutId[],
|
|
): ConfirmingToolState | null {
|
|
const allPendingTools = getAllToolCalls(pendingHistoryItems);
|
|
|
|
const confirmingTools = allPendingTools.filter(
|
|
(tool) => tool.status === CoreToolCallStatus.AwaitingApproval,
|
|
);
|
|
|
|
if (confirmingTools.length === 0) {
|
|
return null;
|
|
}
|
|
|
|
const actionablePendingTools = allPendingTools.filter((tool) =>
|
|
belongsInConfirmationQueue(buildToolVisibilityContextFromDisplay(tool)),
|
|
);
|
|
|
|
const head = confirmingTools[0];
|
|
const headIndexInFullList = actionablePendingTools.findIndex(
|
|
(tool) => tool.callId === head.callId,
|
|
);
|
|
|
|
return {
|
|
tool: head,
|
|
index: headIndexInFullList + 1,
|
|
total: actionablePendingTools.length,
|
|
};
|
|
}
|