mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-16 08:20:14 +01:00
* ✨ feat: Refactor error handling and improve loading states in MessageContent component * ✨ feat: Enhance Thinking and ContentParts components with improved hover functionality and clipboard support * fix: Adjust padding in Thinking and ContentParts components for consistent layout * ✨ feat: Add response label and improve message editing UI with contextual indicators * ✨ feat: Add isEditing prop to Feedback and Fork components for improved editing state handling * refactor: Remove isEditing prop from Feedback and Fork components for cleaner state management * refactor: Migrate state management from Recoil to Jotai for font size and show thinking features * refactor: Separate ToggleSwitch into RecoilToggle and JotaiToggle components for improved clarity and state management * refactor: Remove unnecessary comments in ToggleSwitch and MessageContent components for cleaner code * chore: reorder import statements in Thinking.tsx * chore: reorder import statement in EditTextPart.tsx * chore: reorder import statement * chore: Reorganize imports in ToggleSwitch.tsx --------- Co-authored-by: Danny Avila <danny@librechat.ai>
106 lines
2.8 KiB
TypeScript
106 lines
2.8 KiB
TypeScript
import { memo } from 'react';
|
|
import { showThinkingAtom } from '~/store/showThinking';
|
|
import FontSizeSelector from './FontSizeSelector';
|
|
import { ForkSettings } from './ForkSettings';
|
|
import ChatDirection from './ChatDirection';
|
|
import ToggleSwitch from '../ToggleSwitch';
|
|
import store from '~/store';
|
|
|
|
const toggleSwitchConfigs = [
|
|
{
|
|
stateAtom: store.enterToSend,
|
|
localizationKey: 'com_nav_enter_to_send',
|
|
switchId: 'enterToSend',
|
|
hoverCardText: 'com_nav_info_enter_to_send',
|
|
key: 'enterToSend',
|
|
},
|
|
{
|
|
stateAtom: store.maximizeChatSpace,
|
|
localizationKey: 'com_nav_maximize_chat_space',
|
|
switchId: 'maximizeChatSpace',
|
|
hoverCardText: undefined,
|
|
key: 'maximizeChatSpace',
|
|
},
|
|
{
|
|
stateAtom: store.centerFormOnLanding,
|
|
localizationKey: 'com_nav_center_chat_input',
|
|
switchId: 'centerFormOnLanding',
|
|
hoverCardText: undefined,
|
|
key: 'centerFormOnLanding',
|
|
},
|
|
{
|
|
stateAtom: showThinkingAtom,
|
|
localizationKey: 'com_nav_show_thinking',
|
|
switchId: 'showThinking',
|
|
hoverCardText: undefined,
|
|
key: 'showThinking',
|
|
},
|
|
{
|
|
stateAtom: store.showCode,
|
|
localizationKey: 'com_nav_show_code',
|
|
switchId: 'showCode',
|
|
hoverCardText: undefined,
|
|
key: 'showCode',
|
|
},
|
|
{
|
|
stateAtom: store.LaTeXParsing,
|
|
localizationKey: 'com_nav_latex_parsing',
|
|
switchId: 'latexParsing',
|
|
hoverCardText: 'com_nav_info_latex_parsing',
|
|
key: 'latexParsing',
|
|
},
|
|
{
|
|
stateAtom: store.saveDrafts,
|
|
localizationKey: 'com_nav_save_drafts',
|
|
switchId: 'saveDrafts',
|
|
hoverCardText: 'com_nav_info_save_draft',
|
|
key: 'saveDrafts',
|
|
},
|
|
{
|
|
stateAtom: store.showScrollButton,
|
|
localizationKey: 'com_nav_scroll_button',
|
|
switchId: 'showScrollButton',
|
|
hoverCardText: undefined,
|
|
key: 'showScrollButton',
|
|
},
|
|
{
|
|
stateAtom: store.saveBadgesState,
|
|
localizationKey: 'com_nav_save_badges_state',
|
|
switchId: 'showBadges',
|
|
hoverCardText: 'com_nav_info_save_badges_state',
|
|
key: 'showBadges',
|
|
},
|
|
{
|
|
stateAtom: store.modularChat,
|
|
localizationKey: 'com_nav_modular_chat',
|
|
switchId: 'modularChat',
|
|
hoverCardText: undefined,
|
|
key: 'modularChat',
|
|
},
|
|
];
|
|
|
|
function Chat() {
|
|
return (
|
|
<div className="flex flex-col gap-3 p-1 text-sm text-text-primary">
|
|
<div className="pb-3">
|
|
<FontSizeSelector />
|
|
</div>
|
|
<div className="pb-3">
|
|
<ChatDirection />
|
|
</div>
|
|
{toggleSwitchConfigs.map((config) => (
|
|
<div key={config.key} className="pb-3">
|
|
<ToggleSwitch
|
|
stateAtom={config.stateAtom}
|
|
localizationKey={config.localizationKey}
|
|
hoverCardText={config.hoverCardText}
|
|
switchId={config.switchId}
|
|
/>
|
|
</div>
|
|
))}
|
|
<ForkSettings />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default memo(Chat);
|