Fixed intermittent missing extension override on ui and cleanup (#9575)

Signed-off-by: Angie Jones <jones.angie@gmail.com>
Co-authored-by: Angie Jones <jones.angie@gmail.com>
This commit is contained in:
Lifei Zhou
2026-06-04 01:14:30 +10:00
committed by GitHub
parent 30034b9b32
commit f6caaa03b5
2 changed files with 87 additions and 45 deletions
@@ -1,4 +1,3 @@
import { AppEvents } from '../../constants/events';
import { useCallback, useEffect, useMemo, useState, useRef } from 'react';
import { Puzzle } from 'lucide-react';
import { DropdownMenu, DropdownMenuContent, DropdownMenuTrigger } from '../ui/dropdown-menu';
@@ -16,6 +15,7 @@ import {
getExtensionOverrides,
} from '../../store/extensionOverrides';
import { defineMessages, useIntl } from '../../i18n';
import { AppEvents } from '../../constants/events';
const i18n = defineMessages({
manageExtensions: {
@@ -68,6 +68,8 @@ interface BottomMenuExtensionSelectionProps {
sessionId: string | null;
}
type GetSessionExtensionsSignal = Parameters<typeof getSessionExtensions>[0]['signal'];
export const BottomMenuExtensionSelection = ({ sessionId }: BottomMenuExtensionSelectionProps) => {
const intl = useIntl();
const [searchQuery, setSearchQuery] = useState('');
@@ -77,29 +79,26 @@ export const BottomMenuExtensionSelection = ({ sessionId }: BottomMenuExtensionS
const [isTransitioning, setIsTransitioning] = useState(false);
const [pendingSort, setPendingSort] = useState(false);
const [togglingExtension, setTogglingExtension] = useState<string | null>(null);
const [refreshTrigger, setRefreshTrigger] = useState(0);
const [isSessionExtensionsLoaded, setIsSessionExtensionsLoaded] = useState(false);
const sortTimeoutRef = useRef<ReturnType<typeof setTimeout> | null>(null);
const latestSessionIdRef = useRef(sessionId);
const { extensionsList: allExtensions } = useConfig();
const isHubView = !sessionId;
useEffect(() => {
latestSessionIdRef.current = sessionId;
setIsSessionExtensionsLoaded(false);
setSessionExtensions([]);
setPendingSort(false);
setIsTransitioning(false);
setTogglingExtension(null);
if (sortTimeoutRef.current) {
clearTimeout(sortTimeoutRef.current);
sortTimeoutRef.current = null;
}
}, [sessionId]);
useEffect(() => {
const handleExtensionsLoaded = () => {
setRefreshTrigger((prev) => prev + 1);
};
window.addEventListener(AppEvents.SESSION_EXTENSIONS_LOADED, handleExtensionsLoaded);
return () => {
window.removeEventListener(AppEvents.SESSION_EXTENSIONS_LOADED, handleExtensionsLoaded);
};
}, []);
useEffect(() => {
return () => {
if (sortTimeoutRef.current) {
@@ -108,33 +107,71 @@ export const BottomMenuExtensionSelection = ({ sessionId }: BottomMenuExtensionS
};
}, []);
useEffect(() => {
if (refreshTrigger === 0 && !isOpen) {
return;
}
const loadSessionExtensions = useCallback(
async (targetSessionId: string, signal?: GetSessionExtensionsSignal) => {
const response = await getSessionExtensions({
path: { session_id: targetSessionId },
signal,
throwOnError: true,
});
const fetchExtensions = async () => {
if (!sessionId) {
if (signal?.aborted || latestSessionIdRef.current !== targetSessionId) {
return;
}
try {
const response = await getSessionExtensions({
path: { session_id: sessionId },
});
setSessionExtensions(response.data?.extensions ?? []);
setIsSessionExtensionsLoaded(true);
},
[]
);
if (response.data?.extensions) {
setSessionExtensions(response.data.extensions);
setIsSessionExtensionsLoaded(true);
useEffect(() => {
if (!sessionId) {
setIsSessionExtensionsLoaded(true);
return;
}
let controller: AbortController | null = null;
const loadExtensionsForCurrentSession = (event: Event) => {
const targetSessionId = (event as CustomEvent<{ sessionId?: string }>).detail?.sessionId;
if (targetSessionId !== sessionId) {
return;
}
controller?.abort();
const currentController = new AbortController();
controller = currentController;
loadSessionExtensions(targetSessionId, currentController.signal).catch((error) => {
if (currentController.signal.aborted || latestSessionIdRef.current !== targetSessionId) {
return;
}
} catch (error) {
console.error('Failed to fetch session extensions:', error);
setIsSessionExtensionsLoaded(true);
}
});
};
fetchExtensions();
}, [sessionId, isOpen, refreshTrigger]);
window.addEventListener(AppEvents.SESSION_EXTENSIONS_LOADED, loadExtensionsForCurrentSession);
return () => {
controller?.abort();
window.removeEventListener(
AppEvents.SESSION_EXTENSIONS_LOADED,
loadExtensionsForCurrentSession
);
};
}, [sessionId, loadSessionExtensions]);
const finishSessionTransition = useCallback((targetSessionId: string) => {
if (latestSessionIdRef.current === targetSessionId) {
setPendingSort(false);
setIsTransitioning(false);
setTogglingExtension(null);
}
}, []);
const handleToggle = useCallback(
async (extensionConfig: FixedExtensionEntry) => {
@@ -160,6 +197,7 @@ export const BottomMenuExtensionSelection = ({ sessionId }: BottomMenuExtensionS
setPendingSort(false);
setIsTransitioning(false);
setTogglingExtension(null);
sortTimeoutRef.current = null;
}, 800);
toastService.success({
@@ -196,17 +234,17 @@ export const BottomMenuExtensionSelection = ({ sessionId }: BottomMenuExtensionS
clearTimeout(sortTimeoutRef.current);
}
sortTimeoutRef.current = setTimeout(async () => {
const response = await getSessionExtensions({
path: { session_id: sessionId },
});
if (response.data?.extensions) {
setSessionExtensions(response.data.extensions);
}
setPendingSort(false);
setIsTransitioning(false);
setTogglingExtension(null);
sortTimeoutRef.current = setTimeout(() => {
loadSessionExtensions(sessionId)
.catch((error) => {
if (latestSessionIdRef.current === sessionId) {
console.error('Failed to fetch session extensions:', error);
}
})
.finally(() => {
finishSessionTransition(sessionId);
sortTimeoutRef.current = null;
});
}, 800);
} catch {
setIsTransitioning(false);
@@ -214,7 +252,7 @@ export const BottomMenuExtensionSelection = ({ sessionId }: BottomMenuExtensionS
setTogglingExtension(null);
}
},
[sessionId, isHubView, togglingExtension, intl]
[sessionId, isHubView, togglingExtension, intl, loadSessionExtensions, finishSessionTransition]
);
// Merge all available extensions with session-specific or hub override state
+6 -2
View File
@@ -748,7 +748,9 @@ export function useChatStream({
},
},
});
window.dispatchEvent(new CustomEvent(AppEvents.SESSION_EXTENSIONS_LOADED));
window.dispatchEvent(
new CustomEvent(AppEvents.SESSION_EXTENSIONS_LOADED, { detail: { sessionId } })
);
onSessionLoaded?.();
return;
}
@@ -776,7 +778,9 @@ export function useChatStream({
const extensionResults = resumeData?.extension_results;
showExtensionLoadResults(extensionResults);
window.dispatchEvent(new CustomEvent(AppEvents.SESSION_EXTENSIONS_LOADED));
window.dispatchEvent(
new CustomEvent(AppEvents.SESSION_EXTENSIONS_LOADED, { detail: { sessionId } })
);
const pendingRequestId = pendingReattachRequestIdRef.current;
const reattachedToActiveRequest = activeRequestIdRef.current !== null;