-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbutton-destructive.js
266 lines (236 loc) · 6.75 KB
/
button-destructive.js
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
/**
* Convert all <Button buttonType="destructive"/> to <Button buttonType="primary" destructive />
*/
import registerMethods from "../registerMethods";
function transformer(fileInfo, api, options) {
const j = api.jscodeshift;
registerMethods(j);
const addDestructiveProp = (attribute) => {
attribute.insertAfter(j.jsxIdentifier("destructive"));
};
/*
<Button buttonType="destructive" />
*/
const LiteralReplacement = (attribute) => {
if (attribute.find(j.Literal, { value: "destructive" }).size()) {
attribute.replaceWith(
j.jsxAttribute(j.jsxIdentifier("buttonType"), j.literal("primary"))
);
addDestructiveProp(attribute);
return true;
}
};
/*
const buttonType = "destructive";
export default () => <Button buttonType={buttonType} />;
*/
const JSXExpressionVariableReplacement = (IdentifierExpression) => {
const result = IdentifierExpression.findVariableDeclaration(
IdentifierExpression.get("expression").value.name,
{
type: "Literal",
value: "destructive",
}
);
if (result.size()) {
result.get("init").replace(j.literal("primary"));
return true;
}
};
/*
export const one = (buttonType = "destructive") => {
return <Button buttonType={buttonType} />;
}
*/
const JSXExpressionAssignmentReplacement = (IdentifierExpression) => {
const result = IdentifierExpression.findAssignmentPattern({
type: "Literal",
value: "destructive",
});
if (result.size()) {
result.get("right").replace(j.literal("primary"));
return true;
}
};
/*
<Button buttonType={buttonType}/>
*/
const JSXExpressionReplacement = (attribute) => {
const IdentifierExpression = attribute.find(j.JSXExpressionContainer, {
expression: { type: "Identifier" },
});
if (IdentifierExpression.size() === 0) {
return false;
}
const didUpdate =
JSXExpressionVariableReplacement(IdentifierExpression) ||
JSXExpressionAssignmentReplacement(IdentifierExpression);
if (didUpdate) {
addDestructiveProp(attribute);
}
return didUpdate;
};
/*
<Button {...{{buttonType: 'destructive'}}} />
*/
const ObjectExpressionsLiteralReplacement = (attribute) => {
const results = attribute.find(j.Property, {
kind: "init",
key: { name: "buttonType" },
value: { value: "destructive" },
});
if (results.size()) {
results.replaceWith(
j.property("init", j.identifier("buttonType"), j.literal("primary"))
);
results.insertAfter(
j.property.from({
kind: "init",
key: j.identifier("destructive"),
value: j.literal(true),
})
);
return true;
}
};
/*
<Button {...{buttonType}} />
<Button {...{buttonType: buttonType}} />
*/
const ObjectExpressionsIdentifierReplacement = (argument) => {
const results = argument.find(j.Property, {
kind: "init",
key: { name: "buttonType" },
value: { type: "Identifier" },
});
if (results.size()) {
const literals = results.findVariableDeclaration(
results.get("value").value.name,
{
type: "Literal",
value: "destructive",
}
);
if (literals.size()) {
literals.get("init").replace(j.literal("primary"));
results.insertAfter(
j.property.from({
kind: "init",
key: j.identifier("destructive"),
value: j.literal(true),
})
);
return true;
}
}
};
/*
<Button {...{}} />
*/
const JSXSpreadAttributeObjectReplacement = (button) => {
let didUpdate = false;
const objectExpressions = button.find(j.JSXSpreadAttribute, {
argument: {
type: "ObjectExpression",
},
});
objectExpressions.forEach((path) => {
const attribute = j(path);
const result =
ObjectExpressionsLiteralReplacement(attribute) ||
ObjectExpressionsIdentifierReplacement(attribute);
didUpdate = didUpdate ? true : result;
});
return didUpdate;
};
/*
<Button {...props} />
*/
const JSXSpreadAttributeIdentifierReplacement = (button) => {
let didUpdate = false;
const identifiers = button.find(j.JSXSpreadAttribute, {
argument: {
type: "Identifier",
},
});
identifiers.forEach((path) => {
const attribute = j(path);
const expressionName = attribute.get("argument", "name").value;
const declarationScope = attribute.findDeclarationScope(expressionName);
const declaration = j(declarationScope.path)
.find(j.VariableDeclarator, {
id: {
type: "Identifier",
name: expressionName,
},
init: {
type: "ObjectExpression",
},
})
.filter((path) => path.scope === declarationScope);
const results = declaration.find(j.Property, {
kind: "init",
key: { name: "buttonType" },
value: { value: "destructive" },
});
if (results.size()) {
results.replaceWith(
j.property("init", j.identifier("buttonType"), j.literal("primary"))
);
results.insertAfter(
j.property.from({
kind: "init",
key: j.identifier("destructive"),
value: j.literal(true),
})
);
didUpdate = true;
}
});
return didUpdate;
};
/*
<Button buttonType= />
*/
const JSXAttributeReplacement = (button) => {
const typeAttributes = button.find(j.JSXAttribute, {
name: {
type: "JSXIdentifier",
name: "buttonType",
},
});
// Remove all but the last buttonType prop
// e.g. <Button buttonType="primary" buttonType="secondary" />
typeAttributes.trimLeft();
const attribute = typeAttributes.last();
return LiteralReplacement(attribute) || JSXExpressionReplacement(attribute);
};
const root = j(fileInfo.source);
const buttons = root.findJSXElementsByImport(
"carbon-react/lib/components/button"
);
if (buttons.size() === 0) {
// If the Component is not imported, skip this file
return;
}
let didUpdateFile = false;
buttons.forEach((path) => {
const button = j(path);
const didAttributeReplacement = JSXAttributeReplacement(button);
const didSpreadAttributeReplacement = JSXSpreadAttributeIdentifierReplacement(
button
);
const didSpreadObjectReplacement = JSXSpreadAttributeObjectReplacement(
button
);
let didUpdateButton =
didAttributeReplacement ||
didSpreadAttributeReplacement ||
didSpreadObjectReplacement;
didUpdateFile = didUpdateFile ? true : didUpdateButton;
});
if (didUpdateFile) {
return root.toSource();
}
}
module.exports = transformer;