2021-09-01 10:56:50 +08:00
|
|
|
import { kebabCase } from 'lodash';
|
2022-02-18 17:07:23 +08:00
|
|
|
import canUseDom from 'rc-util/lib/Dom/canUseDom';
|
2021-09-01 10:56:50 +08:00
|
|
|
import ConfigProvider from '..';
|
2022-05-10 15:43:29 +08:00
|
|
|
import { resetWarned } from '../../_util/warning';
|
2022-02-18 17:07:23 +08:00
|
|
|
|
|
|
|
let mockCanUseDom = true;
|
|
|
|
|
|
|
|
jest.mock('rc-util/lib/Dom/canUseDom', () => () => mockCanUseDom);
|
2021-09-01 10:56:50 +08:00
|
|
|
|
|
|
|
describe('ConfigProvider.Theme', () => {
|
2022-02-18 17:07:23 +08:00
|
|
|
beforeEach(() => {
|
|
|
|
mockCanUseDom = true;
|
|
|
|
});
|
|
|
|
|
2021-09-01 10:56:50 +08:00
|
|
|
const colorList = ['primaryColor', 'successColor', 'warningColor', 'errorColor', 'infoColor'];
|
|
|
|
|
|
|
|
colorList.forEach(colorName => {
|
|
|
|
it(colorName, () => {
|
|
|
|
ConfigProvider.config({
|
|
|
|
prefixCls: 'bamboo',
|
|
|
|
theme: {
|
|
|
|
[colorName]: '#0000FF',
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
const styles: any[] = Array.from(document.querySelectorAll('style'));
|
2022-02-14 18:51:16 +08:00
|
|
|
const themeStyle = styles.find(style =>
|
|
|
|
style.getAttribute('rc-util-key').includes('-dynamic-theme'),
|
|
|
|
);
|
2021-09-01 10:56:50 +08:00
|
|
|
expect(themeStyle).toBeTruthy();
|
|
|
|
|
|
|
|
expect(themeStyle.innerHTML).toContain(`--bamboo-${kebabCase(colorName)}: rgb(0, 0, 255)`);
|
|
|
|
});
|
|
|
|
});
|
2022-02-18 17:07:23 +08:00
|
|
|
|
|
|
|
it('warning for SSR', () => {
|
|
|
|
resetWarned();
|
|
|
|
|
|
|
|
const errorSpy = jest.spyOn(console, 'error').mockImplementation(() => {});
|
|
|
|
mockCanUseDom = false;
|
|
|
|
expect(canUseDom()).toBeFalsy();
|
|
|
|
|
|
|
|
ConfigProvider.config({
|
|
|
|
theme: {},
|
|
|
|
});
|
|
|
|
|
|
|
|
expect(errorSpy).toHaveBeenCalledWith(
|
|
|
|
'Warning: [antd: ConfigProvider] SSR do not support dynamic theme with css variables.',
|
|
|
|
);
|
|
|
|
errorSpy.mockRestore();
|
|
|
|
});
|
2021-09-01 10:56:50 +08:00
|
|
|
});
|