mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-09-22 08:12:00 +02:00

* 🔧 fix: Update type annotations in useEventHandlers for better type safety * 🔧 refactor: `useToolToggle` for improved localStorage synchronization and allow string/falsy values for setting to storage * ✨ feat: Implement Artifacts badge to BadgeRow with toggle options and UI components - Added Artifacts component to manage artifacts state and options. - Introduced ArtifactsSubMenu for additional settings related to artifacts. - Integrated artifacts functionality into BadgeRow and ToolsDropdown components. - Updated localStorage handling for artifacts state persistence. - Enhanced localization for artifacts-related strings in translation files. - Refactored Agent model to include artifacts in the ephemeral agent response. * fix: set ephemeral agent state for conversation on finalization * chore: remove beta settings dialog tab * refactor: improve Ephemeral Agent statefulness * fix: update setValue parameter to use 'value' instead of 'isChecked' in CheckboxButton * refactor: update color classes for Artifact toggle and order of dropdown components * chore: remove unused i18n localization
78 lines
3.5 KiB
TypeScript
78 lines
3.5 KiB
TypeScript
import { atom } from 'recoil';
|
|
import { SettingsViews, LocalStorageKeys } from 'librechat-data-provider';
|
|
import { atomWithLocalStorage } from '~/store/utils';
|
|
import type { TOptionSettings } from '~/common';
|
|
|
|
// Static atoms without localStorage
|
|
const staticAtoms = {
|
|
abortScroll: atom<boolean>({ key: 'abortScroll', default: false }),
|
|
showFiles: atom<boolean>({ key: 'showFiles', default: false }),
|
|
optionSettings: atom<TOptionSettings>({ key: 'optionSettings', default: {} }),
|
|
showPluginStoreDialog: atom<boolean>({ key: 'showPluginStoreDialog', default: false }),
|
|
showAgentSettings: atom<boolean>({ key: 'showAgentSettings', default: false }),
|
|
currentSettingsView: atom<SettingsViews>({
|
|
key: 'currentSettingsView',
|
|
default: SettingsViews.default,
|
|
}),
|
|
showPopover: atom<boolean>({ key: 'showPopover', default: false }),
|
|
};
|
|
|
|
const localStorageAtoms = {
|
|
// General settings
|
|
autoScroll: atomWithLocalStorage('autoScroll', false),
|
|
hideSidePanel: atomWithLocalStorage('hideSidePanel', false),
|
|
fontSize: atomWithLocalStorage('fontSize', 'text-base'),
|
|
enableUserMsgMarkdown: atomWithLocalStorage<boolean>(
|
|
LocalStorageKeys.ENABLE_USER_MSG_MARKDOWN,
|
|
true,
|
|
),
|
|
|
|
// Chat settings
|
|
enterToSend: atomWithLocalStorage('enterToSend', true),
|
|
maximizeChatSpace: atomWithLocalStorage('maximizeChatSpace', false),
|
|
chatDirection: atomWithLocalStorage('chatDirection', 'LTR'),
|
|
showCode: atomWithLocalStorage(LocalStorageKeys.SHOW_ANALYSIS_CODE, true),
|
|
saveDrafts: atomWithLocalStorage('saveDrafts', true),
|
|
showScrollButton: atomWithLocalStorage('showScrollButton', true),
|
|
forkSetting: atomWithLocalStorage('forkSetting', ''),
|
|
splitAtTarget: atomWithLocalStorage('splitAtTarget', false),
|
|
rememberDefaultFork: atomWithLocalStorage(LocalStorageKeys.REMEMBER_FORK_OPTION, false),
|
|
showThinking: atomWithLocalStorage('showThinking', false),
|
|
saveBadgesState: atomWithLocalStorage('saveBadgesState', false),
|
|
|
|
// Beta features settings
|
|
modularChat: atomWithLocalStorage('modularChat', true),
|
|
LaTeXParsing: atomWithLocalStorage('LaTeXParsing', true),
|
|
centerFormOnLanding: atomWithLocalStorage('centerFormOnLanding', true),
|
|
showFooter: atomWithLocalStorage('showFooter', true),
|
|
|
|
// Commands settings
|
|
atCommand: atomWithLocalStorage('atCommand', true),
|
|
plusCommand: atomWithLocalStorage('plusCommand', true),
|
|
slashCommand: atomWithLocalStorage('slashCommand', true),
|
|
|
|
// Speech settings
|
|
conversationMode: atomWithLocalStorage('conversationMode', false),
|
|
advancedMode: atomWithLocalStorage('advancedMode', false),
|
|
|
|
speechToText: atomWithLocalStorage('speechToText', true),
|
|
engineSTT: atomWithLocalStorage('engineSTT', 'browser'),
|
|
languageSTT: atomWithLocalStorage('languageSTT', ''),
|
|
autoTranscribeAudio: atomWithLocalStorage('autoTranscribeAudio', false),
|
|
decibelValue: atomWithLocalStorage('decibelValue', -45),
|
|
autoSendText: atomWithLocalStorage('autoSendText', -1),
|
|
|
|
textToSpeech: atomWithLocalStorage('textToSpeech', true),
|
|
engineTTS: atomWithLocalStorage('engineTTS', 'browser'),
|
|
voice: atomWithLocalStorage<string | undefined>('voice', undefined),
|
|
cloudBrowserVoices: atomWithLocalStorage('cloudBrowserVoices', false),
|
|
languageTTS: atomWithLocalStorage('languageTTS', ''),
|
|
automaticPlayback: atomWithLocalStorage('automaticPlayback', false),
|
|
playbackRate: atomWithLocalStorage<number | null>('playbackRate', null),
|
|
cacheTTS: atomWithLocalStorage('cacheTTS', true),
|
|
|
|
// Account settings
|
|
UsernameDisplay: atomWithLocalStorage('UsernameDisplay', true),
|
|
};
|
|
|
|
export default { ...staticAtoms, ...localStorageAtoms };
|