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
106 lines
3.1 KiB
TypeScript
106 lines
3.1 KiB
TypeScript
import type { ShellHistoryEntry } from './models';
|
|
import {
|
|
isNetcattyAiHistoryCommand,
|
|
isNetcattyManagedStartupHistoryCommand,
|
|
} from './remoteHistory';
|
|
|
|
const makeId = (): string => {
|
|
if (typeof crypto !== 'undefined' && typeof crypto.randomUUID === 'function') {
|
|
return crypto.randomUUID();
|
|
}
|
|
return `gh-${Date.now()}-${Math.random().toString(16).slice(2)}`;
|
|
};
|
|
|
|
/** True when a typed command should be stored in global (local) shell history. */
|
|
export function shouldRecordGlobalHistoryCommand(command: string): boolean {
|
|
const cmd = command.trim();
|
|
if (!cmd) return false;
|
|
if (isNetcattyAiHistoryCommand(cmd)) return false;
|
|
if (isNetcattyManagedStartupHistoryCommand(cmd)) return false;
|
|
return true;
|
|
}
|
|
|
|
export function sanitizeGlobalHistoryEntries(
|
|
entries: ShellHistoryEntry[],
|
|
): ShellHistoryEntry[] {
|
|
return entries.filter((entry) => shouldRecordGlobalHistoryCommand(entry.command));
|
|
}
|
|
|
|
/** Remove one persisted global history record by its stable id. */
|
|
export function removeGlobalHistoryEntry(
|
|
entries: ShellHistoryEntry[],
|
|
entryId: string,
|
|
): ShellHistoryEntry[] {
|
|
if (!entries.some((entry) => entry.id === entryId)) return entries;
|
|
return entries.filter((entry) => entry.id !== entryId);
|
|
}
|
|
|
|
/** True when deleting a global row should also remove its autocomplete entry. */
|
|
export function shouldRemoveAutocompleteHistoryEntry(
|
|
entries: ShellHistoryEntry[],
|
|
entryId: string,
|
|
): boolean {
|
|
const entry = entries.find((candidate) => candidate.id === entryId);
|
|
if (!entry) return false;
|
|
return !entries.some((candidate) => (
|
|
candidate.id !== entryId
|
|
&& candidate.command === entry.command
|
|
&& candidate.hostId === entry.hostId
|
|
));
|
|
}
|
|
|
|
/**
|
|
* Append one command to global history: trim, drop noise, and de-dupe the most
|
|
* recent identical command by bumping its timestamp instead of adding a row.
|
|
*/
|
|
export function mergeGlobalHistoryOnAppend(
|
|
prev: ShellHistoryEntry[],
|
|
entry: Omit<ShellHistoryEntry, 'id' | 'timestamp'>,
|
|
max = 1000,
|
|
): ShellHistoryEntry[] {
|
|
const cmd = entry.command.trim();
|
|
if (!shouldRecordGlobalHistoryCommand(cmd)) return prev;
|
|
|
|
const normalized = { ...entry, command: cmd };
|
|
if (prev[0]?.command === cmd) {
|
|
return [
|
|
{
|
|
...prev[0],
|
|
timestamp: Date.now(),
|
|
hostId: normalized.hostId,
|
|
hostLabel: normalized.hostLabel,
|
|
sessionId: normalized.sessionId,
|
|
},
|
|
...prev.slice(1),
|
|
].slice(0, max);
|
|
}
|
|
|
|
const newEntry: ShellHistoryEntry = {
|
|
...normalized,
|
|
id: makeId(),
|
|
timestamp: Date.now(),
|
|
};
|
|
return [newEntry, ...prev].slice(0, max);
|
|
}
|
|
|
|
export interface GlobalHistoryDisplayEntry {
|
|
id: string;
|
|
command: string;
|
|
hostId: string;
|
|
timestamp: number;
|
|
hostLabel?: string;
|
|
}
|
|
|
|
/** Map persisted shell history rows into a panel-friendly list (newest first). */
|
|
export function toGlobalHistoryDisplayEntries(
|
|
entries: ShellHistoryEntry[],
|
|
): GlobalHistoryDisplayEntry[] {
|
|
return sanitizeGlobalHistoryEntries(entries).map((entry) => ({
|
|
id: entry.id,
|
|
command: entry.command,
|
|
hostId: entry.hostId,
|
|
timestamp: entry.timestamp,
|
|
hostLabel: entry.hostLabel,
|
|
}));
|
|
}
|