@lobehub/chat 0.152.6 → 0.152.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (186) hide show
  1. package/CHANGELOG.md +25 -0
  2. package/docs/self-hosting/advanced/settings-url-share.mdx +100 -0
  3. package/docs/self-hosting/advanced/settings-url-share.zh-CN.mdx +100 -0
  4. package/locales/ar/common.json +1 -0
  5. package/locales/ar/setting.json +4 -1
  6. package/locales/bg-BG/common.json +1 -0
  7. package/locales/bg-BG/setting.json +4 -1
  8. package/locales/de-DE/common.json +1 -0
  9. package/locales/de-DE/setting.json +4 -1
  10. package/locales/en-US/common.json +1 -0
  11. package/locales/en-US/setting.json +4 -1
  12. package/locales/es-ES/common.json +1 -0
  13. package/locales/es-ES/setting.json +4 -1
  14. package/locales/fr-FR/common.json +1 -0
  15. package/locales/fr-FR/setting.json +4 -1
  16. package/locales/it-IT/common.json +1 -0
  17. package/locales/it-IT/setting.json +4 -1
  18. package/locales/ja-JP/common.json +1 -0
  19. package/locales/ja-JP/setting.json +4 -1
  20. package/locales/ko-KR/common.json +1 -0
  21. package/locales/ko-KR/setting.json +4 -1
  22. package/locales/nl-NL/common.json +1 -0
  23. package/locales/nl-NL/setting.json +4 -1
  24. package/locales/pl-PL/common.json +1 -0
  25. package/locales/pl-PL/setting.json +4 -1
  26. package/locales/pt-BR/common.json +1 -0
  27. package/locales/pt-BR/setting.json +4 -1
  28. package/locales/ru-RU/common.json +1 -0
  29. package/locales/ru-RU/setting.json +4 -1
  30. package/locales/tr-TR/common.json +1 -0
  31. package/locales/tr-TR/setting.json +4 -1
  32. package/locales/vi-VN/common.json +1 -0
  33. package/locales/vi-VN/setting.json +4 -1
  34. package/locales/zh-CN/common.json +1 -0
  35. package/locales/zh-CN/setting.json +4 -1
  36. package/locales/zh-TW/common.json +1 -0
  37. package/locales/zh-TW/setting.json +4 -1
  38. package/package.json +1 -1
  39. package/src/app/(main)/(mobile)/me/features/AvatarBanner.tsx +52 -0
  40. package/src/app/(main)/(mobile)/me/features/Cate.tsx +35 -0
  41. package/src/app/(main)/(mobile)/me/features/ExtraCate.tsx +26 -0
  42. package/src/app/(main)/(mobile)/me/features/useExtraCate.tsx +62 -0
  43. package/src/app/(main)/(mobile)/me/layout.tsx +11 -0
  44. package/src/app/(main)/(mobile)/me/loading.tsx +17 -0
  45. package/src/app/(main)/(mobile)/me/page.tsx +31 -0
  46. package/src/app/(main)/@nav/_layout/Desktop/index.tsx +1 -1
  47. package/src/app/(main)/@nav/_layout/Mobile.tsx +3 -3
  48. package/src/app/(main)/chat/(mobile)/features/SessionHeader.tsx +1 -1
  49. package/src/app/(main)/chat/_layout/Desktop/index.tsx +6 -8
  50. package/src/app/(main)/chat/_layout/Mobile/index.tsx +5 -3
  51. package/src/app/(main)/chat/_layout/type.ts +5 -0
  52. package/src/app/(main)/chat/features/SettingButton.tsx +3 -4
  53. package/src/app/(main)/chat/layout.ts +5 -2
  54. package/src/app/(main)/chat/settings/{(desktop) → _layout/Desktop}/Header.tsx +2 -0
  55. package/src/app/(main)/chat/settings/_layout/Desktop/index.tsx +28 -0
  56. package/src/app/(main)/chat/settings/{(mobile) → _layout/Mobile}/Header.tsx +3 -2
  57. package/src/app/(main)/chat/settings/_layout/Mobile/index.tsx +15 -0
  58. package/src/app/(main)/chat/settings/error.tsx +5 -0
  59. package/src/app/(main)/chat/settings/features/HeaderContent.tsx +15 -9
  60. package/src/app/(main)/chat/settings/features/SubmitAgentButton/SubmitAgentModal.tsx +2 -0
  61. package/src/app/(main)/chat/settings/features/SubmitAgentButton/index.tsx +16 -8
  62. package/src/app/(main)/chat/settings/layout.tsx +9 -2
  63. package/src/app/(main)/chat/settings/loading.tsx +3 -0
  64. package/src/app/(main)/chat/settings/not-found.tsx +3 -0
  65. package/src/app/(main)/chat/settings/page.tsx +2 -9
  66. package/src/app/(main)/market/@detail/default.tsx +1 -10
  67. package/src/app/(main)/market/{@detail/_layout/Desktop.tsx → _layout/Desktop/DetailSidebar.tsx} +2 -2
  68. package/src/app/(main)/market/_layout/Desktop/index.tsx +2 -1
  69. package/src/app/(main)/market/{@detail/_layout/Mobile.tsx → _layout/Mobile/DetailModal.tsx} +2 -2
  70. package/src/app/(main)/market/_layout/Mobile/index.tsx +3 -1
  71. package/src/app/(main)/settings/@category/default.tsx +16 -0
  72. package/src/app/(main)/settings/@category/features/CategoryContent.tsx +33 -0
  73. package/src/app/(main)/settings/@category/features/UpgradeAlert.tsx +38 -0
  74. package/src/app/(main)/settings/_layout/Desktop/Header.tsx +78 -23
  75. package/src/app/(main)/settings/_layout/Desktop/SideBar.tsx +39 -27
  76. package/src/app/(main)/settings/_layout/Desktop/index.tsx +41 -17
  77. package/src/app/(main)/settings/_layout/Mobile/{SubSettingHeader.tsx → Header.tsx} +3 -1
  78. package/src/app/(main)/settings/_layout/Mobile/index.tsx +7 -18
  79. package/src/app/(main)/settings/_layout/type.ts +6 -0
  80. package/src/app/(main)/settings/about/features/AboutList.tsx +134 -0
  81. package/src/app/(main)/settings/about/features/Analytics.tsx +42 -0
  82. package/src/app/(main)/settings/about/index.tsx +46 -0
  83. package/src/app/(main)/settings/about/page.tsx +13 -33
  84. package/src/app/(main)/settings/agent/{Agent.tsx → index.tsx} +8 -4
  85. package/src/app/(main)/settings/agent/page.tsx +8 -16
  86. package/src/app/(main)/settings/common/{Common.tsx → features/Common.tsx} +6 -4
  87. package/src/app/(main)/settings/common/{Theme.tsx → features/Theme/index.tsx} +8 -6
  88. package/src/app/(main)/settings/common/index.tsx +11 -16
  89. package/src/app/(main)/settings/common/page.tsx +8 -7
  90. package/src/app/(main)/settings/error.tsx +5 -0
  91. package/src/app/(main)/settings/features/Footer.tsx +2 -0
  92. package/src/app/(main)/settings/features/UpgradeAlert.tsx +21 -13
  93. package/src/app/(main)/settings/hooks/useCategory.tsx +54 -0
  94. package/src/app/(main)/settings/hooks/useSyncSettings.ts +2 -2
  95. package/src/app/(main)/settings/layout.ts +4 -1
  96. package/src/app/(main)/settings/llm/Anthropic/index.tsx +4 -8
  97. package/src/app/(main)/settings/llm/Azure/index.tsx +3 -1
  98. package/src/app/(main)/settings/llm/Bedrock/index.tsx +3 -1
  99. package/src/app/(main)/settings/llm/Google/index.tsx +4 -2
  100. package/src/app/(main)/settings/llm/Groq/index.tsx +3 -1
  101. package/src/app/(main)/settings/llm/Minimax/index.tsx +3 -9
  102. package/src/app/(main)/settings/llm/Mistral/index.tsx +3 -9
  103. package/src/app/(main)/settings/llm/Moonshot/index.tsx +3 -1
  104. package/src/app/(main)/settings/llm/Ollama/index.tsx +3 -1
  105. package/src/app/(main)/settings/llm/OpenAI/index.tsx +2 -0
  106. package/src/app/(main)/settings/llm/OpenRouter/index.tsx +3 -9
  107. package/src/app/(main)/settings/llm/Perplexity/index.tsx +3 -9
  108. package/src/app/(main)/settings/llm/TogetherAI/index.tsx +3 -9
  109. package/src/app/(main)/settings/llm/ZeroOne/index.tsx +3 -9
  110. package/src/app/(main)/settings/llm/Zhipu/index.tsx +3 -10
  111. package/src/app/(main)/settings/llm/components/Checker.tsx +2 -0
  112. package/src/app/(main)/settings/llm/components/Footer.tsx +26 -0
  113. package/src/app/(main)/settings/llm/components/ProviderConfig/index.tsx +29 -3
  114. package/src/app/(main)/settings/llm/index.tsx +11 -23
  115. package/src/app/(main)/settings/llm/page.tsx +15 -0
  116. package/src/app/(main)/settings/loading.tsx +9 -0
  117. package/src/app/(main)/settings/not-found.tsx +3 -0
  118. package/src/app/(main)/settings/page.tsx +2 -14
  119. package/src/app/(main)/settings/sync/{DeviceInfo → features/DeviceInfo}/Card.tsx +6 -5
  120. package/src/app/(main)/settings/sync/features/DeviceInfo/DeviceName.tsx +63 -0
  121. package/src/app/(main)/settings/sync/{components → features/DeviceInfo}/SystemIcon.tsx +6 -14
  122. package/src/app/(main)/settings/sync/{DeviceInfo → features/DeviceInfo}/index.tsx +22 -36
  123. package/src/app/(main)/settings/sync/{WebRTC → features/WebRTC}/ChannelNameInput.tsx +3 -3
  124. package/src/app/(main)/settings/sync/{WebRTC → features/WebRTC}/index.tsx +10 -9
  125. package/src/app/(main)/settings/sync/index.tsx +17 -0
  126. package/src/app/(main)/settings/sync/page.tsx +11 -15
  127. package/src/app/(main)/settings/tts/features/OpenAI.tsx +54 -0
  128. package/src/app/(main)/settings/tts/{TTS/index.tsx → features/STT.tsx} +11 -27
  129. package/src/app/(main)/settings/tts/index.tsx +15 -0
  130. package/src/app/(main)/settings/tts/page.tsx +8 -16
  131. package/src/app/layout.tsx +6 -2
  132. package/src/components/BrandWatermark/index.tsx +39 -0
  133. package/src/components/Cell/Divider.tsx +19 -0
  134. package/src/components/Cell/index.tsx +38 -0
  135. package/src/components/Menu/index.tsx +97 -0
  136. package/src/components/SkeletonLoading/index.tsx +21 -0
  137. package/src/const/url.ts +2 -0
  138. package/src/features/AgentSetting/AgentChat/index.tsx +135 -0
  139. package/src/features/AgentSetting/AgentMeta/index.tsx +4 -3
  140. package/src/features/AgentSetting/AgentModal/index.tsx +95 -0
  141. package/src/features/AgentSetting/AgentPlugin/index.tsx +65 -66
  142. package/src/features/AgentSetting/AgentPrompt/index.tsx +101 -47
  143. package/src/features/AgentSetting/AgentTTS/index.tsx +4 -0
  144. package/src/features/AgentSetting/StoreUpdater.tsx +2 -0
  145. package/src/features/AgentSetting/index.tsx +6 -6
  146. package/src/features/AgentSetting/store/index.ts +2 -0
  147. package/src/features/AvatarWithUpload/index.tsx +2 -0
  148. package/src/hooks/useQuery.test.ts +20 -0
  149. package/src/hooks/useQuery.ts +7 -0
  150. package/src/hooks/useQueryRoute.test.ts +86 -0
  151. package/src/hooks/useQueryRoute.ts +46 -0
  152. package/src/locales/default/common.ts +1 -0
  153. package/src/locales/default/setting.ts +3 -0
  154. package/src/store/global/initialState.ts +1 -0
  155. package/src/store/user/slices/common/action.test.ts +1 -1
  156. package/src/app/(main)/chat/settings/(desktop)/index.tsx +0 -23
  157. package/src/app/(main)/chat/settings/(mobile)/index.tsx +0 -16
  158. package/src/app/(main)/settings/(desktop)/index.tsx +0 -23
  159. package/src/app/(main)/settings/(mobile)/features/AvatarBanner.tsx +0 -68
  160. package/src/app/(main)/settings/(mobile)/features/ExtraList.tsx +0 -65
  161. package/src/app/(main)/settings/(mobile)/index.tsx +0 -53
  162. package/src/app/(main)/settings/about/AboutList.tsx +0 -53
  163. package/src/app/(main)/settings/about/Analytics.tsx +0 -40
  164. package/src/app/(main)/settings/about/style.ts +0 -22
  165. package/src/app/(main)/settings/agent/loading.tsx +0 -3
  166. package/src/app/(main)/settings/common/loading.tsx +0 -3
  167. package/src/app/(main)/settings/features/SettingList/index.tsx +0 -47
  168. package/src/app/(main)/settings/llm/layout.tsx +0 -11
  169. package/src/app/(main)/settings/llm/loading.tsx +0 -3
  170. package/src/app/(main)/settings/sync/DeviceInfo/DeviceName.tsx +0 -66
  171. package/src/app/(main)/settings/sync/PageTitle.tsx +0 -11
  172. package/src/app/(main)/settings/sync/layout.tsx +0 -12
  173. package/src/app/(main)/settings/sync/loading.tsx +0 -3
  174. package/src/app/(main)/settings/tts/loading.tsx +0 -3
  175. package/src/features/AgentSetting/AgentConfig/index.tsx +0 -202
  176. package/src/features/AgentSetting/AgentConfig/useSyncConfig.ts +0 -23
  177. /package/src/app/(main)/settings/{features/SettingList → about/features}/Item.tsx +0 -0
  178. /package/src/app/(main)/settings/{features → common/features/Theme}/ThemeSwatches/ThemeSwatchesNeutral.tsx +0 -0
  179. /package/src/app/(main)/settings/{features → common/features/Theme}/ThemeSwatches/ThemeSwatchesPrimary.tsx +0 -0
  180. /package/src/app/(main)/settings/{features → common/features/Theme}/ThemeSwatches/index.ts +0 -0
  181. /package/src/app/(main)/settings/sync/{Alert.tsx → features/Alert.tsx} +0 -0
  182. /package/src/app/(main)/settings/sync/{components → features/WebRTC}/SyncSwitch/index.css +0 -0
  183. /package/src/app/(main)/settings/sync/{components → features/WebRTC}/SyncSwitch/index.tsx +0 -0
  184. /package/src/app/(main)/settings/sync/{util.ts → features/WebRTC/generateRandomRoomName.ts} +0 -0
  185. /package/src/app/(main)/settings/tts/{TTS/options.ts → features/const.ts} +0 -0
  186. /package/src/features/AgentSetting/{AgentConfig → AgentModal}/ModelSelect.tsx +0 -0
