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
160 lines
4.6 KiB
TypeScript
160 lines
4.6 KiB
TypeScript
/**
|
|
* Structural equality for AI side-panel context maps.
|
|
* Uses a domain-local shape so domain stays independent of UI modules.
|
|
*/
|
|
|
|
/** Minimal host-chain hop used for AI context equality. */
|
|
export type AIPanelHostChainHop = {
|
|
hostId: string;
|
|
label?: string;
|
|
hostname?: string;
|
|
};
|
|
|
|
/** Minimal active port-forward snapshot used for AI context equality. */
|
|
export type AIPanelPortForwardLike = {
|
|
ruleId: string;
|
|
label?: string;
|
|
type?: string;
|
|
localPort?: number;
|
|
status?: string;
|
|
};
|
|
|
|
/** Minimal terminal session info used for AI context equality. */
|
|
export type AIPanelTerminalSessionLike = {
|
|
sessionId: string;
|
|
hostId: string;
|
|
hostname: string;
|
|
label: string;
|
|
os?: string;
|
|
username?: string;
|
|
protocol?: string;
|
|
shellType?: string;
|
|
deviceType?: string;
|
|
connected: boolean;
|
|
hostChain?: AIPanelHostChainHop[];
|
|
activePortForwards?: AIPanelPortForwardLike[];
|
|
};
|
|
|
|
/** Minimal AI panel context shape used for structural equality. */
|
|
export type AIPanelContextLike = {
|
|
scopeType: 'terminal' | 'workspace';
|
|
scopeTargetId?: string;
|
|
scopeHostIds: string[];
|
|
scopeLabel: string;
|
|
focusedSessionId?: string;
|
|
terminalSessions: AIPanelTerminalSessionLike[];
|
|
};
|
|
|
|
function hostChainEqual(
|
|
a: AIPanelTerminalSessionLike['hostChain'] | undefined,
|
|
b: AIPanelTerminalSessionLike['hostChain'] | undefined,
|
|
): boolean {
|
|
if (a === b) return true;
|
|
if (!a || !b || a.length !== b.length) return false;
|
|
for (let i = 0; i < a.length; i += 1) {
|
|
if (
|
|
a[i].hostId !== b[i].hostId
|
|
|| a[i].label !== b[i].label
|
|
|| a[i].hostname !== b[i].hostname
|
|
) {
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
function portForwardsEqual(
|
|
a: AIPanelTerminalSessionLike['activePortForwards'] | undefined,
|
|
b: AIPanelTerminalSessionLike['activePortForwards'] | undefined,
|
|
): boolean {
|
|
if (a === b) return true;
|
|
if (!a || !b || a.length !== b.length) return false;
|
|
for (let i = 0; i < a.length; i += 1) {
|
|
if (
|
|
a[i].ruleId !== b[i].ruleId
|
|
|| a[i].label !== b[i].label
|
|
|| a[i].type !== b[i].type
|
|
|| a[i].localPort !== b[i].localPort
|
|
|| a[i].status !== b[i].status
|
|
) {
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
function aiTerminalSessionInfoEqual(
|
|
a: AIPanelTerminalSessionLike,
|
|
b: AIPanelTerminalSessionLike,
|
|
): boolean {
|
|
return a.sessionId === b.sessionId
|
|
&& a.hostId === b.hostId
|
|
&& a.hostname === b.hostname
|
|
&& a.label === b.label
|
|
&& a.os === b.os
|
|
&& a.username === b.username
|
|
&& a.protocol === b.protocol
|
|
&& a.shellType === b.shellType
|
|
&& a.deviceType === b.deviceType
|
|
&& a.connected === b.connected
|
|
&& hostChainEqual(a.hostChain, b.hostChain)
|
|
&& portForwardsEqual(a.activePortForwards, b.activePortForwards);
|
|
}
|
|
|
|
function scopeHostIdsEqual(a: string[], b: string[]): boolean {
|
|
if (a === b) return true;
|
|
if (a.length !== b.length) return false;
|
|
for (let i = 0; i < a.length; i += 1) {
|
|
if (a[i] !== b[i]) return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
function aiPanelContextEqual(a: AIPanelContextLike, b: AIPanelContextLike): boolean {
|
|
if (a === b) return true;
|
|
if (a.scopeType !== b.scopeType) return false;
|
|
if (a.scopeTargetId !== b.scopeTargetId) return false;
|
|
if (a.scopeLabel !== b.scopeLabel) return false;
|
|
if ((a.focusedSessionId ?? '') !== (b.focusedSessionId ?? '')) return false;
|
|
if (!scopeHostIdsEqual(a.scopeHostIds, b.scopeHostIds)) return false;
|
|
if (a.terminalSessions.length !== b.terminalSessions.length) return false;
|
|
for (let i = 0; i < a.terminalSessions.length; i += 1) {
|
|
if (!aiTerminalSessionInfoEqual(a.terminalSessions[i], b.terminalSessions[i])) {
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Structural equal for AI side-panel context maps. Ignores Map identity and
|
|
* presentation-only terminal noise by comparing AI-relevant session/host fields.
|
|
*/
|
|
export function aiPanelContextsEqual(
|
|
prev: Map<string, AIPanelContextLike> | null | undefined,
|
|
next: Map<string, AIPanelContextLike> | null | undefined,
|
|
): boolean {
|
|
if (prev === next) return true;
|
|
if (!prev || !next) return false;
|
|
if (prev.size !== next.size) return false;
|
|
for (const [tabId, context] of prev) {
|
|
const other = next.get(tabId);
|
|
if (!other || !aiPanelContextEqual(context, other)) return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Return `next` unless it is structurally equal to `previous`, in which case
|
|
* keep the previous Map identity for React memo consumers.
|
|
*/
|
|
export function retainStableAiPanelContexts<T extends AIPanelContextLike>(
|
|
previous: Map<string, T> | null | undefined,
|
|
next: Map<string, T>,
|
|
): Map<string, T> {
|
|
if (previous && aiPanelContextsEqual(previous, next)) {
|
|
return previous;
|
|
}
|
|
return next;
|
|
}
|