Some checks failed
build-packages / resolve bundled mosh-client (push) Has been cancelled
build-packages / resolve bundled et-client (push) Has been cancelled
build-packages / build-macos (push) Has been cancelled
build-packages / build-windows (push) Has been cancelled
build-packages / build-linux-x64 (push) Has been cancelled
build-packages / build-linux-arm64 (push) Has been cancelled
build-packages / release (push) Has been cancelled
build-packages / update Nix release metadata (push) Has been cancelled
build-packages / bump homebrew tap (push) Has been cancelled
test / lint-and-test (push) Has been cancelled
AI automation / Route event (push) Has been cancelled
AI automation / Hand reopened issue to maintainers (push) Has been cancelled
AI automation / Clean source issue state (push) Has been cancelled
AI automation / Reconcile handoffs (push) Has been cancelled
AI automation / Classify issue (push) Has been cancelled
AI automation / Claude Code smoke (push) Has been cancelled
AI automation / Review issue follow-up (push) Has been cancelled
AI automation / Publish issue follow-up (push) Has been cancelled
AI automation / Implement with Claude Code (push) Has been cancelled
AI automation / Publish implement PR (push) Has been cancelled
AI automation / Continue queued issue comments (push) Has been cancelled
AI automation / Codex review loop (push) Has been cancelled
AI automation / Publish Codex fix (push) Has been cancelled
AI automation / Clear Codex dispatch marker (push) Has been cancelled
AI automation / Own PR re-request Codex (push) Has been cancelled
AI automation / External PR re-request Codex (push) Has been cancelled
AI automation / Poll Codex reaction / retry (push) Has been cancelled
build-et-binaries / build-linux-x64 (push) Has been cancelled
build-et-binaries / build-linux-arm64 (push) Has been cancelled
build-et-binaries / build-macos-universal (push) Has been cancelled
build-et-binaries / build-windows-x64 (push) Has been cancelled
build-et-binaries / release (push) Has been cancelled
125 lines
3.6 KiB
TypeScript
125 lines
3.6 KiB
TypeScript
import type {
|
|
AIDraft,
|
|
AIPanelView,
|
|
AISession,
|
|
} from "../../infrastructure/ai/types";
|
|
|
|
type DraftsByScope = Partial<Record<string, AIDraft>>;
|
|
type PanelViewByScope = Partial<Record<string, AIPanelView>>;
|
|
type ActiveSessionIdMap = Record<string, string | null>;
|
|
|
|
function isInactiveScopedTarget(
|
|
scopeKey: string,
|
|
activeTargetIds: Set<string>,
|
|
): boolean {
|
|
const separatorIndex = scopeKey.indexOf(":");
|
|
if (separatorIndex === -1) return false;
|
|
|
|
const scopeType = scopeKey.slice(0, separatorIndex);
|
|
if (scopeType !== "terminal" && scopeType !== "workspace") return false;
|
|
|
|
const targetId = scopeKey.slice(separatorIndex + 1);
|
|
if (!targetId) return false;
|
|
|
|
return !activeTargetIds.has(targetId);
|
|
}
|
|
|
|
export function pruneInactiveScopedState(
|
|
draftsByScope: DraftsByScope,
|
|
panelViewByScope: PanelViewByScope,
|
|
activeTargetIds: Set<string>,
|
|
): {
|
|
draftsByScope: DraftsByScope;
|
|
panelViewByScope: PanelViewByScope;
|
|
} {
|
|
const nextDraftsByScope = { ...draftsByScope };
|
|
const nextPanelViewByScope = { ...panelViewByScope };
|
|
let draftsChanged = false;
|
|
let panelViewsChanged = false;
|
|
|
|
for (const scopeKey of Object.keys(nextDraftsByScope)) {
|
|
if (!isInactiveScopedTarget(scopeKey, activeTargetIds)) continue;
|
|
delete nextDraftsByScope[scopeKey];
|
|
draftsChanged = true;
|
|
}
|
|
|
|
for (const scopeKey of Object.keys(nextPanelViewByScope)) {
|
|
if (!isInactiveScopedTarget(scopeKey, activeTargetIds)) continue;
|
|
delete nextPanelViewByScope[scopeKey];
|
|
panelViewsChanged = true;
|
|
}
|
|
|
|
return {
|
|
draftsByScope: draftsChanged ? nextDraftsByScope : draftsByScope,
|
|
panelViewByScope: panelViewsChanged ? nextPanelViewByScope : panelViewByScope,
|
|
};
|
|
}
|
|
|
|
export function pruneInactiveScopedTransientState(
|
|
activeSessionIdMap: ActiveSessionIdMap,
|
|
draftsByScope: DraftsByScope,
|
|
panelViewByScope: PanelViewByScope,
|
|
activeTargetIds: Set<string>,
|
|
): {
|
|
activeSessionIdMap: ActiveSessionIdMap;
|
|
draftsByScope: DraftsByScope;
|
|
panelViewByScope: PanelViewByScope;
|
|
} {
|
|
let activeSessionMapChanged = false;
|
|
const nextActiveSessionIdMap: ActiveSessionIdMap = {};
|
|
|
|
for (const [scopeKey, sessionId] of Object.entries(activeSessionIdMap)) {
|
|
if (isInactiveScopedTarget(scopeKey, activeTargetIds)) {
|
|
activeSessionMapChanged = true;
|
|
continue;
|
|
}
|
|
|
|
nextActiveSessionIdMap[scopeKey] = sessionId;
|
|
}
|
|
|
|
const nextScopedState = pruneInactiveScopedState(
|
|
draftsByScope,
|
|
panelViewByScope,
|
|
activeTargetIds,
|
|
);
|
|
|
|
return {
|
|
activeSessionIdMap: activeSessionMapChanged ? nextActiveSessionIdMap : activeSessionIdMap,
|
|
draftsByScope: nextScopedState.draftsByScope,
|
|
panelViewByScope: nextScopedState.panelViewByScope,
|
|
};
|
|
}
|
|
|
|
export function pruneInactiveScopedSessions(
|
|
sessions: AISession[],
|
|
activeTargetIds: Set<string>,
|
|
/**
|
|
* Session ids currently displayed by any live scope. A session whose
|
|
* `scope.targetId` is inactive but whose id is still in use somewhere
|
|
* (e.g. resumed from history into a different terminal) must not be
|
|
* treated as orphaned — deleting it outright would break the chat the
|
|
* user is actively continuing.
|
|
*/
|
|
activeSessionIds: Set<string> = new Set(),
|
|
): {
|
|
sessions: AISession[];
|
|
orphanedSessionIds: string[];
|
|
} {
|
|
const orphanedSessionIds = sessions
|
|
.filter((session) => session.scope.targetId && !activeTargetIds.has(session.scope.targetId))
|
|
.filter((session) => !activeSessionIds.has(session.id))
|
|
.map((session) => session.id);
|
|
|
|
if (orphanedSessionIds.length === 0) {
|
|
return {
|
|
sessions,
|
|
orphanedSessionIds,
|
|
};
|
|
}
|
|
|
|
return {
|
|
sessions,
|
|
orphanedSessionIds,
|
|
};
|
|
}
|