2023-09-17 23:32:14 +08:00
|
|
|
import React, { useContext } from 'react';
|
|
|
|
import { theme as antdTheme, ConfigProvider } from 'antd';
|
|
|
|
import type { ThemeConfig } from 'antd';
|
2023-04-20 10:47:06 +08:00
|
|
|
import type { ThemeProviderProps } from 'antd-style';
|
2023-04-18 15:29:34 +08:00
|
|
|
import { ThemeProvider } from 'antd-style';
|
|
|
|
|
2023-07-20 19:27:33 +08:00
|
|
|
interface NewToken {
|
2023-09-17 23:32:14 +08:00
|
|
|
bannerHeight: number;
|
2023-07-20 19:27:33 +08:00
|
|
|
headerHeight: number;
|
|
|
|
menuItemBorder: number;
|
|
|
|
mobileMaxWidth: number;
|
|
|
|
siteMarkdownCodeBg: string;
|
|
|
|
antCls: string;
|
|
|
|
iconCls: string;
|
|
|
|
marginFarXS: number;
|
|
|
|
marginFarSM: number;
|
|
|
|
marginFar: number;
|
|
|
|
codeFamily: string;
|
2023-08-08 19:48:41 +08:00
|
|
|
contentMarginTop: number;
|
2023-07-20 19:27:33 +08:00
|
|
|
}
|
|
|
|
|
2023-09-17 23:32:14 +08:00
|
|
|
const SiteThemeProvider: React.FC<ThemeProviderProps<any>> = ({ children, theme, ...rest }) => {
|
2023-05-18 23:53:34 +08:00
|
|
|
const { getPrefixCls, iconPrefixCls } = useContext(ConfigProvider.ConfigContext);
|
2023-04-18 15:29:34 +08:00
|
|
|
const rootPrefixCls = getPrefixCls();
|
2023-05-18 23:53:34 +08:00
|
|
|
const { token } = antdTheme.useToken();
|
|
|
|
|
|
|
|
React.useEffect(() => {
|
2023-09-17 23:32:14 +08:00
|
|
|
ConfigProvider.config({ theme: theme as ThemeConfig });
|
2023-05-18 23:53:34 +08:00
|
|
|
}, [theme]);
|
2023-04-18 15:29:34 +08:00
|
|
|
|
|
|
|
return (
|
2023-07-20 19:27:33 +08:00
|
|
|
<ThemeProvider<NewToken>
|
2023-04-20 10:47:06 +08:00
|
|
|
{...rest}
|
2023-05-18 23:53:34 +08:00
|
|
|
theme={theme}
|
2023-04-18 15:29:34 +08:00
|
|
|
customToken={{
|
|
|
|
headerHeight: 64,
|
2023-09-15 22:03:53 +08:00
|
|
|
bannerHeight: 38,
|
2023-04-18 15:29:34 +08:00
|
|
|
menuItemBorder: 2,
|
|
|
|
mobileMaxWidth: 767.99,
|
|
|
|
siteMarkdownCodeBg: token.colorFillTertiary,
|
|
|
|
antCls: `.${rootPrefixCls}`,
|
|
|
|
iconCls: `.${iconPrefixCls}`,
|
|
|
|
/** 56 */
|
|
|
|
marginFarXS: (token.marginXXL / 6) * 7,
|
|
|
|
/** 80 */
|
|
|
|
marginFarSM: (token.marginXXL / 3) * 5,
|
|
|
|
/** 96 */
|
|
|
|
marginFar: token.marginXXL * 2,
|
|
|
|
codeFamily: `'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace`,
|
2023-08-08 19:48:41 +08:00
|
|
|
contentMarginTop: 40,
|
2023-04-18 15:29:34 +08:00
|
|
|
}}
|
|
|
|
>
|
|
|
|
{children}
|
|
|
|
</ThemeProvider>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default SiteThemeProvider;
|