import { atom } from 'recoil'; import { SettingsViews } from 'librechat-data-provider'; import type { TOptionSettings } from '~/common'; // Improved helper function to create atoms with localStorage function atomWithLocalStorage(key: string, defaultValue: T) { return atom({ key, default: defaultValue, effects_UNSTABLE: [ ({ setSelf, onSet }) => { const savedValue = localStorage.getItem(key); if (savedValue !== null) { try { const parsedValue = JSON.parse(savedValue); setSelf(parsedValue); } catch (e) { console.error( `Error parsing localStorage key "${key}", \`savedValue\`: defaultValue, error:`, e, ); localStorage.setItem(key, JSON.stringify(defaultValue)); setSelf(defaultValue); } } onSet((newValue: T) => { localStorage.setItem(key, JSON.stringify(newValue)); }); }, ], }); } // Static atoms without localStorage const staticAtoms = { abortScroll: atom({ key: 'abortScroll', default: false }), showFiles: atom({ key: 'showFiles', default: false }), optionSettings: atom({ key: 'optionSettings', default: {} }), showPluginStoreDialog: atom({ key: 'showPluginStoreDialog', default: false }), showAgentSettings: atom({ key: 'showAgentSettings', default: false }), currentSettingsView: atom({ key: 'currentSettingsView', default: SettingsViews.default, }), showBingToneSetting: atom({ key: 'showBingToneSetting', default: false }), showPopover: atom({ key: 'showPopover', default: false }), }; // Atoms with localStorage const localStorageAtoms = { autoScroll: atomWithLocalStorage('autoScroll', false), showCode: atomWithLocalStorage('showCode', false), hideSidePanel: atomWithLocalStorage('hideSidePanel', false), modularChat: atomWithLocalStorage('modularChat', true), LaTeXParsing: atomWithLocalStorage('LaTeXParsing', true), UsernameDisplay: atomWithLocalStorage('UsernameDisplay', true), TextToSpeech: atomWithLocalStorage('textToSpeech', true), automaticPlayback: atomWithLocalStorage('automaticPlayback', false), enterToSend: atomWithLocalStorage('enterToSend', true), SpeechToText: atomWithLocalStorage('speechToText', true), conversationMode: atomWithLocalStorage('conversationMode', false), advancedMode: atomWithLocalStorage('advancedMode', false), autoSendText: atomWithLocalStorage('autoSendText', false), autoTranscribeAudio: atomWithLocalStorage('autoTranscribeAudio', false), decibelValue: atomWithLocalStorage('decibelValue', -45), endpointSTT: atomWithLocalStorage('endpointSTT', 'browser'), endpointTTS: atomWithLocalStorage('endpointTTS', 'browser'), cacheTTS: atomWithLocalStorage('cacheTTS', true), voice: atomWithLocalStorage('voice', ''), forkSetting: atomWithLocalStorage('forkSetting', ''), splitAtTarget: atomWithLocalStorage('splitAtTarget', false), rememberForkOption: atomWithLocalStorage('rememberForkOption', true), playbackRate: atomWithLocalStorage('playbackRate', null), }; export default { ...staticAtoms, ...localStorageAtoms };