mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-20 18:30:15 +01:00
38 lines
1 KiB
TypeScript
38 lines
1 KiB
TypeScript
|
|
import { useRecoilState } from 'recoil';
|
||
|
|
import HoverCardSettings from '../HoverCardSettings';
|
||
|
|
import { Switch } from '~/components/ui';
|
||
|
|
import useLocalize from '~/hooks/useLocalize';
|
||
|
|
import store from '~/store';
|
||
|
|
|
||
|
|
export default function SaveDraft({
|
||
|
|
onCheckedChange,
|
||
|
|
}: {
|
||
|
|
onCheckedChange?: (value: boolean) => void;
|
||
|
|
}) {
|
||
|
|
const [showThinking, setSaveDrafts] = useRecoilState<boolean>(store.showThinking);
|
||
|
|
const localize = useLocalize();
|
||
|
|
|
||
|
|
const handleCheckedChange = (value: boolean) => {
|
||
|
|
setSaveDrafts(value);
|
||
|
|
if (onCheckedChange) {
|
||
|
|
onCheckedChange(value);
|
||
|
|
}
|
||
|
|
};
|
||
|
|
|
||
|
|
return (
|
||
|
|
<div className="flex items-center justify-between">
|
||
|
|
<div className="flex items-center space-x-2">
|
||
|
|
<div>{localize('com_nav_show_thinking')}</div>
|
||
|
|
<HoverCardSettings side="bottom" text="com_nav_info_show_thinking" />
|
||
|
|
</div>
|
||
|
|
<Switch
|
||
|
|
id="showThinking"
|
||
|
|
checked={showThinking}
|
||
|
|
onCheckedChange={handleCheckedChange}
|
||
|
|
className="ml-4"
|
||
|
|
data-testid="showThinking"
|
||
|
|
/>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|