-
Notifications
You must be signed in to change notification settings - Fork 292
/
Copy pathReact-DOM-to-react-dom-factories.js
177 lines (153 loc) · 5.31 KB
/
React-DOM-to-react-dom-factories.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
/**
* Copyright 2015-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
*/
'use strict';
module.exports = function(file, api, options) {
const j = api.jscodeshift;
const printOptions = options.printOptions || { quote: 'single' };
const root = j(file.source);
let hasModifications;
const DOMModuleName = 'DOM';
/**
* Replaces 'DOM' with 'createElement' in places where we grab 'DOM' out of
* 'React' with destructuring.
* Note that this only picks up 'DOM' when required from React or
* require('react')
*/
const replaceDestructuredDOMStatement = (j, root) => {
let hasModifications = false;
//---------
// First update import statments. eg:
// import {
// DOM,
// foo,
// } from 'react';
root
.find(j.ImportDeclaration)
.filter(
path =>
path.node.specifiers.filter(
specifier =>
specifier.imported && specifier.imported.name === DOMModuleName
).length > 0 && path.node.source.value === 'react'
)
.forEach(path => {
hasModifications = true;
// Replace the DOM key with 'createElement'
path.node.specifiers = path.node.specifiers.map(specifier => {
if (specifier.imported && specifier.imported.name === DOMModuleName) {
return j.importSpecifier(j.identifier('createElement'));
} else {
return specifier;
}
});
});
//---------
// Next update require statments.
// This matches both
// const {
// Component,
// DOM,
// } = React;
// and
// const {
// Component,
// DOM,
// } = require('react');
root
.find(j.ObjectPattern)
.filter(
path =>
path.parent.node.init &&
// matches '} = React;'
(path.parent.node.init.name === 'React' ||
// matches "} = require('react');"
(path.parent.node.init.type === 'CallExpression' &&
path.parent.node.init.callee.name === 'require' &&
path.parent.node.init.arguments[0].value === 'react')) &&
path.node.properties.some(property => {
return property.key.name === DOMModuleName;
})
)
.forEach(path => {
hasModifications = true;
// Replace the DOM key with 'createElement'
path.node.properties = path.node.properties.map(property => {
if (property.key.name === DOMModuleName) {
return j.identifier('createElement');
} else {
return property;
}
});
});
return hasModifications;
};
hasModifications =
replaceDestructuredDOMStatement(j, root) || hasModifications;
if (hasModifications) {
// if we 'hasModifications' then we found and replaced a reference to
// '{DOM} = React;' or '{DOM} = require('react');'
// In this case we need to update 'DOM.<element>' syntax
/**
* Update cases where DOM.div is being called
* eg 'foo = DOM.div('a'...'
* replace with 'foo = createElement('div', 'a'...'
*/
function replaceDOMReferences(j, root) {
let hasModifications = false;
const isDOMIdentifier = path =>
path.node.name === DOMModuleName &&
path.parent.parent.node.type === 'CallExpression';
root
.find(j.Identifier)
.filter(isDOMIdentifier)
.forEach(path => {
hasModifications = true;
const DOMargs = path.parent.parent.node.arguments;
const DOMFactoryPath = path.parent.node.property;
const DOMFactoryType = DOMFactoryPath.name;
// DOM.div(... -> createElement(...
j(path.parent).replaceWith(j.identifier('createElement'));
// createElement(... -> createElement('div', ...
DOMargs.unshift(j.literal(DOMFactoryType));
});
return hasModifications;
}
hasModifications = replaceDOMReferences(j, root) || hasModifications;
}
/**
* Update React.DOM references
* eg 'foo = React.DOM.div('a'...'
* replace with 'foo = React.createElement('div', 'a'...'
*/
function replaceReactDOMReferences(j, root) {
let hasModifications = false;
// matches 'React.DOM'
const isReactDOMIdentifier = path =>
path.node.name === DOMModuleName &&
(path.parent.node.type === 'MemberExpression' &&
path.parent.node.object.name === 'React');
root
.find(j.Identifier)
.filter(isReactDOMIdentifier)
.forEach(path => {
hasModifications = true;
const DOMargs = path.parent.parent.parent.node.arguments;
const DOMFactoryPath = path.parent.parent.node.property;
const DOMFactoryType = DOMFactoryPath.name;
// React.DOM.div(... -> React.DOM.createElement(...
path.parent.parent.node.property = j.identifier('createElement');
// React.DOM.createElement(... -> React.createElement(...
j(path.parent).replaceWith(j.identifier('React'));
// React.createElement(... -> React.createElement('div'...
DOMargs.unshift(j.literal(DOMFactoryType));
});
return hasModifications;
}
hasModifications = replaceReactDOMReferences(j, root) || hasModifications;
return hasModifications ? root.toSource(printOptions) : null;
};