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
| import assert from 'assert';
| import Plugin from './Plugin';
|
| export default function ({ types }) {
| let plugins = null;
|
| // Only for test
| // eslint-disable-next-line no-underscore-dangle
| global.__clearBabelAntdPlugin = () => {
| plugins = null;
| };
|
| function applyInstance(method, args, context) {
| // eslint-disable-next-line no-restricted-syntax
| for (const plugin of plugins) {
| if (plugin[method]) {
| plugin[method].apply(plugin, [...args, context]);
| }
| }
| }
|
| const Program = {
| enter(path, { opts = {} }) {
| // Init plugin instances once.
| if (!plugins) {
| if (Array.isArray(opts)) {
| plugins = opts.map(
| (
| {
| libraryName,
| libraryDirectory,
| style,
| styleLibraryDirectory,
| customStyleName,
| camel2DashComponentName,
| camel2UnderlineComponentName,
| fileName,
| customName,
| transformToDefaultImport,
| },
| index,
| ) => {
| assert(libraryName, 'libraryName should be provided');
| return new Plugin(
| libraryName,
| libraryDirectory,
| style,
| styleLibraryDirectory,
| customStyleName,
| camel2DashComponentName,
| camel2UnderlineComponentName,
| fileName,
| customName,
| transformToDefaultImport,
| types,
| index,
| );
| },
| );
| } else {
| assert(opts.libraryName, 'libraryName should be provided');
| plugins = [
| new Plugin(
| opts.libraryName,
| opts.libraryDirectory,
| opts.style,
| opts.styleLibraryDirectory,
| opts.customStyleName,
| opts.camel2DashComponentName,
| opts.camel2UnderlineComponentName,
| opts.fileName,
| opts.customName,
| opts.transformToDefaultImport,
| types,
| ),
| ];
| }
| }
| applyInstance('ProgramEnter', arguments, this); // eslint-disable-line
| },
| exit() {
| applyInstance('ProgramExit', arguments, this); // eslint-disable-line
| },
| };
|
| const methods = [
| 'ImportDeclaration',
| 'CallExpression',
| 'MemberExpression',
| 'Property',
| 'VariableDeclarator',
| 'ArrayExpression',
| 'LogicalExpression',
| 'ConditionalExpression',
| 'IfStatement',
| 'ExpressionStatement',
| 'ReturnStatement',
| 'ExportDefaultDeclaration',
| 'BinaryExpression',
| 'NewExpression',
| 'ClassDeclaration',
| 'SwitchStatement',
| 'SwitchCase',
| 'SequenceExpression',
| ];
|
| const ret = {
| visitor: { Program },
| };
|
| // eslint-disable-next-line no-restricted-syntax
| for (const method of methods) {
| ret.visitor[method] = function () {
| // eslint-disable-line
| applyInstance(method, arguments, ret.visitor); // eslint-disable-line
| };
| }
|
| return ret;
| }
|
|