2024-09-20 20:29:42 -04:00
|
|
|
import React, { useContext, useCallback } from 'react';
|
2025-05-30 18:16:34 +02:00
|
|
|
import Cookies from 'js-cookie';
|
|
|
|
|
import { useRecoilState } from 'recoil';
|
2024-09-20 20:29:42 -04:00
|
|
|
import { ThemeContext, useLocalize } from '~/hooks';
|
2024-08-07 14:23:33 -04:00
|
|
|
import ArchivedChats from './ArchivedChats';
|
2025-04-01 09:15:41 +02:00
|
|
|
import ToggleSwitch from '../ToggleSwitch';
|
|
|
|
|
import { Dropdown } from '~/components';
|
2023-07-24 08:33:08 -04:00
|
|
|
import store from '~/store';
|
2023-06-11 13:45:28 -04:00
|
|
|
|
2025-04-01 09:15:41 +02:00
|
|
|
const toggleSwitchConfigs = [
|
|
|
|
|
{
|
|
|
|
|
stateAtom: store.enableUserMsgMarkdown,
|
|
|
|
|
localizationKey: 'com_nav_user_msg_markdown',
|
|
|
|
|
switchId: 'enableUserMsgMarkdown',
|
|
|
|
|
hoverCardText: undefined,
|
|
|
|
|
key: 'enableUserMsgMarkdown',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
stateAtom: store.autoScroll,
|
|
|
|
|
localizationKey: 'com_nav_auto_scroll',
|
|
|
|
|
switchId: 'autoScroll',
|
|
|
|
|
hoverCardText: undefined,
|
|
|
|
|
key: 'autoScroll',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
stateAtom: store.hideSidePanel,
|
|
|
|
|
localizationKey: 'com_nav_hide_panel',
|
|
|
|
|
switchId: 'hideSidePanel',
|
|
|
|
|
hoverCardText: undefined,
|
|
|
|
|
key: 'hideSidePanel',
|
|
|
|
|
},
|
|
|
|
|
];
|
|
|
|
|
|
2023-07-04 12:47:41 -07:00
|
|
|
export const ThemeSelector = ({
|
|
|
|
|
theme,
|
2023-07-14 09:36:49 -04:00
|
|
|
onChange,
|
2023-07-04 12:47:41 -07:00
|
|
|
}: {
|
|
|
|
|
theme: string;
|
|
|
|
|
onChange: (value: string) => void;
|
2023-07-24 08:33:08 -04:00
|
|
|
}) => {
|
2023-09-04 15:23:26 +02:00
|
|
|
const localize = useLocalize();
|
2023-07-24 08:33:08 -04:00
|
|
|
|
2023-11-16 14:42:03 +01:00
|
|
|
const themeOptions = [
|
2024-08-13 02:42:49 -04:00
|
|
|
{ value: 'system', label: localize('com_nav_theme_system') },
|
|
|
|
|
{ value: 'dark', label: localize('com_nav_theme_dark') },
|
|
|
|
|
{ value: 'light', label: localize('com_nav_theme_light') },
|
2023-11-16 14:42:03 +01:00
|
|
|
];
|
|
|
|
|
|
2023-07-24 08:33:08 -04:00
|
|
|
return (
|
|
|
|
|
<div className="flex items-center justify-between">
|
2024-06-21 15:58:04 +02:00
|
|
|
<div>{localize('com_nav_theme')}</div>
|
|
|
|
|
|
2023-11-16 14:42:03 +01:00
|
|
|
<Dropdown
|
2023-07-24 08:33:08 -04:00
|
|
|
value={theme}
|
2023-11-16 14:42:03 +01:00
|
|
|
onChange={onChange}
|
|
|
|
|
options={themeOptions}
|
2024-09-22 04:45:50 +02:00
|
|
|
sizeClasses="w-[180px]"
|
2023-11-16 14:42:03 +01:00
|
|
|
testId="theme-selector"
|
2025-04-18 17:36:59 +02:00
|
|
|
className="z-50"
|
2023-11-16 14:42:03 +01:00
|
|
|
/>
|
2023-07-24 08:33:08 -04:00
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
};
|
2023-06-11 13:45:28 -04:00
|
|
|
|
2023-07-31 11:47:14 -04:00
|
|
|
export const LangSelector = ({
|
|
|
|
|
langcode,
|
|
|
|
|
onChange,
|
|
|
|
|
}: {
|
|
|
|
|
langcode: string;
|
|
|
|
|
onChange: (value: string) => void;
|
|
|
|
|
}) => {
|
2023-09-04 15:23:26 +02:00
|
|
|
const localize = useLocalize();
|
2023-07-31 11:47:14 -04:00
|
|
|
|
2023-11-16 14:42:03 +01:00
|
|
|
const languageOptions = [
|
2024-08-13 02:42:49 -04:00
|
|
|
{ value: 'auto', label: localize('com_nav_lang_auto') },
|
|
|
|
|
{ value: 'en-US', label: localize('com_nav_lang_english') },
|
2025-02-14 14:30:27 +01:00
|
|
|
{ value: 'zh-Hans', label: localize('com_nav_lang_chinese') },
|
2025-02-13 20:20:30 +01:00
|
|
|
{ value: 'zh-Hant', label: localize('com_nav_lang_traditional_chinese') },
|
2024-08-13 02:42:49 -04:00
|
|
|
{ value: 'ar-EG', label: localize('com_nav_lang_arabic') },
|
2025-05-14 19:08:06 +02:00
|
|
|
{ value: 'da-DK', label: localize('com_nav_lang_danish') },
|
2024-08-13 02:42:49 -04:00
|
|
|
{ value: 'de-DE', label: localize('com_nav_lang_german') },
|
|
|
|
|
{ value: 'es-ES', label: localize('com_nav_lang_spanish') },
|
2025-05-14 19:08:06 +02:00
|
|
|
{ value: 'ca-ES', label: localize('com_nav_lang_catalan') },
|
2025-02-14 14:30:27 +01:00
|
|
|
{ value: 'et-EE', label: localize('com_nav_lang_estonian') },
|
2025-04-01 23:42:56 +02:00
|
|
|
{ value: 'fa-IR', label: localize('com_nav_lang_persian') },
|
2024-08-13 02:42:49 -04:00
|
|
|
{ value: 'fr-FR', label: localize('com_nav_lang_french') },
|
2025-03-26 18:25:13 +01:00
|
|
|
{ value: 'he-HE', label: localize('com_nav_lang_hebrew') },
|
|
|
|
|
{ value: 'hu-HU', label: localize('com_nav_lang_hungarian') },
|
2025-07-03 17:16:33 +02:00
|
|
|
{ value: 'hy-AM', label: localize('com_nav_lang_armenian') },
|
2024-08-13 02:42:49 -04:00
|
|
|
{ value: 'it-IT', label: localize('com_nav_lang_italian') },
|
|
|
|
|
{ value: 'pl-PL', label: localize('com_nav_lang_polish') },
|
|
|
|
|
{ value: 'pt-BR', label: localize('com_nav_lang_brazilian_portuguese') },
|
2025-02-14 14:30:27 +01:00
|
|
|
{ value: 'pt-PT', label: localize('com_nav_lang_portuguese') },
|
2024-08-13 02:42:49 -04:00
|
|
|
{ value: 'ru-RU', label: localize('com_nav_lang_russian') },
|
|
|
|
|
{ value: 'ja-JP', label: localize('com_nav_lang_japanese') },
|
2025-02-26 02:28:58 +01:00
|
|
|
{ value: 'ka-GE', label: localize('com_nav_lang_georgian') },
|
2025-05-14 19:08:06 +02:00
|
|
|
{ value: 'cs-CZ', label: localize('com_nav_lang_czech') },
|
2024-08-13 02:42:49 -04:00
|
|
|
{ value: 'sv-SE', label: localize('com_nav_lang_swedish') },
|
|
|
|
|
{ value: 'ko-KR', label: localize('com_nav_lang_korean') },
|
2025-07-03 17:16:33 +02:00
|
|
|
{ value: 'lv-LV', label: localize('com_nav_lang_latvian') },
|
2024-08-13 02:42:49 -04:00
|
|
|
{ value: 'vi-VN', label: localize('com_nav_lang_vietnamese') },
|
2025-03-07 17:57:57 +01:00
|
|
|
{ value: 'th-TH', label: localize('com_nav_lang_thai') },
|
2024-08-13 02:42:49 -04:00
|
|
|
{ value: 'tr-TR', label: localize('com_nav_lang_turkish') },
|
2025-07-03 17:16:33 +02:00
|
|
|
{ value: 'ug', label: localize('com_nav_lang_uyghur') },
|
2024-08-13 02:42:49 -04:00
|
|
|
{ value: 'nl-NL', label: localize('com_nav_lang_dutch') },
|
|
|
|
|
{ value: 'id-ID', label: localize('com_nav_lang_indonesia') },
|
|
|
|
|
{ value: 'fi-FI', label: localize('com_nav_lang_finnish') },
|
2023-11-16 14:42:03 +01:00
|
|
|
];
|
|
|
|
|
|
2023-07-31 11:47:14 -04:00
|
|
|
return (
|
|
|
|
|
<div className="flex items-center justify-between">
|
2024-06-21 15:58:04 +02:00
|
|
|
<div>{localize('com_nav_language')}</div>
|
|
|
|
|
|
2024-05-10 03:16:16 +05:30
|
|
|
<Dropdown
|
|
|
|
|
value={langcode}
|
|
|
|
|
onChange={onChange}
|
2024-07-11 02:15:58 +05:30
|
|
|
sizeClasses="[--anchor-max-height:256px]"
|
2024-05-10 03:16:16 +05:30
|
|
|
options={languageOptions}
|
2025-04-18 17:36:59 +02:00
|
|
|
className="z-50"
|
2024-05-10 03:16:16 +05:30
|
|
|
/>
|
2023-07-31 11:47:14 -04:00
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
2023-06-11 13:45:28 -04:00
|
|
|
function General() {
|
|
|
|
|
const { theme, setTheme } = useContext(ThemeContext);
|
🌿 feat: Fork Messages/Conversations (#2617)
* typedef for ImportBatchBuilder
* feat: first pass, fork conversations
* feat: fork - getMessagesUpToTargetLevel
* fix: additional tests and fix getAllMessagesUpToParent
* chore: arrow function return
* refactor: fork 3 options
* chore: remove unused genbuttons
* chore: remove unused hover buttons code
* feat: fork first pass
* wip: fork remember setting
* style: user icon
* chore: move clear chats to data tab
* WIP: fork UI options
* feat: data-provider fork types/services/vars and use generic MutationOptions
* refactor: use single param for fork option, use enum, fix mongo errors, use Date.now(), add records flag for testing, use endpoint from original convo and messages, pass originalConvo to finishConversation
* feat: add fork mutation hook and consolidate type imports
* refactor: use enum
* feat: first pass, fork mutation
* chore: add enum for target level fork option
* chore: add enum for target level fork option
* show toast when checking remember selection
* feat: splitAtTarget
* feat: split at target option
* feat: navigate to new fork, show toasts, set result query data
* feat: hover info for all fork options
* refactor: add Messages settings tab
* fix(Fork): remember text info
* ci: test for single message and is target edge case
* feat: additional tests for getAllMessagesUpToParent
* ci: additional tests and cycle detection for getMessagesUpToTargetLevel
* feat: circular dependency checks for getAllMessagesUpToParent
* fix: getMessagesUpToTargetLevel circular dep. check
* ci: more tests for getMessagesForConversation
* style: hover text for checkbox fork items
* refactor: add statefulness to conversation import
2024-05-05 11:48:20 -04:00
|
|
|
|
2023-07-31 11:47:14 -04:00
|
|
|
const [langcode, setLangcode] = useRecoilState(store.lang);
|
2023-07-27 10:13:05 -04:00
|
|
|
|
2023-07-04 12:47:41 -07:00
|
|
|
const changeTheme = useCallback(
|
|
|
|
|
(value: string) => {
|
|
|
|
|
setTheme(value);
|
|
|
|
|
},
|
2023-07-14 09:36:49 -04:00
|
|
|
[setTheme],
|
2023-07-04 12:47:41 -07:00
|
|
|
);
|
2023-06-11 13:45:28 -04:00
|
|
|
|
2023-07-31 11:47:14 -04:00
|
|
|
const changeLang = useCallback(
|
|
|
|
|
(value: string) => {
|
2024-08-30 20:57:29 +10:00
|
|
|
let userLang = value;
|
2023-09-18 21:40:20 +02:00
|
|
|
if (value === 'auto') {
|
2024-08-30 20:57:29 +10:00
|
|
|
userLang = navigator.language || navigator.languages[0];
|
2023-09-18 21:40:20 +02:00
|
|
|
}
|
2024-08-30 20:57:29 +10:00
|
|
|
|
|
|
|
|
requestAnimationFrame(() => {
|
|
|
|
|
document.documentElement.lang = userLang;
|
|
|
|
|
});
|
|
|
|
|
setLangcode(userLang);
|
|
|
|
|
Cookies.set('lang', userLang, { expires: 365 });
|
2023-07-31 11:47:14 -04:00
|
|
|
},
|
2024-08-30 20:57:29 +10:00
|
|
|
[setLangcode],
|
2023-07-31 11:47:14 -04:00
|
|
|
);
|
|
|
|
|
|
2023-06-11 13:45:28 -04:00
|
|
|
return (
|
2024-09-10 10:11:39 -09:00
|
|
|
<div className="flex flex-col gap-3 p-1 text-sm text-text-primary">
|
2024-10-20 17:29:47 +02:00
|
|
|
<div className="pb-3">
|
2024-09-10 10:11:39 -09:00
|
|
|
<ThemeSelector theme={theme} onChange={changeTheme} />
|
|
|
|
|
</div>
|
2024-10-20 17:29:47 +02:00
|
|
|
<div className="pb-3">
|
2024-09-10 10:11:39 -09:00
|
|
|
<LangSelector langcode={langcode} onChange={changeLang} />
|
|
|
|
|
</div>
|
2025-04-01 09:15:41 +02:00
|
|
|
{toggleSwitchConfigs.map((config) => (
|
|
|
|
|
<div key={config.key} className="pb-3">
|
|
|
|
|
<ToggleSwitch
|
|
|
|
|
stateAtom={config.stateAtom}
|
|
|
|
|
localizationKey={config.localizationKey}
|
|
|
|
|
hoverCardText={config.hoverCardText}
|
|
|
|
|
switchId={config.switchId}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
))}
|
2024-10-20 17:29:47 +02:00
|
|
|
<div className="pb-3">
|
2024-09-10 10:11:39 -09:00
|
|
|
<ArchivedChats />
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2023-06-11 13:45:28 -04:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default React.memo(General);
|