mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-19 09:50:15 +01:00
* chore: bump vite, vitejs/plugin-react, mark client package as esm, move react-query as a peer dep in data-provider * chore: import changes due to new data-provider export strategy, also fix type imports where applicable * chore: export react-query services as separate to avoid react dependencies in /api/ * chore: suppress sourcemap warnings and polyfill node:path which is used by filenamify TODO: replace filenamify with an alternative and REMOVE polyfill * chore: /api/ changes to support `librechat-data-provider` * refactor: rewrite Dockerfile.multi in light of /api/ changes to support `librechat-data-provider` * chore: remove volume mapping to node_modules directories in default compose file * chore: remove schemas from /api/ as is no longer needed with use of `librechat-data-provider` * fix(ci): jest `librechat-data-provider/react-query` module resolution
196 lines
6 KiB
TypeScript
196 lines
6 KiB
TypeScript
import { useRecoilState } from 'recoil';
|
|
import * as Tabs from '@radix-ui/react-tabs';
|
|
import React, { useState, useContext, useCallback, useRef } from 'react';
|
|
import { useClearConversationsMutation } from 'librechat-data-provider/react-query';
|
|
import {
|
|
ThemeContext,
|
|
useLocalize,
|
|
useOnClickOutside,
|
|
useConversation,
|
|
useConversations,
|
|
useLocalStorage,
|
|
} from '~/hooks';
|
|
import type { TDangerButtonProps } from '~/common';
|
|
import AutoScrollSwitch from './AutoScrollSwitch';
|
|
import DangerButton from './DangerButton';
|
|
import store from '~/store';
|
|
import { Dropdown } from '~/components/ui';
|
|
|
|
export const ThemeSelector = ({
|
|
theme,
|
|
onChange,
|
|
}: {
|
|
theme: string;
|
|
onChange: (value: string) => void;
|
|
}) => {
|
|
const localize = useLocalize();
|
|
|
|
const themeOptions = [
|
|
{ value: 'system', display: localize('com_nav_theme_system') },
|
|
{ value: 'dark', display: localize('com_nav_theme_dark') },
|
|
{ value: 'light', display: localize('com_nav_theme_light') },
|
|
];
|
|
|
|
return (
|
|
<div className="flex items-center justify-between">
|
|
<div> {localize('com_nav_theme')} </div>
|
|
<Dropdown
|
|
value={theme}
|
|
onChange={onChange}
|
|
options={themeOptions}
|
|
width={150}
|
|
testId="theme-selector"
|
|
/>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export const ClearChatsButton = ({
|
|
confirmClear,
|
|
className = '',
|
|
showText = true,
|
|
mutation,
|
|
onClick,
|
|
}: Pick<
|
|
TDangerButtonProps,
|
|
'confirmClear' | 'mutation' | 'className' | 'showText' | 'onClick'
|
|
>) => {
|
|
return (
|
|
<DangerButton
|
|
id="clearConvosBtn"
|
|
mutation={mutation}
|
|
confirmClear={confirmClear}
|
|
className={className}
|
|
showText={showText}
|
|
infoTextCode="com_nav_clear_all_chats"
|
|
actionTextCode="com_ui_clear"
|
|
confirmActionTextCode="com_nav_confirm_clear"
|
|
dataTestIdInitial="clear-convos-initial"
|
|
dataTestIdConfirm="clear-convos-confirm"
|
|
onClick={onClick}
|
|
/>
|
|
);
|
|
};
|
|
|
|
export const LangSelector = ({
|
|
langcode,
|
|
onChange,
|
|
}: {
|
|
langcode: string;
|
|
onChange: (value: string) => void;
|
|
}) => {
|
|
const localize = useLocalize();
|
|
|
|
// Create an array of options for the Dropdown
|
|
const languageOptions = [
|
|
{ value: 'auto', display: localize('com_nav_lang_auto') },
|
|
{ value: 'en-US', display: localize('com_nav_lang_english') },
|
|
{ value: 'zh-CN', display: localize('com_nav_lang_chinese') },
|
|
{ value: 'zh-TC', display: localize('com_nav_lang_traditionalchinese') },
|
|
{ value: 'ar-EG', display: localize('com_nav_lang_arabic') },
|
|
{ value: 'de-DE', display: localize('com_nav_lang_german') },
|
|
{ value: 'es-ES', display: localize('com_nav_lang_spanish') },
|
|
{ value: 'fr-FR', display: localize('com_nav_lang_french') },
|
|
{ value: 'it-IT', display: localize('com_nav_lang_italian') },
|
|
{ value: 'pl-PL', display: localize('com_nav_lang_polish') },
|
|
{ value: 'pt-BR', display: localize('com_nav_lang_brazilian_portuguese') },
|
|
{ value: 'ru-RU', display: localize('com_nav_lang_russian') },
|
|
{ value: 'ja-JP', display: localize('com_nav_lang_japanese') },
|
|
{ value: 'sv-SE', display: localize('com_nav_lang_swedish') },
|
|
{ value: 'ko-KR', display: localize('com_nav_lang_korean') },
|
|
{ value: 'vi-VN', display: localize('com_nav_lang_vietnamese') },
|
|
{ value: 'tr-TR', display: localize('com_nav_lang_turkish') },
|
|
{ value: 'nl-NL', display: localize('com_nav_lang_dutch') },
|
|
];
|
|
|
|
return (
|
|
<div className="flex items-center justify-between">
|
|
<div> {localize('com_nav_language')} </div>
|
|
<Dropdown value={langcode} onChange={onChange} options={languageOptions} />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
function General() {
|
|
const { theme, setTheme } = useContext(ThemeContext);
|
|
const clearConvosMutation = useClearConversationsMutation();
|
|
const [confirmClear, setConfirmClear] = useState(false);
|
|
const [langcode, setLangcode] = useRecoilState(store.lang);
|
|
const [selectedLang, setSelectedLang] = useLocalStorage('selectedLang', langcode);
|
|
const { newConversation } = useConversation();
|
|
const { refreshConversations } = useConversations();
|
|
|
|
const contentRef = useRef(null);
|
|
useOnClickOutside(contentRef, () => confirmClear && setConfirmClear(false), []);
|
|
|
|
const clearConvos = () => {
|
|
if (confirmClear) {
|
|
console.log('Clearing conversations...');
|
|
setConfirmClear(false);
|
|
clearConvosMutation.mutate(
|
|
{},
|
|
{
|
|
onSuccess: () => {
|
|
newConversation();
|
|
refreshConversations();
|
|
},
|
|
},
|
|
);
|
|
} else {
|
|
setConfirmClear(true);
|
|
}
|
|
};
|
|
|
|
const changeTheme = useCallback(
|
|
(value: string) => {
|
|
setTheme(value);
|
|
},
|
|
[setTheme],
|
|
);
|
|
|
|
const changeLang = useCallback(
|
|
(value: string) => {
|
|
setSelectedLang(value);
|
|
if (value === 'auto') {
|
|
const userLang = navigator.language || navigator.languages[0];
|
|
setLangcode(userLang);
|
|
localStorage.setItem('lang', userLang);
|
|
} else {
|
|
setLangcode(value);
|
|
localStorage.setItem('lang', value);
|
|
}
|
|
},
|
|
[setLangcode, setSelectedLang],
|
|
);
|
|
|
|
return (
|
|
<Tabs.Content
|
|
value="general"
|
|
role="tabpanel"
|
|
className="w-full md:min-h-[300px]"
|
|
ref={contentRef}
|
|
>
|
|
<div className="flex flex-col gap-3 text-sm text-gray-600 dark:text-gray-300">
|
|
<div className="border-b pb-3 last-of-type:border-b-0 dark:border-gray-700">
|
|
<ThemeSelector theme={theme} onChange={changeTheme} />
|
|
</div>
|
|
<div className="border-b pb-3 last-of-type:border-b-0 dark:border-gray-700">
|
|
<LangSelector langcode={selectedLang} onChange={changeLang} />
|
|
</div>
|
|
<div className="border-b pb-3 last-of-type:border-b-0 dark:border-gray-700">
|
|
<ClearChatsButton
|
|
confirmClear={confirmClear}
|
|
onClick={clearConvos}
|
|
showText={true}
|
|
mutation={clearConvosMutation}
|
|
/>
|
|
</div>
|
|
<div className="border-b pb-3 last-of-type:border-b-0 dark:border-gray-700">
|
|
<AutoScrollSwitch />
|
|
</div>
|
|
</div>
|
|
</Tabs.Content>
|
|
);
|
|
}
|
|
|
|
export default React.memo(General);
|