generated from react-component/trigger
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathextraCssVarPrefixCls.test.tsx
More file actions
137 lines (123 loc) · 3.4 KB
/
extraCssVarPrefixCls.test.tsx
File metadata and controls
137 lines (123 loc) · 3.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
import React from 'react';
import { render } from '@testing-library/react';
import { createCache, StyleProvider } from '@ant-design/cssinjs';
import { genStyleUtils } from '../src';
interface TestTokenMap {
TestComponent: {
colorPrimary?: string;
fontSize?: number;
};
}
describe('extraCssVarPrefixCls', () => {
const mockConfig = {
usePrefix: jest.fn().mockReturnValue({
rootPrefixCls: 'ant',
iconPrefixCls: 'anticon',
}),
useToken: jest.fn().mockReturnValue({
theme: {
id: 'test',
} as any,
realToken: {
colorPrimary: '#1890ff',
fontSize: 14,
TestComponent: {
colorPrimary: '#ff0000',
fontSize: 16,
},
},
hashId: 'css-dev-only-do-not-override-abc123',
token: {
colorPrimary: '#1890ff',
fontSize: 14,
TestComponent: {
colorPrimary: '#ff0000',
fontSize: 16,
},
},
cssVar: {
prefix: 'ant',
key: 'test',
},
}),
useCSP: jest.fn().mockReturnValue({ nonce: 'nonce' }),
getResetStyles: jest.fn().mockReturnValue([]),
layer: {
name: 'test',
dependencies: ['parent'],
},
};
const { genStyleHooks } = genStyleUtils<TestTokenMap, any, any>(mockConfig);
beforeEach(() => {
document.head.innerHTML = '';
});
it('should inject CSS vars for extraCssVarPrefixCls', () => {
const hooks = genStyleHooks(
'TestComponent',
(token) => ({
[`${token.componentCls}`]: {
color: token.colorPrimary,
fontSize: token.fontSize,
},
}),
() => ({
colorPrimary: '#ff0000',
fontSize: 16,
}),
{
extraCssVarPrefixCls: ['custom-a', 'custom-b'],
},
);
const TestComponent = () => {
const [hashId, cssVarCls] = hooks('test-prefix');
const className = [hashId, cssVarCls].filter(Boolean).join(' ');
return <div className={className}>{hashId}</div>;
};
render(
<StyleProvider cache={createCache()}>
<TestComponent />
</StyleProvider>,
);
const totalStyle = Array.from(document.querySelectorAll('style'))
.map((el) => el.textContent)
.join('\n');
expect(totalStyle).toContain('.custom-a');
expect(totalStyle).toContain('.custom-b');
});
it('should support function type for extraCssVarPrefixCls', () => {
const hooks = genStyleHooks(
'TestComponent',
(token) => ({
[`${token.componentCls}`]: {
color: token.colorPrimary,
fontSize: token.fontSize,
},
}),
() => ({
colorPrimary: '#ff0000',
fontSize: 16,
}),
{
extraCssVarPrefixCls: ({ prefixCls, rootCls }) => [
`${prefixCls}-container`,
`${rootCls}-wrapper`,
],
},
);
const TestComponent = () => {
const [hashId, cssVarCls] = hooks('custom-list', 'custom');
const className = [hashId, cssVarCls].filter(Boolean).join(' ');
return <div className={className}>{hashId}</div>;
};
render(
<StyleProvider cache={createCache()}>
<TestComponent />
</StyleProvider>,
);
const totalStyle = Array.from(document.querySelectorAll('style'))
.map((el) => el.textContent)
.join('\n');
expect(totalStyle).toContain('.custom-list-container');
expect(totalStyle).toContain('.custom-wrapper');
});
});