-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathreducer-args-acc-to-val-acc.js
executable file
·164 lines (139 loc) · 4.1 KB
/
reducer-args-acc-to-val-acc.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
const util = require("util");
const _ = require("lodash");
module.exports = (file, api) => {
const j = api.jscodeshift;
const root = j(file.source);
function replaceWith(target, newObject) {
Object.keys(target).forEach(key => {
// eslint-disable-next-line no-param-reassign
delete target[key];
});
Object.assign(target, newObject);
}
function addValueParam(node) {
const accReferences = j(node.value.body)
.find(j.Identifier, {
name: "acc"
})
.size();
const injectAcc = node.value.params.length === 2 || accReferences > 0;
const newParams = [
{
type: "Identifier",
name: "input"
}
];
// eslint-disable-next-line no-param-reassign
node.value.params = injectAcc
? newParams.concat(node.value.params)
: newParams;
}
function replaceAccValueReferences(node) {
// find all references to acc inside the function
j(node)
.find(j.MemberExpression, {
object: {
object: {
name: "acc"
},
property: {
name: "value"
}
}
})
.forEach(nodeItem => {
// eslint-disable-next-line no-param-reassign
nodeItem.value.object = {
type: "Identifier",
name: "input"
};
});
// find all references to acc inside the function
j(node)
.find(j.MemberExpression, {
object: {
name: "acc"
},
property: {
name: "value"
}
})
.forEach(noteIdem => {
replaceWith(noteIdem.value, {
type: "Identifier",
name: "input"
});
});
return node.value;
}
function checkInputVariable(node) {
j(node)
.find(j.Identifier, {
name: "input"
})
.forEach(nodePath => {
const parentNode = nodePath.parentPath.value;
if (parentNode.type !== "MemberExpression") {
const nodeStart = parentNode.loc.start;
throw Error(
util.format(
"Refactor Reducer arguments (acc) -> (input, acc) Failed.",
"\nA variable with name `input` already exists in the scope of a reducer function.",
`\n\n${j(node).toSource()}`,
`\n^------- ${file.path}:${nodeStart.line}:${nodeStart.column}`,
"\n\nTry refactoring this block of code to remove any variable of name 'input' before running the codemod.\n\n"
)
);
}
});
}
function refactorReducer(node) {
checkInputVariable(node);
replaceAccValueReferences(node);
addValueParam(node);
}
function isReducer(node) {
const firstParam = _.get(node, "params[0]", {});
const isAcc = firstParam.type === "Identifier" && firstParam.name === "acc";
if (!isAcc) {
return false;
}
if (node.params.length === 1) {
return true;
}
// reducers my only have max 2 arguments
if (node.params.length > 2) {
return false;
}
const secondParam = _.get(node, "params[1]", {});
const secondParamIsCallback = j(node.body)
.find(j.CallExpression, nodeItem => {
return nodeItem.callee.name === secondParam.name;
})
.size();
if (secondParamIsCallback) {
return true;
}
return false;
}
function filterNonReducers(nodePath) {
// we want to filter out any function that is called by dataPoint.transform(a,b).then(acc => {})
const grandParent = _.get(nodePath, "parentPath.parentPath.value", {});
const isThenHandlerFromTransform =
grandParent.type === "CallExpression" &&
_.get(grandParent, "callee.object.callee.property.name") ===
"transform" &&
_.get(grandParent, "callee.property.name") === "then";
return !isThenHandlerFromTransform;
}
function refactorReducerMatches(nodeType) {
root
.find(nodeType, isReducer)
.filter(filterNonReducers)
.forEach(refactorReducer);
}
refactorReducerMatches(j.FunctionDeclaration);
refactorReducerMatches(j.ArrowFunctionExpression);
refactorReducerMatches(j.FunctionExpression);
return root.toSource();
};