You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.3 KiB
55 lines
1.3 KiB
import useMemo from 'rc-util/lib/hooks/useMemo';
|
|
import shallowEqual from 'shallowequal';
|
|
import type { OverrideToken } from '../../theme/interface';
|
|
import type { ThemeConfig } from '../context';
|
|
|
|
export default function useTheme(
|
|
theme?: ThemeConfig,
|
|
parentTheme?: ThemeConfig,
|
|
): ThemeConfig | undefined {
|
|
const themeConfig = theme || {};
|
|
const parentThemeConfig = parentTheme || {};
|
|
|
|
const mergedTheme = useMemo<ThemeConfig | undefined>(
|
|
() => {
|
|
if (!theme) {
|
|
return parentTheme;
|
|
}
|
|
|
|
// Override
|
|
const mergedOverride = {
|
|
...parentThemeConfig.components,
|
|
};
|
|
|
|
Object.keys(theme.components || {}).forEach((componentName: keyof OverrideToken) => {
|
|
mergedOverride[componentName] = {
|
|
...mergedOverride[componentName],
|
|
...theme.components![componentName],
|
|
} as any;
|
|
});
|
|
|
|
// Base token
|
|
const merged = {
|
|
...parentThemeConfig,
|
|
...themeConfig,
|
|
|
|
token: {
|
|
...parentThemeConfig.token,
|
|
...themeConfig.token,
|
|
},
|
|
override: mergedOverride,
|
|
};
|
|
|
|
return merged;
|
|
},
|
|
[themeConfig, parentThemeConfig],
|
|
(prev, next) =>
|
|
prev.some((prevTheme, index) => {
|
|
const nextTheme = next[index];
|
|
|
|
return !shallowEqual(prevTheme, nextTheme);
|
|
}),
|
|
);
|
|
|
|
return mergedTheme;
|
|
}
|
|
|