mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-25 12:48:53 +01:00
* refactor: SearchBar and Nav components to streamline search functionality and improve state management * refactor: remove refresh conversations * chore: update useNewConvo calls to remove hardcoded default index * refactor: null check for submission in useSSE hook * refactor: remove useConversation hook and update useSearch to utilize useNewConvo * refactor: remove conversation and banner store files; consolidate state management into misc; improve typing of families and add messagesSiblingIdxFamily * refactor: more effectively clear all user/convo state without side effects on logout/delete user * refactor: replace useParams with useLocation in SearchBar to correctly load conversation * refactor: update SearchButtons to use button element and improve conversation ID handling * refactor: use named function for `newConversation` for better call stack tracing * refactor: enhance TermsAndConditionsModal to support array content and improve type definitions for terms of service * refactor: add SetConvoProvider and message invalidation when navigating from search results to prevent initial route rendering edge cases * refactor: rename getLocalStorageItems to localStorage and update imports for consistency * refactor: move clearLocalStorage function to utils and simplify localStorage clearing logic * refactor: migrate authentication mutations to a dedicated Auth data provider and update related tests
45 lines
1.5 KiB
TypeScript
45 lines
1.5 KiB
TypeScript
import { LocalStorageKeys, TConversation } from 'librechat-data-provider';
|
|
|
|
export function getLocalStorageItems() {
|
|
const items = {
|
|
lastSelectedModel: localStorage.getItem(LocalStorageKeys.LAST_MODEL) ?? '',
|
|
lastSelectedTools: localStorage.getItem(LocalStorageKeys.LAST_TOOLS) ?? '',
|
|
lastConversationSetup: localStorage.getItem(LocalStorageKeys.LAST_CONVO_SETUP + '_0') ?? '',
|
|
};
|
|
|
|
const lastSelectedModel = items.lastSelectedModel
|
|
? (JSON.parse(items.lastSelectedModel) as Record<string, string | undefined> | null)
|
|
: {};
|
|
const lastSelectedTools = items.lastSelectedTools
|
|
? (JSON.parse(items.lastSelectedTools) as string[] | null)
|
|
: [];
|
|
const lastConversationSetup = items.lastConversationSetup
|
|
? (JSON.parse(items.lastConversationSetup) as Partial<TConversation> | null)
|
|
: {};
|
|
|
|
return {
|
|
lastSelectedModel,
|
|
lastSelectedTools,
|
|
lastConversationSetup,
|
|
};
|
|
}
|
|
|
|
export function clearLocalStorage(skipFirst?: boolean) {
|
|
const keys = Object.keys(localStorage);
|
|
keys.forEach((key) => {
|
|
if (skipFirst === true && key.endsWith('0')) {
|
|
return;
|
|
}
|
|
if (
|
|
key.startsWith(LocalStorageKeys.ASST_ID_PREFIX) ||
|
|
key.startsWith(LocalStorageKeys.AGENT_ID_PREFIX) ||
|
|
key.startsWith(LocalStorageKeys.LAST_CONVO_SETUP) ||
|
|
key === LocalStorageKeys.LAST_SPEC ||
|
|
key === LocalStorageKeys.LAST_TOOLS ||
|
|
key === LocalStorageKeys.LAST_MODEL ||
|
|
key === LocalStorageKeys.FILES_TO_DELETE
|
|
) {
|
|
localStorage.removeItem(key);
|
|
}
|
|
});
|
|
}
|