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';
|
2022-06-24 11:11:42 +08:00
|
|
|
import React from 'react';
|
2021-09-01 10:56:50 +08:00
|
|
|
import ConfigProvider from '..';
|
2022-06-27 21:26:12 +08:00
|
|
|
import { InputNumber } from '../..';
|
2022-06-24 11:11:42 +08:00
|
|
|
import { render } from '../../../tests/utils';
|
2022-06-27 14:25:59 +08:00
|
|
|
import { useToken } from '../../theme';
|
2022-06-29 20:34:00 +08:00
|
|
|
import theme from '../../theme/export';
|
2022-05-10 15:43:29 +08:00
|
|
|
import { resetWarned } from '../../_util/warning';
|
2022-02-18 17:07:23 +08:00
|
|
|
|
2022-10-25 17:04:36 +08:00
|
|
|
const { defaultAlgorithm, darkAlgorithm, defaultAlgorithmV4, darkAlgorithmV4, compactAlgorithm } =
|
|
|
|
theme;
|
2022-06-29 20:34:00 +08:00
|
|
|
|
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();
|
|
|
|
});
|
2022-06-24 11:11:42 +08:00
|
|
|
|
2022-06-29 20:34:00 +08:00
|
|
|
it('algorithm should work', () => {
|
2022-06-24 11:11:42 +08:00
|
|
|
let tokenRef: any;
|
|
|
|
const Demo = () => {
|
|
|
|
const [, token] = useToken();
|
|
|
|
tokenRef = token;
|
|
|
|
return null;
|
|
|
|
};
|
|
|
|
render(
|
2022-08-26 16:05:16 +08:00
|
|
|
<ConfigProvider theme={{ token: { colorPrimary: '#1890ff' }, algorithm: darkAlgorithm }}>
|
2022-06-24 11:11:42 +08:00
|
|
|
<Demo />
|
|
|
|
</ConfigProvider>,
|
|
|
|
);
|
2022-09-15 21:26:04 +08:00
|
|
|
expect(tokenRef?.colorPrimaryText).toBe('#177ddc');
|
2022-06-24 11:11:42 +08:00
|
|
|
});
|
2022-06-27 21:26:12 +08:00
|
|
|
|
2022-08-19 13:57:19 +08:00
|
|
|
it('defaultAlgorithmV4 should work', () => {
|
|
|
|
let tokenRef: any;
|
|
|
|
const Demo = () => {
|
|
|
|
const [, token] = useToken();
|
|
|
|
tokenRef = token;
|
|
|
|
return null;
|
|
|
|
};
|
|
|
|
render(
|
|
|
|
<ConfigProvider theme={{ token: { colorPrimary: '#1890ff' }, algorithm: defaultAlgorithmV4 }}>
|
|
|
|
<Demo />
|
|
|
|
</ConfigProvider>,
|
|
|
|
);
|
|
|
|
expect(tokenRef?.colorPrimaryText).toBe('#1890ff');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('darkAlgorithmV4 should work', () => {
|
|
|
|
let tokenRef: any;
|
|
|
|
const Demo = () => {
|
|
|
|
const [, token] = useToken();
|
|
|
|
tokenRef = token;
|
|
|
|
return null;
|
|
|
|
};
|
|
|
|
render(
|
|
|
|
<ConfigProvider theme={{ token: { colorPrimary: '#1890ff' }, algorithm: darkAlgorithmV4 }}>
|
|
|
|
<Demo />
|
|
|
|
</ConfigProvider>,
|
|
|
|
);
|
|
|
|
expect(tokenRef?.colorPrimaryText).toBe('#177ddc');
|
|
|
|
});
|
|
|
|
|
2022-10-25 17:04:36 +08:00
|
|
|
it('compactAlgorithm should work', () => {
|
|
|
|
let tokenRef: any;
|
|
|
|
const Demo = () => {
|
|
|
|
const [, token] = useToken();
|
|
|
|
tokenRef = token;
|
|
|
|
return null;
|
|
|
|
};
|
|
|
|
render(
|
|
|
|
<ConfigProvider theme={{ token: { sizeBaseStep: 2 }, algorithm: compactAlgorithm }}>
|
|
|
|
<Demo />
|
|
|
|
</ConfigProvider>,
|
|
|
|
);
|
|
|
|
expect(tokenRef).toEqual(
|
|
|
|
expect.objectContaining({
|
|
|
|
sizeXXL: 48,
|
|
|
|
sizeXL: 32,
|
|
|
|
sizeLG: 16,
|
|
|
|
sizeMD: 16,
|
|
|
|
sizeMS: 12,
|
|
|
|
size: 8,
|
|
|
|
sizeSM: 8,
|
|
|
|
sizeXS: 4,
|
|
|
|
sizeXXS: 4,
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
2022-08-16 21:06:25 +08:00
|
|
|
it('should support algorithm array', () => {
|
|
|
|
let tokenRef: any;
|
|
|
|
const Demo = () => {
|
|
|
|
const [, token] = useToken();
|
|
|
|
tokenRef = token;
|
|
|
|
return null;
|
|
|
|
};
|
|
|
|
render(
|
2022-08-26 16:05:16 +08:00
|
|
|
<ConfigProvider
|
|
|
|
theme={{ token: { colorPrimary: '#1890ff' }, algorithm: [defaultAlgorithm, darkAlgorithm] }}
|
|
|
|
>
|
2022-08-16 21:06:25 +08:00
|
|
|
<Demo />
|
|
|
|
</ConfigProvider>,
|
|
|
|
);
|
2022-09-15 21:26:04 +08:00
|
|
|
expect(tokenRef?.colorPrimaryText).toBe('#177ddc');
|
2022-08-16 21:06:25 +08:00
|
|
|
});
|
|
|
|
|
2022-06-27 21:26:12 +08:00
|
|
|
it('overriding component token should work', () => {
|
|
|
|
render(
|
2022-09-15 21:26:04 +08:00
|
|
|
<ConfigProvider theme={{ components: { InputNumber: { handleWidth: 50.1234 } } }}>
|
2022-06-27 21:26:12 +08:00
|
|
|
<InputNumber />
|
|
|
|
</ConfigProvider>,
|
|
|
|
);
|
|
|
|
const dynamicStyles = Array.from(document.querySelectorAll('style[data-css-hash]')).map(
|
|
|
|
item => item?.innerHTML ?? '',
|
|
|
|
);
|
|
|
|
expect(
|
|
|
|
dynamicStyles.some(
|
|
|
|
style => style.includes('.ant-input-number') && style.includes('width:50.1234px'),
|
|
|
|
),
|
|
|
|
).toBeTruthy();
|
|
|
|
});
|
2022-10-18 23:18:11 +08:00
|
|
|
|
|
|
|
it('hashed should be true if not changed', () => {
|
|
|
|
let hashId = 'hashId';
|
|
|
|
|
|
|
|
theme.defaultConfig.hashed = true;
|
|
|
|
|
|
|
|
const Demo = () => {
|
|
|
|
const [, , hash] = useToken();
|
|
|
|
hashId = hash;
|
|
|
|
return null;
|
|
|
|
};
|
|
|
|
|
|
|
|
render(
|
|
|
|
<ConfigProvider theme={{ components: { InputNumber: { handleWidth: 50.1234 } } }}>
|
|
|
|
<Demo />
|
|
|
|
</ConfigProvider>,
|
|
|
|
);
|
|
|
|
|
|
|
|
expect(hashId).not.toBe('');
|
|
|
|
|
|
|
|
theme.defaultConfig.hashed = false;
|
|
|
|
});
|
2021-09-01 10:56:50 +08:00
|
|
|
});
|