@@ -6,7 +6,7 @@ import { useTranslation } from 'react-i18next';
6
6
 
7
7
  import { agentMarketSelectors, useMarketStore } from '@/store/market';
8
8
 
9
- const AgentDetail = memo<PropsWithChildren>(({ children }) => {
9
+ const DetailModal = memo<PropsWithChildren>(({ children }) => {
10
10
  const [showAgentSidebar, deactivateAgent] = useMarketStore((s) => [
11
11
  agentMarketSelectors.showSideBar(s),
12
12
  s.deactivateAgent,
@@ -29,4 +29,4 @@ const AgentDetail = memo<PropsWithChildren>(({ children }) => {
29
29
  );
30
30
  });
31
31
 
32
- export default AgentDetail;
32
+ export default DetailModal;
@@ -1,6 +1,7 @@
1
1
  import MobileContentLayout from '@/components/server/MobileNavLayout';
2
2
 
3
3
  import { LayoutProps } from '../type';
4
+ import DetailModal from './DetailModal';
4
5
  import Header from './Header';
5
6
 
6
7
  const Layout = ({ children, detail }: LayoutProps) => {
@@ -10,10 +11,11 @@ const Layout = ({ children, detail }: LayoutProps) => {
10
11
  gap={16}
11
12
  header={<Header />}
12
13
  style={{ paddingInline: 16, paddingTop: 8 }}
14
+ withNav
13
15
  >
14
16
  {children}
15
17
  </MobileContentLayout>
16
- {detail}
18
+ <DetailModal>{detail}</DetailModal>
17
19
  </>
18
20
  );
19
21
  };
@@ -0,0 +1,16 @@
1
+ import UpgradeAlert from '@/app/(main)/settings/features/UpgradeAlert';
2
+
3
+ import CategoryContent from './features/CategoryContent';
4
+
5
+ const Category = () => {
6
+ return (
7
+ <>
8
+ <CategoryContent />
9
+ <UpgradeAlert />
10
+ </>
11
+ );
12
+ };
13
+
14
+ Category.displayName = 'SettingCategory';
15
+
16
+ export default Category;
@@ -0,0 +1,33 @@
1
+ 'use client';
2
+
3
+ import { memo } from 'react';
4
+ import urlJoin from 'url-join';
5
+
6
+ import Menu from '@/components/Menu';
7
+ import { useActiveSettingsKey } from '@/hooks/useActiveSettingsKey';
8
+ import { useQuery } from '@/hooks/useQuery';
9
+ import { useQueryRoute } from '@/hooks/useQueryRoute';
10
+ import { SettingsTabs } from '@/store/global/initialState';
11
+
12
+ import { useCategory } from '../../hooks/useCategory';
13
+
14
+ const CategoryContent = memo<{ modal?: boolean }>(({ modal }) => {
15
+ const activeTab = useActiveSettingsKey();
16
+ const { tab = SettingsTabs.Common } = useQuery();
17
+ const cateItems = useCategory();
18
+ const router = useQueryRoute();
19
+
20
+ return (
21
+ <Menu
22
+ items={cateItems}
23
+ onClick={({ key }) => {
24
+ router.push(urlJoin('/settings', key));
25
+ }}
26
+ selectable
27
+ selectedKeys={[modal ? tab : (activeTab as any)]}
28
+ variant={'compact'}
29
+ />
30
+ );
31
+ });
32
+
33
+ export default CategoryContent;
@@ -0,0 +1,38 @@
1
+ import { Alert } from '@lobehub/ui';
2
+ import { Button } from 'antd';
3
+ import Link from 'next/link';
4
+ import { memo } from 'react';
5
+ import { useTranslation } from 'react-i18next';
6
+
7
+ import { MANUAL_UPGRADE_URL } from '@/const/url';
8
+ import { useGlobalStore } from '@/store/global';
9
+
10
+ const UpgradeAlert = memo(() => {
11
+ const [hasNewVersion, latestVersion] = useGlobalStore((s) => [s.hasNewVersion, s.latestVersion]);
12
+ const { t } = useTranslation('common');
13
+
14
+ if (!hasNewVersion) return null;
15
+
16
+ return (
17
+ <Alert
18
+ action={
19
+ <Link
20
+ aria-label={t('upgradeVersion.action')}
21
+ href={MANUAL_UPGRADE_URL}
22
+ style={{ marginBottom: 12 }}
23
+ target={'_blank'}
24
+ >
25
+ <Button block size={'small'} type={'primary'}>
26
+ {t('upgradeVersion.action')}
27
+ </Button>
28
+ </Link>
29
+ }
30
+ closable
31
+ message={t('upgradeVersion.newVersion', { version: latestVersion })}
32
+ showIcon={false}
33
+ type={'info'}
34
+ />
35
+ );
36
+ });
37
+
38
+ export default UpgradeAlert;
@@ -1,36 +1,91 @@
1
1
  'use client';
2
2
 
3
- import { ChatHeader, ChatHeaderTitle } from '@lobehub/ui';
4
- import { Tag } from 'antd';
5
- import { memo } from 'react';
3
+ import { ActionIcon, ChatHeader, ChatHeaderTitle } from '@lobehub/ui';
4
+ import { Drawer, type DrawerProps, Tag } from 'antd';
5
+ import { createStyles } from 'antd-style';
6
+ import { Menu } from 'lucide-react';
7
+ import { PropsWithChildren, memo, useState } from 'react';
6
8
  import { useTranslation } from 'react-i18next';
7
9
  import { Flexbox } from 'react-layout-kit';
8
10
 
11
+ import BrandWatermark from '@/components/BrandWatermark';
9
12
  import { useActiveSettingsKey } from '@/hooks/useActiveSettingsKey';
10
13
  import { SettingsTabs } from '@/store/global/initialState';
11
14
 
12
- const Header = memo(() => {
13
- const { t } = useTranslation('setting');
15
+ const useStyles = createStyles(({ token, css }) => ({
16
+ container: css`
17
+ position: relative;
18
+ height: 54px;
19
+ background: ${token.colorBgContainer};
20
+ `,
21
+ title: css`
22
+ font-size: 18px;
23
+ font-weight: 700;
24
+ `,
25
+ }));
14
26
 
15
- const activeKey = useActiveSettingsKey();
27
+ const Header = memo<PropsWithChildren & Pick<DrawerProps, 'getContainer'>>(
28
+ ({ children, getContainer }) => {
29
+ const [open, setOpen] = useState(false);
30
+ const { styles, theme } = useStyles();
31
+ const { t } = useTranslation('setting');
16
32
 
17
- return (
18
- <ChatHeader
19
- left={
20
- <div style={{ paddingLeft: 8 }}>
21
- <ChatHeaderTitle
22
- title={
23
- <Flexbox align={'center'} gap={8} horizontal>
24
- {t(`tab.${activeKey}`)}
33
+ const activeKey = useActiveSettingsKey();
25
34
 
26
- {activeKey === SettingsTabs.Sync && <Tag color={'gold'}>{t('tab.experiment')}</Tag>}
27
- </Flexbox>
28
- }
29
- />
30
- </div>
31
- }
32
- />
33
- );
34
- });
35
+ return (
36
+ <>
37
+ <ChatHeader
38
+ className={styles.container}
39
+ left={
40
+ <div style={{ paddingLeft: 8 }}>
41
+ <ChatHeaderTitle
42
+ title={
43
+ <Flexbox align={'center'} className={styles.title} gap={4} horizontal>
44
+ <ActionIcon
45
+ color={theme.colorText}
46
+ icon={Menu}
47
+ onClick={() => setOpen(true)}
48
+ size={{ blockSize: 32, fontSize: 18 }}
49
+ />
50
+ {t(`tab.${activeKey}`)}
51
+ {activeKey === SettingsTabs.Sync && (
52
+ <Tag color={'gold'}>{t('tab.experiment')}</Tag>
53
+ )}
54
+ </Flexbox>
55
+ }
56
+ />
57
+ </div>
58
+ }
59
+ />
60
+ <Drawer
61
+ bodyStyle={{
62
+ display: 'flex',
63
+ flexDirection: 'column',
64
+ gap: 20,
65
+ justifyContent: 'space-between',
66
+ padding: 16,
67
+ }}
68
+ getContainer={getContainer}
69
+ headerStyle={{ display: 'none' }}
70
+ maskStyle={{ background: 'transparent' }}
71
+ onClick={() => setOpen(false)}
72
+ onClose={() => setOpen(false)}
73
+ open={open}
74
+ placement={'left'}
75
+ rootStyle={{ position: 'absolute' }}
76
+ style={{
77
+ background: theme.colorBgContainer,
78
+ borderRight: `1px solid ${theme.colorSplit}`,
79
+ }}
80
+ width={260}
81
+ zIndex={10}
82
+ >
83
+ {children}
84
+ <BrandWatermark paddingInline={12} />
85
+ </Drawer>
86
+ </>
87
+ );
88
+ },
89
+ );
35
90
 
36
91
  export default Header;
@@ -1,47 +1,59 @@
1
1
  'use client';
2
2
 
3
- import { createStyles, useResponsive } from 'antd-style';
4
- import { memo } from 'react';
3
+ import { createStyles } from 'antd-style';
5
4
  import { useTranslation } from 'react-i18next';
6
- import { Flexbox } from 'react-layout-kit';
5
+ import { Flexbox, FlexboxProps } from 'react-layout-kit';
7
6
 
8
- import { useActiveSettingsKey } from '@/hooks/useActiveSettingsKey';
7
+ import BrandWatermark from '@/components/BrandWatermark';
9
8
 
10
- import SettingList from '../../features/SettingList';
11
- import UpgradeAlert from '../../features/UpgradeAlert';
12
-
13
- const useStyles = createStyles(({ stylish, token, css }) => ({
14
- body: stylish.noScrollbar,
9
+ const useStyles = createStyles(({ token, css }) => ({
15
10
  container: css`
11
+ padding: 24px 12px 16px;
12
+ background: ${token.colorBgContainer};
16
13
  border-inline-end: 1px solid ${token.colorBorder};
17
14
  `,
15
+ desc: css`
16
+ line-height: 1.4;
17
+ color: ${token.colorTextDescription};
18
+ `,
19
+ header: css`
20
+ padding: 0 0.75rem;
21
+ `,
18
22
  logo: css`
19
23
  fill: ${token.colorText};
20
24
  `,
21
- top: css`
22
- font-size: 20px;
23
- font-weight: bold;
25
+ title: css`
26
+ margin: 0;
27
+ font-size: 26px;
28
+ font-weight: 600;
29
+ line-height: 1.3;
24
30
  `,
25
31
  }));
26
32
 
27
- const SideBar = memo(() => {
28
- const { styles } = useStyles();
29
- const activeKey = useActiveSettingsKey();
30
-
31
- const { t } = useTranslation('common');
32
- const { mobile } = useResponsive();
33
+ interface SidebarLayoutProps extends FlexboxProps {
34
+ desc?: string;
35
+ title?: string;
36
+ }
33
37
 
38
+ const SidebarLayout = ({ children, className, title, desc, ...rest }: SidebarLayoutProps) => {
39
+ const { cx, styles } = useStyles();
40
+ const { t } = useTranslation('setting');
34
41
  return (
35
- <Flexbox className={styles.container} width={280}>
36
- <Flexbox className={styles.top} padding={16}>
37
- {t('setting')}
38
- </Flexbox>
39
- <Flexbox gap={8} style={{ paddingInline: 8 }}>
40
- <UpgradeAlert />
41
- <SettingList activeTab={activeKey} mobile={mobile} />
42
+ <Flexbox
43
+ className={cx(styles.container, className)}
44
+ flex={'none'}
45
+ gap={20}
46
+ width={280}
47
+ {...rest}
48
+ >
49
+ <Flexbox className={styles.header} gap={4}>
50
+ <h1 className={styles.title}>{title || t('header.title')}</h1>
51
+ <p className={styles.desc}>{desc || t('header.desc')}</p>
42
52
  </Flexbox>
53
+ {children}
54
+ <BrandWatermark paddingInline={12} />
43
55
  </Flexbox>
44
56
  );
45
- });
57
+ };
46
58
 
47
- export default SideBar;
59
+ export default SidebarLayout;
@@ -1,27 +1,51 @@
1
1
  'use client';
2
2
 
3
- import { PropsWithChildren, memo } from 'react';
4
- import { Center, Flexbox } from 'react-layout-kit';
5
-
6
- import SafeSpacing from '@/components/SafeSpacing';
7
- import ClientResponsiveLayout from '@/components/client/ClientResponsiveLayout';
3
+ import { useResponsive } from 'antd-style';
4
+ import { memo, useRef } from 'react';
5
+ import { Flexbox } from 'react-layout-kit';
8
6
 
7
+ import { LayoutProps } from '../type';
9
8
  import Header from './Header';
10
9
  import SideBar from './SideBar';
11
10
 
12
- const Desktop = memo<PropsWithChildren>(({ children }) => (
13
- <>
14
- <SideBar />
15
- <Flexbox flex={1} height={'100%'} style={{ position: 'relative' }}>
16
- <Header />
17
- <Flexbox align={'center'} flex={1} padding={24} style={{ overflowY: 'scroll' }}>
18
- <SafeSpacing />
19
- <Center gap={16} width={'100%'}>
11
+ const Layout = memo<LayoutProps>(({ children, category }) => {
12
+ const ref = useRef<any>(null);
13
+ const { md = true, mobile = false } = useResponsive();
14
+
15
+ return (
16
+ <Flexbox
17
+ height={'100%'}
18
+ horizontal={md}
19
+ ref={ref}
20
+ style={{ position: 'relative' }}
21
+ width={'100%'}
22
+ >
23
+ {md ? (
24
+ <SideBar>{category}</SideBar>
25
+ ) : (
26
+ <Header getContainer={() => ref.current}>{category}</Header>
27
+ )}
28
+ <Flexbox
29
+ align={'center'}
30
+ height={'100%'}
31
+ style={{ overflowX: 'hidden', overflowY: 'auto' }}
32
+ width={'100%'}
33
+ >
34
+ <Flexbox
35
+ gap={64}
36
+ style={{
37
+ maxWidth: 1024,
38
+ padding: mobile ? undefined : '32px 24px',
39
+ }}
40
+ width={'100%'}
41
+ >
20
42
  {children}
21
- </Center>
43
+ </Flexbox>
22
44
  </Flexbox>
23
45
  </Flexbox>
24
- </>
25
- ));
46
+ );
47
+ });
48
+
49
+ Layout.displayName = 'DesktopSettingsLayout';
26
50
 
27
- export default ClientResponsiveLayout({ Desktop, Mobile: () => import('../Mobile') });
51
+ export default Layout;
@@ -1,3 +1,5 @@
1
+ 'use client';
2
+
1
3
  import { MobileNavBar, MobileNavBarTitle } from '@lobehub/ui';
2
4
  import { Tag } from 'antd';
3
5
  import { useRouter } from 'next/navigation';
@@ -28,7 +30,7 @@ const Header = memo(() => {
28
30
  }
29
31
  />
30
32
  }
31
- onBackClick={() => router.push('/settings')}
33
+ onBackClick={() => router.push('/me')}
32
34
  showBackButton
33
35
  style={mobileHeaderSticky}
34
36
  />
@@ -1,23 +1,12 @@
1
- 'use client';
2
-
3
- import { PropsWithChildren } from 'react';
4
-
5
1
  import MobileContentLayout from '@/components/server/MobileNavLayout';
6
- import { useIsSubSlug } from '@/hooks/useIsSubSlug';
7
-
8
- import SubSettingHeader from './SubSettingHeader';
9
2
 
10
- const MobileLayout = ({ children }: PropsWithChildren) => {
11
- const isSubPath = useIsSubSlug();
3
+ import { LayoutProps } from '../type';
4
+ import Header from './Header';
12
5
 
13
- if (isSubPath)
14
- return (
15
- <MobileContentLayout header={<SubSettingHeader />} withNav={false}>
16
- {children}
17
- </MobileContentLayout>
18
- );
19
-
20
- return children;
6
+ const Layout = ({ children }: LayoutProps) => {
7
+ return <MobileContentLayout header={<Header />}>{children}</MobileContentLayout>;
21
8
  };
22
9
 
23
- export default MobileLayout;
10
+ Layout.displayName = 'MobileSettingsLayout';
11
+
12
+ export default Layout;
@@ -0,0 +1,6 @@
1
+ import { ReactNode } from 'react';
2
+
3
+ export interface LayoutProps {
4
+ category: ReactNode;
5
+ children: ReactNode;
6
+ }
@@ -0,0 +1,134 @@
1
+ 'use client';
2
+
3
+ import { Grid, Icon } from '@lobehub/ui';
4
+ import { createStyles } from 'antd-style';
5
+ import {
6
+ Book,
7
+ Feather,
8
+ FileClock,
9
+ Github,
10
+ Heart,
11
+ HeartHandshake,
12
+ Home,
13
+ Lock,
14
+ Rss,
15
+ } from 'lucide-react';
16
+ import Link from 'next/link';
17
+ import { memo } from 'react';
18
+ import { useTranslation } from 'react-i18next';
19
+ import { Flexbox } from 'react-layout-kit';
20
+
21
+ import {
22
+ ABOUT,
23
+ BLOG,
24
+ CHANGELOG,
25
+ FEEDBACK,
26
+ GITHUB,
27
+ OFFICIAL_SITE,
28
+ PRIVACY_URL,
29
+ TERMS_URL,
30
+ } from '@/const/url';
31
+
32
+ const useStyles = createStyles(({ css, token, responsive, isDarkMode }) => ({
33
+ card: css`
34
+ cursor: pointer;
35
+
36
+ padding: 20px;
37
+
38
+ background: ${isDarkMode ? token.colorFillTertiary : token.colorBgContainer};
39
+ border: 1px solid ${token.colorFillSecondary};
40
+ border-radius: ${token.borderRadiusLG}px;
41
+
42
+ &:hover {
43
+ background: ${isDarkMode ? token.colorFillSecondary : token.colorBgContainer};
44
+ border: 1px solid ${token.colorFill};
45
+ }
46
+
47
+ ${responsive.mobile} {
48
+ padding: 16px;
49
+ }
50
+ `,
51
+ container: css`
52
+ ${responsive.mobile} {
53
+ padding-inline: 16px;
54
+ }
55
+ `,
56
+ }));
57
+
58
+ const AboutList = memo(() => {
59
+ const { styles } = useStyles();
60
+ const { t } = useTranslation('common');
61
+
62
+ const items = [
63
+ {
64
+ href: OFFICIAL_SITE,
65
+ icon: Home,
66
+ label: t('officialSite'),
67
+ value: 'officialSite',
68
+ },
69
+
70
+ {
71
+ href: FEEDBACK,
72
+ icon: Book,
73
+ label: t('document'),
74
+ value: 'feedback',
75
+ },
76
+ {
77
+ href: BLOG,
78
+ icon: Rss,
79
+ label: t('blog'),
80
+ value: 'blog',
81
+ },
82
+ {
83
+ href: GITHUB,
84
+ icon: Github,
85
+ label: 'GitHub',
86
+ value: 'feedback',
87
+ },
88
+ {
89
+ href: FEEDBACK,
90
+ icon: Feather,
91
+ label: t('feedback'),
92
+ value: 'feedback',
93
+ },
94
+ {
95
+ href: CHANGELOG,
96
+ icon: FileClock,
97
+ label: t('changelog'),
98
+ value: 'changelog',
99
+ },
100
+ {
101
+ href: TERMS_URL,
102
+ icon: HeartHandshake,
103
+ label: t('terms'),
104
+ value: 'terms',
105
+ },
106
+ {
107
+ href: PRIVACY_URL,
108
+ icon: Lock,
109
+ label: t('privacy'),
110
+ value: 'privacy',
111
+ },
112
+ {
113
+ href: ABOUT,
114
+ icon: Heart,
115
+ label: t('about'),
116
+ value: 'about',
117
+ },
118
+ ];
119
+
120
+ return (
121
+ <Grid className={styles.container} maxItemWidth={144} width={'100%'}>
122
+ {items.map(({ value, icon, label, href }) => (
123
+ <Link href={href} key={value} style={{ color: 'inherit' }} target={'_blank'}>
124
+ <Flexbox className={styles.card} gap={8} horizontal>
125
+ <Icon icon={icon} size={{ fontSize: 20 }} />
126
+ {label}
127
+ </Flexbox>
128
+ </Link>
129
+ ))}
130
+ </Grid>
131
+ );
132
+ });
133
+
134
+ export default AboutList;
@@ -0,0 +1,42 @@
1
+ 'use client';
2
+
3
+ import { Form, type ItemGroup } from '@lobehub/ui';
4
+ import { Switch } from 'antd';
5
+ import { memo } from 'react';
6
+ import { useTranslation } from 'react-i18next';
7
+
8
+ import { FORM_STYLE } from '@/const/layoutTokens';
9
+ import { useUserStore } from '@/store/user';
10
+ import { preferenceSelectors } from '@/store/user/selectors';
11
+
12
+ type SettingItemGroup = ItemGroup;
13
+
14
+ const Analytics = memo(() => {
15
+ const { t } = useTranslation('setting');
16
+ const checked = useUserStore(preferenceSelectors.userAllowTrace);
17
+ const [updatePreference] = useUserStore((s) => [s.updatePreference]);
18
+
19
+ const items: SettingItemGroup = {
20
+ children: [
21
+ {
22
+ children: (
23
+ <Switch
24
+ checked={!!checked}
25
+ onChange={(e) => {
26
+ updatePreference({ telemetry: e });
27
+ }}
28
+ />
29
+ ),
30
+ desc: t('analytics.telemetry.desc'),
31
+ label: t('analytics.telemetry.title'),
32
+ minWidth: undefined,
33
+ valuePropName: 'checked',
34
+ },
35
+ ],
36
+ title: t('analytics.title'),
37
+ };
38
+
39
+ return <Form items={[items]} itemsType={'group'} {...FORM_STYLE} />;
40
+ });
41
+
42
+ export default Analytics;
@@ -0,0 +1,46 @@
1
+ 'use client';
2
+
3
+ import { Logo, Tag } from '@lobehub/ui';
4
+ import Link from 'next/link';
5
+ import { memo } from 'react';
6
+ import { Flexbox } from 'react-layout-kit';
7
+
8
+ import { OFFICIAL_SITE, RELEASES_URL } from '@/const/url';
9
+ import { CURRENT_VERSION } from '@/const/version';
10
+ import Follow from '@/features/Follow';
11
+ import { useServerConfigStore } from '@/store/serverConfig';
12
+ import { serverConfigSelectors } from '@/store/serverConfig/selectors';
13
+
14
+ import AboutList from './features/AboutList';
15
+ import Analytics from './features/Analytics';
16
+
17
+ const COPYRIGHT = `© 2023-${new Date().getFullYear()} LobeHub, LLC`;
18
+
19
+ const Page = memo(({ mobile }: { mobile?: boolean }) => {
20
+ const enabledTelemetryChat = useServerConfigStore(serverConfigSelectors.enabledTelemetryChat);
21
+
22
+ return (
23
+ <Flexbox align={'center'} gap={12} paddingBlock={36} width={'100%'}>
24
+ <Link href={OFFICIAL_SITE} target={'_blank'}>
25
+ <Logo size={mobile ? 100 : 120} />
26
+ </Link>
27
+ <h1 style={{ fontSize: mobile ? 32 : 36, fontWeight: 900, lineHeight: 1, marginBottom: 0 }}>
28
+ LobeChat
29
+ </h1>
30
+ <Link href={RELEASES_URL} target={'_blank'}>
31
+ <Tag>v{CURRENT_VERSION}</Tag>
32
+ </Link>
33
+ <Flexbox gap={24} style={{ marginBlock: 48 }} width={'100%'}>
34
+ <AboutList />
35
+ {enabledTelemetryChat && <Analytics />}
36
+ </Flexbox>
37
+ <Follow />
38
+ <div>Empowering your AI dreams by LobeHub</div>
39
+ <div style={{ fontWeight: 400, opacity: 0.33 }}>{COPYRIGHT}</div>
40
+ </Flexbox>
41
+ );
42
+ });
43
+
44
+ Page.displayName = 'AboutSetting';
45
+
46
+ export default Page;