react-code-locator 0.1.9 → 0.1.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +49 -44
- package/dist/babel.cjs +427 -40
- package/dist/babel.cjs.map +1 -1
- package/dist/babel.d.cts +12 -1
- package/dist/babel.d.ts +12 -1
- package/dist/babel.js +424 -29
- package/dist/babel.js.map +1 -1
- package/dist/babelInjectComponentSource.cjs +403 -38
- package/dist/babelInjectComponentSource.cjs.map +1 -1
- package/dist/babelInjectComponentSource.d.cts +3 -4
- package/dist/babelInjectComponentSource.d.ts +3 -4
- package/dist/babelInjectComponentSource.js +403 -28
- package/dist/babelInjectComponentSource.js.map +1 -1
- package/dist/client-sm5wi0uT.d.cts +15 -0
- package/dist/client-sm5wi0uT.d.ts +15 -0
- package/dist/client.cjs +160 -28
- package/dist/client.cjs.map +1 -1
- package/dist/client.d.cts +1 -14
- package/dist/client.d.ts +1 -14
- package/dist/client.js +160 -28
- package/dist/client.js.map +1 -1
- package/dist/esbuild.cjs +615 -0
- package/dist/esbuild.cjs.map +1 -0
- package/dist/esbuild.d.cts +25 -0
- package/dist/esbuild.d.ts +25 -0
- package/dist/esbuild.js +588 -0
- package/dist/esbuild.js.map +1 -0
- package/dist/index.cjs +827 -30
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +9 -1
- package/dist/index.d.ts +9 -1
- package/dist/index.js +814 -29
- package/dist/index.js.map +1 -1
- package/dist/sourceAdapter-DLWo_ABo.d.cts +15 -0
- package/dist/sourceAdapter-DLWo_ABo.d.ts +15 -0
- package/dist/swc.cjs +588 -0
- package/dist/swc.cjs.map +1 -0
- package/dist/swc.d.cts +29 -0
- package/dist/swc.d.ts +29 -0
- package/dist/swc.js +559 -0
- package/dist/swc.js.map +1 -0
- package/dist/vite.cjs +525 -84
- package/dist/vite.cjs.map +1 -1
- package/dist/vite.d.cts +20 -6
- package/dist/vite.d.ts +20 -6
- package/dist/vite.js +520 -72
- package/dist/vite.js.map +1 -1
- package/dist/webpackRuntimeEntry.cjs +160 -28
- package/dist/webpackRuntimeEntry.cjs.map +1 -1
- package/dist/webpackRuntimeEntry.js +160 -28
- package/dist/webpackRuntimeEntry.js.map +1 -1
- package/package.json +12 -1
package/dist/babel.cjs
CHANGED
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var __create = Object.create;
|
|
3
2
|
var __defProp = Object.defineProperty;
|
|
4
3
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
4
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
-
var __getProtoOf = Object.getPrototypeOf;
|
|
7
5
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
6
|
var __export = (target, all) => {
|
|
9
7
|
for (var name in all)
|
|
@@ -17,34 +15,135 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
17
15
|
}
|
|
18
16
|
return to;
|
|
19
17
|
};
|
|
20
|
-
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
21
|
-
// If the importer is in node compatibility mode or this is not an ESM
|
|
22
|
-
// file that has been converted to a CommonJS file using a Babel-
|
|
23
|
-
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
24
|
-
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
25
|
-
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
26
|
-
mod
|
|
27
|
-
));
|
|
28
18
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
29
19
|
|
|
30
20
|
// src/babel.ts
|
|
31
21
|
var babel_exports = {};
|
|
32
22
|
__export(babel_exports, {
|
|
33
|
-
babelInjectComponentSource: () => babelInjectComponentSource
|
|
23
|
+
babelInjectComponentSource: () => babelInjectComponentSource,
|
|
24
|
+
babelSourceAdapter: () => babelSourceAdapter,
|
|
25
|
+
createBabelSourceAdapter: () => createBabelSourceAdapter
|
|
34
26
|
});
|
|
35
27
|
module.exports = __toCommonJS(babel_exports);
|
|
36
28
|
|
|
37
29
|
// src/babelInjectComponentSource.ts
|
|
38
|
-
var import_node_path = __toESM(require("path"), 1);
|
|
39
30
|
var import_core = require("@babel/core");
|
|
40
31
|
|
|
41
32
|
// src/constants.ts
|
|
42
33
|
var SOURCE_PROP = "__componentSourceLoc";
|
|
34
|
+
var JSX_SOURCE_PROP = "$componentSourceLoc";
|
|
35
|
+
var JSX_SOURCE_REGISTRY_SYMBOL = "react-code-locator.jsxSourceRegistry";
|
|
36
|
+
|
|
37
|
+
// src/sourceMetadata.ts
|
|
38
|
+
function normalizeSlashes(value) {
|
|
39
|
+
return value.replace(/\\/g, "/");
|
|
40
|
+
}
|
|
41
|
+
function trimTrailingSlash(value) {
|
|
42
|
+
return value.replace(/\/+$/, "");
|
|
43
|
+
}
|
|
44
|
+
function splitPathSegments(value) {
|
|
45
|
+
return normalizeSlashes(value).split("/").filter(Boolean);
|
|
46
|
+
}
|
|
47
|
+
function computeRelativePath(fromPath, toPath) {
|
|
48
|
+
const fromSegments = splitPathSegments(fromPath);
|
|
49
|
+
const toSegments = splitPathSegments(toPath);
|
|
50
|
+
let sharedIndex = 0;
|
|
51
|
+
while (sharedIndex < fromSegments.length && sharedIndex < toSegments.length && fromSegments[sharedIndex] === toSegments[sharedIndex]) {
|
|
52
|
+
sharedIndex += 1;
|
|
53
|
+
}
|
|
54
|
+
const upSegments = new Array(Math.max(0, fromSegments.length - sharedIndex)).fill("..");
|
|
55
|
+
const downSegments = toSegments.slice(sharedIndex);
|
|
56
|
+
const relativeSegments = [...upSegments, ...downSegments];
|
|
57
|
+
return relativeSegments.length > 0 ? relativeSegments.join("/") : ".";
|
|
58
|
+
}
|
|
59
|
+
function normalizeProjectRoot(projectRoot) {
|
|
60
|
+
if (projectRoot) {
|
|
61
|
+
return trimTrailingSlash(normalizeSlashes(projectRoot));
|
|
62
|
+
}
|
|
63
|
+
if (typeof process !== "undefined" && typeof process.cwd === "function") {
|
|
64
|
+
return trimTrailingSlash(normalizeSlashes(process.cwd()));
|
|
65
|
+
}
|
|
66
|
+
return "";
|
|
67
|
+
}
|
|
68
|
+
function toRelativeSource(filename, loc, projectRoot) {
|
|
69
|
+
if (!filename || !loc) {
|
|
70
|
+
return null;
|
|
71
|
+
}
|
|
72
|
+
const root = normalizeProjectRoot(projectRoot);
|
|
73
|
+
const normalizedFilename = normalizeSlashes(filename);
|
|
74
|
+
const relPath = root && normalizedFilename.startsWith(`${root}/`) ? normalizedFilename.slice(root.length + 1) : root ? computeRelativePath(root, normalizedFilename) : normalizedFilename;
|
|
75
|
+
return `${relPath}:${loc.line}:${loc.column + 1}`;
|
|
76
|
+
}
|
|
77
|
+
function isProjectLocalFile(filename, projectRoot) {
|
|
78
|
+
if (!filename) {
|
|
79
|
+
return false;
|
|
80
|
+
}
|
|
81
|
+
const root = normalizeProjectRoot(projectRoot);
|
|
82
|
+
const normalizedFilename = normalizeSlashes(filename);
|
|
83
|
+
if (!root) {
|
|
84
|
+
return !normalizedFilename.startsWith("../") && !normalizedFilename.startsWith("/") && !/^[A-Za-z]:\//.test(normalizedFilename);
|
|
85
|
+
}
|
|
86
|
+
if (normalizedFilename.startsWith(`${root}/`) || normalizedFilename === root) {
|
|
87
|
+
return true;
|
|
88
|
+
}
|
|
89
|
+
const relativePath = computeRelativePath(root, normalizedFilename);
|
|
90
|
+
return !relativePath.startsWith("../");
|
|
91
|
+
}
|
|
92
|
+
function isExternalToProjectRoot(filename, projectRoot) {
|
|
93
|
+
return !isProjectLocalFile(filename, projectRoot);
|
|
94
|
+
}
|
|
43
95
|
|
|
44
96
|
// src/babelInjectComponentSource.ts
|
|
97
|
+
var SOURCE_PROP_LOCAL = "_componentSourceLoc";
|
|
98
|
+
var SOURCE_PROPS_REST = "__reactCodeLocatorProps";
|
|
45
99
|
function isComponentName(name) {
|
|
46
100
|
return /^[A-Z]/.test(name);
|
|
47
101
|
}
|
|
102
|
+
function isCustomComponentTag(name) {
|
|
103
|
+
if (import_core.types.isJSXIdentifier(name)) {
|
|
104
|
+
return isComponentName(name.name);
|
|
105
|
+
}
|
|
106
|
+
if (import_core.types.isJSXMemberExpression(name)) {
|
|
107
|
+
return true;
|
|
108
|
+
}
|
|
109
|
+
return false;
|
|
110
|
+
}
|
|
111
|
+
function isIntrinsicElementTag(name) {
|
|
112
|
+
return import_core.types.isJSXIdentifier(name) && /^[a-z]/.test(name.name);
|
|
113
|
+
}
|
|
114
|
+
function isElementFactoryIdentifier(name) {
|
|
115
|
+
return name === "jsx" || name === "jsxs" || name === "jsxDEV" || name === "_jsx" || name === "_jsxs" || name === "_jsxDEV" || name === "createElement";
|
|
116
|
+
}
|
|
117
|
+
function isReactElementFactoryCall(pathNode) {
|
|
118
|
+
const callee = pathNode.node.callee;
|
|
119
|
+
if (import_core.types.isIdentifier(callee)) {
|
|
120
|
+
return isElementFactoryIdentifier(callee.name);
|
|
121
|
+
}
|
|
122
|
+
return import_core.types.isMemberExpression(callee) && import_core.types.isIdentifier(callee.object, { name: "React" }) && import_core.types.isIdentifier(callee.property, { name: "createElement" });
|
|
123
|
+
}
|
|
124
|
+
function getRootJsxIdentifierName(name) {
|
|
125
|
+
if (import_core.types.isJSXIdentifier(name)) {
|
|
126
|
+
return name.name;
|
|
127
|
+
}
|
|
128
|
+
if (import_core.types.isJSXMemberExpression(name)) {
|
|
129
|
+
return getRootJsxIdentifierName(name.object);
|
|
130
|
+
}
|
|
131
|
+
return null;
|
|
132
|
+
}
|
|
133
|
+
function isStyledModuleImport(binding) {
|
|
134
|
+
if (!binding) {
|
|
135
|
+
return false;
|
|
136
|
+
}
|
|
137
|
+
if (!binding.path.isImportSpecifier() && !binding.path.isImportDefaultSpecifier() && !binding.path.isImportNamespaceSpecifier()) {
|
|
138
|
+
return false;
|
|
139
|
+
}
|
|
140
|
+
const source = binding.path.parentPath.isImportDeclaration() ? binding.path.parentPath.node.source.value : null;
|
|
141
|
+
if (typeof source !== "string") {
|
|
142
|
+
return false;
|
|
143
|
+
}
|
|
144
|
+
const normalized = source.replace(/\\/g, "/");
|
|
145
|
+
return normalized === "./styled" || normalized === "../styled" || normalized.endsWith("/styled");
|
|
146
|
+
}
|
|
48
147
|
function isSupportedComponentInit(node) {
|
|
49
148
|
if (!node) {
|
|
50
149
|
return false;
|
|
@@ -60,13 +159,104 @@ function isSupportedComponentInit(node) {
|
|
|
60
159
|
}
|
|
61
160
|
return import_core.types.isMemberExpression(node.callee) && import_core.types.isIdentifier(node.callee.object, { name: "React" }) && import_core.types.isIdentifier(node.callee.property) && (node.callee.property.name === "memo" || node.callee.property.name === "forwardRef");
|
|
62
161
|
}
|
|
63
|
-
function
|
|
162
|
+
function hasSourcePropBinding(pattern) {
|
|
163
|
+
return pattern.properties.some((property) => {
|
|
164
|
+
if (!import_core.types.isObjectProperty(property)) {
|
|
165
|
+
return false;
|
|
166
|
+
}
|
|
167
|
+
return import_core.types.isIdentifier(property.key) && property.key.name === JSX_SOURCE_PROP;
|
|
168
|
+
});
|
|
169
|
+
}
|
|
170
|
+
function injectSourcePropBinding(pattern) {
|
|
171
|
+
if (hasSourcePropBinding(pattern)) {
|
|
172
|
+
return;
|
|
173
|
+
}
|
|
174
|
+
const sourceBinding = import_core.types.objectProperty(
|
|
175
|
+
import_core.types.identifier(JSX_SOURCE_PROP),
|
|
176
|
+
import_core.types.identifier(SOURCE_PROP_LOCAL),
|
|
177
|
+
false,
|
|
178
|
+
false
|
|
179
|
+
);
|
|
180
|
+
const restIndex = pattern.properties.findIndex(
|
|
181
|
+
(property) => import_core.types.isRestElement(property)
|
|
182
|
+
);
|
|
183
|
+
if (restIndex === -1) {
|
|
184
|
+
pattern.properties.push(sourceBinding);
|
|
185
|
+
return;
|
|
186
|
+
}
|
|
187
|
+
pattern.properties.splice(restIndex, 0, sourceBinding);
|
|
188
|
+
}
|
|
189
|
+
function injectSourcePropIntoIdentifierParam(node, param) {
|
|
190
|
+
if (!import_core.types.isBlockStatement(node.body)) {
|
|
191
|
+
node.body = import_core.types.blockStatement([import_core.types.returnStatement(node.body)]);
|
|
192
|
+
}
|
|
193
|
+
const alreadyInjected = node.body.body.some(
|
|
194
|
+
(statement) => import_core.types.isVariableDeclaration(statement) && statement.declarations.some(
|
|
195
|
+
(declaration) => import_core.types.isIdentifier(declaration.id) && declaration.id.name === SOURCE_PROPS_REST
|
|
196
|
+
)
|
|
197
|
+
);
|
|
198
|
+
if (alreadyInjected) {
|
|
199
|
+
return;
|
|
200
|
+
}
|
|
201
|
+
node.body.body.unshift(
|
|
202
|
+
import_core.types.variableDeclaration("const", [
|
|
203
|
+
import_core.types.variableDeclarator(
|
|
204
|
+
import_core.types.objectPattern([
|
|
205
|
+
import_core.types.objectProperty(
|
|
206
|
+
import_core.types.identifier(JSX_SOURCE_PROP),
|
|
207
|
+
import_core.types.identifier(SOURCE_PROP_LOCAL),
|
|
208
|
+
false,
|
|
209
|
+
false
|
|
210
|
+
),
|
|
211
|
+
import_core.types.restElement(import_core.types.identifier(SOURCE_PROPS_REST))
|
|
212
|
+
]),
|
|
213
|
+
param
|
|
214
|
+
)
|
|
215
|
+
]),
|
|
216
|
+
import_core.types.expressionStatement(
|
|
217
|
+
import_core.types.assignmentExpression(
|
|
218
|
+
"=",
|
|
219
|
+
import_core.types.identifier(param.name),
|
|
220
|
+
import_core.types.identifier(SOURCE_PROPS_REST)
|
|
221
|
+
)
|
|
222
|
+
)
|
|
223
|
+
);
|
|
224
|
+
}
|
|
225
|
+
function injectSourcePropIntoFunctionParams(node) {
|
|
226
|
+
const firstParam = node.params[0];
|
|
227
|
+
if (!firstParam) {
|
|
228
|
+
return;
|
|
229
|
+
}
|
|
230
|
+
if (import_core.types.isObjectPattern(firstParam)) {
|
|
231
|
+
injectSourcePropBinding(firstParam);
|
|
232
|
+
return;
|
|
233
|
+
}
|
|
234
|
+
if (import_core.types.isIdentifier(firstParam)) {
|
|
235
|
+
injectSourcePropIntoIdentifierParam(node, firstParam);
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
function injectSourcePropIntoExpression(node) {
|
|
239
|
+
if (!node) {
|
|
240
|
+
return;
|
|
241
|
+
}
|
|
242
|
+
if (import_core.types.isFunctionExpression(node) || import_core.types.isArrowFunctionExpression(node)) {
|
|
243
|
+
injectSourcePropIntoFunctionParams(node);
|
|
244
|
+
return;
|
|
245
|
+
}
|
|
246
|
+
if (!import_core.types.isCallExpression(node)) {
|
|
247
|
+
return;
|
|
248
|
+
}
|
|
249
|
+
const firstArg = node.arguments[0];
|
|
250
|
+
if (firstArg && !import_core.types.isSpreadElement(firstArg) && (import_core.types.isFunctionExpression(firstArg) || import_core.types.isArrowFunctionExpression(firstArg))) {
|
|
251
|
+
injectSourcePropIntoFunctionParams(firstArg);
|
|
252
|
+
}
|
|
253
|
+
}
|
|
254
|
+
function getSourceValue(state, loc, projectRoot) {
|
|
64
255
|
const filename = state.file?.opts?.filename;
|
|
65
256
|
if (!filename || !loc) {
|
|
66
257
|
return null;
|
|
67
258
|
}
|
|
68
|
-
|
|
69
|
-
return `${relPath}:${loc.line}:${loc.column + 1}`;
|
|
259
|
+
return toRelativeSource(filename, loc, projectRoot);
|
|
70
260
|
}
|
|
71
261
|
function buildAssignment(name, sourceValue) {
|
|
72
262
|
return import_core.types.expressionStatement(
|
|
@@ -77,13 +267,98 @@ function buildAssignment(name, sourceValue) {
|
|
|
77
267
|
)
|
|
78
268
|
);
|
|
79
269
|
}
|
|
80
|
-
function
|
|
270
|
+
function buildIntrinsicSourceHelper() {
|
|
271
|
+
return import_core.types.functionDeclaration(
|
|
272
|
+
import_core.types.identifier("_markIntrinsicElementSource"),
|
|
273
|
+
[import_core.types.identifier("element"), import_core.types.identifier("source")],
|
|
274
|
+
import_core.types.blockStatement([
|
|
275
|
+
import_core.types.variableDeclaration("const", [
|
|
276
|
+
import_core.types.variableDeclarator(
|
|
277
|
+
import_core.types.identifier("registryKey"),
|
|
278
|
+
import_core.types.callExpression(
|
|
279
|
+
import_core.types.memberExpression(import_core.types.identifier("Symbol"), import_core.types.identifier("for")),
|
|
280
|
+
[import_core.types.stringLiteral(JSX_SOURCE_REGISTRY_SYMBOL)]
|
|
281
|
+
)
|
|
282
|
+
)
|
|
283
|
+
]),
|
|
284
|
+
import_core.types.variableDeclaration("let", [
|
|
285
|
+
import_core.types.variableDeclarator(
|
|
286
|
+
import_core.types.identifier("registry"),
|
|
287
|
+
import_core.types.memberExpression(import_core.types.identifier("globalThis"), import_core.types.identifier("registryKey"), true)
|
|
288
|
+
)
|
|
289
|
+
]),
|
|
290
|
+
import_core.types.ifStatement(
|
|
291
|
+
import_core.types.unaryExpression(
|
|
292
|
+
"!",
|
|
293
|
+
import_core.types.binaryExpression("instanceof", import_core.types.identifier("registry"), import_core.types.identifier("WeakMap"))
|
|
294
|
+
),
|
|
295
|
+
import_core.types.blockStatement([
|
|
296
|
+
import_core.types.expressionStatement(
|
|
297
|
+
import_core.types.assignmentExpression(
|
|
298
|
+
"=",
|
|
299
|
+
import_core.types.identifier("registry"),
|
|
300
|
+
import_core.types.assignmentExpression(
|
|
301
|
+
"=",
|
|
302
|
+
import_core.types.memberExpression(import_core.types.identifier("globalThis"), import_core.types.identifier("registryKey"), true),
|
|
303
|
+
import_core.types.newExpression(import_core.types.identifier("WeakMap"), [])
|
|
304
|
+
)
|
|
305
|
+
)
|
|
306
|
+
)
|
|
307
|
+
])
|
|
308
|
+
),
|
|
309
|
+
import_core.types.ifStatement(
|
|
310
|
+
import_core.types.logicalExpression(
|
|
311
|
+
"&&",
|
|
312
|
+
import_core.types.identifier("element"),
|
|
313
|
+
import_core.types.logicalExpression(
|
|
314
|
+
"&&",
|
|
315
|
+
import_core.types.binaryExpression("===", import_core.types.unaryExpression("typeof", import_core.types.identifier("element")), import_core.types.stringLiteral("object")),
|
|
316
|
+
import_core.types.binaryExpression(
|
|
317
|
+
"===",
|
|
318
|
+
import_core.types.unaryExpression("typeof", import_core.types.memberExpression(import_core.types.identifier("element"), import_core.types.identifier("props"))),
|
|
319
|
+
import_core.types.stringLiteral("object")
|
|
320
|
+
)
|
|
321
|
+
)
|
|
322
|
+
),
|
|
323
|
+
import_core.types.blockStatement([
|
|
324
|
+
import_core.types.expressionStatement(
|
|
325
|
+
import_core.types.callExpression(
|
|
326
|
+
import_core.types.memberExpression(import_core.types.identifier("registry"), import_core.types.identifier("set")),
|
|
327
|
+
[import_core.types.memberExpression(import_core.types.identifier("element"), import_core.types.identifier("props")), import_core.types.identifier("source")]
|
|
328
|
+
)
|
|
329
|
+
)
|
|
330
|
+
])
|
|
331
|
+
),
|
|
332
|
+
import_core.types.returnStatement(import_core.types.identifier("element"))
|
|
333
|
+
])
|
|
334
|
+
);
|
|
335
|
+
}
|
|
336
|
+
function ensureIntrinsicSourceHelper(programPath, state) {
|
|
337
|
+
if (state.injectedIntrinsicHelper) {
|
|
338
|
+
return;
|
|
339
|
+
}
|
|
340
|
+
const alreadyExists = programPath.node.body.some(
|
|
341
|
+
(node) => import_core.types.isFunctionDeclaration(node) && import_core.types.isIdentifier(node.id, { name: "_markIntrinsicElementSource" })
|
|
342
|
+
);
|
|
343
|
+
if (!alreadyExists) {
|
|
344
|
+
programPath.unshiftContainer("body", buildIntrinsicSourceHelper());
|
|
345
|
+
}
|
|
346
|
+
state.injectedIntrinsicHelper = true;
|
|
347
|
+
}
|
|
348
|
+
function visitDeclaration(declarationPath, insertAfterPath, state, seen, projectRoot) {
|
|
81
349
|
if (declarationPath.isFunctionDeclaration() || declarationPath.isClassDeclaration()) {
|
|
82
350
|
const name = declarationPath.node.id?.name;
|
|
83
351
|
if (!name || !isComponentName(name) || seen.has(name)) {
|
|
84
352
|
return;
|
|
85
353
|
}
|
|
86
|
-
|
|
354
|
+
if (declarationPath.isFunctionDeclaration()) {
|
|
355
|
+
injectSourcePropIntoFunctionParams(declarationPath.node);
|
|
356
|
+
}
|
|
357
|
+
const sourceValue = getSourceValue(
|
|
358
|
+
state,
|
|
359
|
+
declarationPath.node.loc?.start,
|
|
360
|
+
projectRoot
|
|
361
|
+
);
|
|
87
362
|
if (!sourceValue) {
|
|
88
363
|
return;
|
|
89
364
|
}
|
|
@@ -94,38 +369,128 @@ function visitDeclaration(declarationPath, insertAfterPath, state, seen) {
|
|
|
94
369
|
if (!declarationPath.isVariableDeclaration()) {
|
|
95
370
|
return;
|
|
96
371
|
}
|
|
97
|
-
const assignments = declarationPath.node.declarations.flatMap(
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
372
|
+
const assignments = declarationPath.node.declarations.flatMap(
|
|
373
|
+
(declarator) => {
|
|
374
|
+
if (!import_core.types.isIdentifier(declarator.id) || !isComponentName(declarator.id.name) || seen.has(declarator.id.name)) {
|
|
375
|
+
return [];
|
|
376
|
+
}
|
|
377
|
+
if (!declarator.init) {
|
|
378
|
+
return [];
|
|
379
|
+
}
|
|
380
|
+
if (!isSupportedComponentInit(declarator.init)) {
|
|
381
|
+
return [];
|
|
382
|
+
}
|
|
383
|
+
injectSourcePropIntoExpression(declarator.init);
|
|
384
|
+
const sourceValue = getSourceValue(
|
|
385
|
+
state,
|
|
386
|
+
declarator.loc?.start ?? declarator.init.loc?.start,
|
|
387
|
+
projectRoot
|
|
388
|
+
);
|
|
389
|
+
if (!sourceValue) {
|
|
390
|
+
return [];
|
|
391
|
+
}
|
|
392
|
+
seen.add(declarator.id.name);
|
|
393
|
+
return [buildAssignment(declarator.id.name, sourceValue)];
|
|
110
394
|
}
|
|
111
|
-
|
|
112
|
-
return [buildAssignment(declarator.id.name, sourceValue)];
|
|
113
|
-
});
|
|
395
|
+
);
|
|
114
396
|
if (assignments.length > 0) {
|
|
115
397
|
insertAfterPath.insertAfter(assignments);
|
|
116
398
|
}
|
|
117
399
|
}
|
|
118
400
|
function babelInjectComponentSource(options = {}) {
|
|
119
|
-
const {
|
|
401
|
+
const {
|
|
402
|
+
injectJsxSource = true,
|
|
403
|
+
injectComponentSource = true,
|
|
404
|
+
projectRoot
|
|
405
|
+
} = options;
|
|
120
406
|
return {
|
|
121
407
|
name: "babel-inject-component-source",
|
|
122
408
|
visitor: {
|
|
409
|
+
CallExpression(pathNode, state) {
|
|
410
|
+
if (!injectJsxSource) {
|
|
411
|
+
return;
|
|
412
|
+
}
|
|
413
|
+
if (!isReactElementFactoryCall(pathNode)) {
|
|
414
|
+
return;
|
|
415
|
+
}
|
|
416
|
+
if (pathNode.parentPath.isCallExpression() && import_core.types.isIdentifier(pathNode.parentPath.node.callee, {
|
|
417
|
+
name: "_markIntrinsicElementSource"
|
|
418
|
+
})) {
|
|
419
|
+
return;
|
|
420
|
+
}
|
|
421
|
+
const sourceValue = getSourceValue(
|
|
422
|
+
state,
|
|
423
|
+
pathNode.node.loc?.start,
|
|
424
|
+
projectRoot
|
|
425
|
+
);
|
|
426
|
+
if (!sourceValue) {
|
|
427
|
+
return;
|
|
428
|
+
}
|
|
429
|
+
const programPath = pathNode.findParent((parent) => parent.isProgram());
|
|
430
|
+
if (!programPath || !programPath.isProgram()) {
|
|
431
|
+
return;
|
|
432
|
+
}
|
|
433
|
+
ensureIntrinsicSourceHelper(programPath, state);
|
|
434
|
+
pathNode.replaceWith(
|
|
435
|
+
import_core.types.callExpression(import_core.types.identifier("_markIntrinsicElementSource"), [
|
|
436
|
+
pathNode.node,
|
|
437
|
+
import_core.types.stringLiteral(sourceValue)
|
|
438
|
+
])
|
|
439
|
+
);
|
|
440
|
+
pathNode.skip();
|
|
441
|
+
},
|
|
442
|
+
JSXElement: {
|
|
443
|
+
exit(pathNode, state) {
|
|
444
|
+
if (!injectJsxSource) {
|
|
445
|
+
return;
|
|
446
|
+
}
|
|
447
|
+
if (!isIntrinsicElementTag(pathNode.node.openingElement.name)) {
|
|
448
|
+
return;
|
|
449
|
+
}
|
|
450
|
+
if (pathNode.parentPath.isCallExpression() && import_core.types.isIdentifier(pathNode.parentPath.node.callee, { name: "_markIntrinsicElementSource" })) {
|
|
451
|
+
return;
|
|
452
|
+
}
|
|
453
|
+
const sourceValue = getSourceValue(
|
|
454
|
+
state,
|
|
455
|
+
pathNode.node.openingElement.loc?.start,
|
|
456
|
+
projectRoot
|
|
457
|
+
);
|
|
458
|
+
if (!sourceValue) {
|
|
459
|
+
return;
|
|
460
|
+
}
|
|
461
|
+
const programPath = pathNode.findParent((parent) => parent.isProgram());
|
|
462
|
+
if (!programPath || !programPath.isProgram()) {
|
|
463
|
+
return;
|
|
464
|
+
}
|
|
465
|
+
ensureIntrinsicSourceHelper(programPath, state);
|
|
466
|
+
const wrappedNode = import_core.types.callExpression(import_core.types.identifier("_markIntrinsicElementSource"), [
|
|
467
|
+
pathNode.node,
|
|
468
|
+
import_core.types.stringLiteral(sourceValue)
|
|
469
|
+
]);
|
|
470
|
+
if (pathNode.parentPath.isJSXElement() || pathNode.parentPath.isJSXFragment()) {
|
|
471
|
+
pathNode.replaceWith(import_core.types.jsxExpressionContainer(wrappedNode));
|
|
472
|
+
return;
|
|
473
|
+
}
|
|
474
|
+
if (pathNode.parentPath.isJSXExpressionContainer()) {
|
|
475
|
+
pathNode.parentPath.replaceWith(import_core.types.jsxExpressionContainer(wrappedNode));
|
|
476
|
+
return;
|
|
477
|
+
}
|
|
478
|
+
pathNode.replaceWith(wrappedNode);
|
|
479
|
+
}
|
|
480
|
+
},
|
|
123
481
|
JSXOpeningElement(pathNode, state) {
|
|
124
482
|
if (!injectJsxSource) {
|
|
125
483
|
return;
|
|
126
484
|
}
|
|
485
|
+
if (!isCustomComponentTag(pathNode.node.name)) {
|
|
486
|
+
return;
|
|
487
|
+
}
|
|
488
|
+
const rootIdentifierName = getRootJsxIdentifierName(pathNode.node.name);
|
|
489
|
+
if (rootIdentifierName && isExternalToProjectRoot(state.file?.opts?.filename, projectRoot) && isStyledModuleImport(pathNode.scope.getBinding(rootIdentifierName))) {
|
|
490
|
+
return;
|
|
491
|
+
}
|
|
127
492
|
const hasSourceProp = pathNode.node.attributes.some(
|
|
128
|
-
(attr) => import_core.types.isJSXAttribute(attr) && import_core.types.isJSXIdentifier(attr.name) && attr.name.name ===
|
|
493
|
+
(attr) => import_core.types.isJSXAttribute(attr) && import_core.types.isJSXIdentifier(attr.name) && attr.name.name === JSX_SOURCE_PROP
|
|
129
494
|
);
|
|
130
495
|
if (hasSourceProp) {
|
|
131
496
|
return;
|
|
@@ -137,8 +502,10 @@ function babelInjectComponentSource(options = {}) {
|
|
|
137
502
|
}
|
|
138
503
|
pathNode.node.attributes.push(
|
|
139
504
|
import_core.types.jsxAttribute(
|
|
140
|
-
import_core.types.jsxIdentifier(
|
|
141
|
-
import_core.types.stringLiteral(
|
|
505
|
+
import_core.types.jsxIdentifier(JSX_SOURCE_PROP),
|
|
506
|
+
import_core.types.stringLiteral(
|
|
507
|
+
getSourceValue(state, loc, projectRoot) ?? `${filename.replace(/\\/g, "/")}:${loc.line}:${loc.column + 1}`
|
|
508
|
+
)
|
|
142
509
|
)
|
|
143
510
|
);
|
|
144
511
|
},
|
|
@@ -151,18 +518,38 @@ function babelInjectComponentSource(options = {}) {
|
|
|
151
518
|
if (childPath.isExportNamedDeclaration() || childPath.isExportDefaultDeclaration()) {
|
|
152
519
|
const declarationPath = childPath.get("declaration");
|
|
153
520
|
if (!Array.isArray(declarationPath) && declarationPath.node) {
|
|
154
|
-
visitDeclaration(declarationPath, childPath, state, seen);
|
|
521
|
+
visitDeclaration(declarationPath, childPath, state, seen, projectRoot);
|
|
155
522
|
}
|
|
156
523
|
continue;
|
|
157
524
|
}
|
|
158
|
-
visitDeclaration(childPath, childPath, state, seen);
|
|
525
|
+
visitDeclaration(childPath, childPath, state, seen, projectRoot);
|
|
159
526
|
}
|
|
160
527
|
}
|
|
161
528
|
}
|
|
162
529
|
};
|
|
163
530
|
}
|
|
531
|
+
|
|
532
|
+
// src/sourceAdapter.ts
|
|
533
|
+
function defineSourceAdapter(descriptor) {
|
|
534
|
+
return descriptor;
|
|
535
|
+
}
|
|
536
|
+
|
|
537
|
+
// src/babel.ts
|
|
538
|
+
function createBabelSourceAdapter(options = {}) {
|
|
539
|
+
return defineSourceAdapter({
|
|
540
|
+
kind: "babel",
|
|
541
|
+
name: "react-code-locator/babel",
|
|
542
|
+
options,
|
|
543
|
+
config: {
|
|
544
|
+
plugins: [[babelInjectComponentSource, options]]
|
|
545
|
+
}
|
|
546
|
+
});
|
|
547
|
+
}
|
|
548
|
+
var babelSourceAdapter = createBabelSourceAdapter();
|
|
164
549
|
// Annotate the CommonJS export names for ESM import in node:
|
|
165
550
|
0 && (module.exports = {
|
|
166
|
-
babelInjectComponentSource
|
|
551
|
+
babelInjectComponentSource,
|
|
552
|
+
babelSourceAdapter,
|
|
553
|
+
createBabelSourceAdapter
|
|
167
554
|
});
|
|
168
555
|
//# sourceMappingURL=babel.cjs.map
|
package/dist/babel.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/babel.ts","../src/babelInjectComponentSource.ts","../src/constants.ts"],"sourcesContent":["export { babelInjectComponentSource } from \"./babelInjectComponentSource\";\nexport type { BabelInjectComponentSourceOptions } from \"./babelInjectComponentSource\";\n","import path from \"node:path\";\nimport { types as t, type NodePath, type PluginObj } from \"@babel/core\";\nimport { SOURCE_PROP } from \"./constants\";\n\nexport type BabelInjectComponentSourceOptions = {\n injectJsxSource?: boolean;\n injectComponentSource?: boolean;\n};\n\ntype BabelState = {\n file?: {\n opts?: {\n filename?: string;\n };\n };\n};\n\nfunction isComponentName(name: string) {\n return /^[A-Z]/.test(name);\n}\n\nfunction isSupportedComponentInit(node: t.Expression | null | undefined): boolean {\n if (!node) {\n return false;\n }\n\n if (t.isArrowFunctionExpression(node) || t.isFunctionExpression(node)) {\n return true;\n }\n\n if (!t.isCallExpression(node)) {\n return false;\n }\n\n if (t.isIdentifier(node.callee) && (node.callee.name === \"memo\" || node.callee.name === \"forwardRef\")) {\n return true;\n }\n\n return (\n t.isMemberExpression(node.callee) &&\n t.isIdentifier(node.callee.object, { name: \"React\" }) &&\n t.isIdentifier(node.callee.property) &&\n (node.callee.property.name === \"memo\" || node.callee.property.name === \"forwardRef\")\n );\n}\n\nfunction getSourceValue(state: BabelState, loc: { line: number; column: number } | null | undefined) {\n const filename = state.file?.opts?.filename;\n if (!filename || !loc) {\n return null;\n }\n\n const relPath = path.relative(process.cwd(), filename).replace(/\\\\/g, \"/\");\n return `${relPath}:${loc.line}:${loc.column + 1}`;\n}\n\nfunction buildAssignment(name: string, sourceValue: string) {\n return t.expressionStatement(\n t.assignmentExpression(\n \"=\",\n t.memberExpression(t.identifier(name), t.identifier(SOURCE_PROP)),\n t.stringLiteral(sourceValue),\n ),\n );\n}\n\nfunction visitDeclaration(\n declarationPath: NodePath,\n insertAfterPath: NodePath,\n state: BabelState,\n seen: Set<string>,\n) {\n if (declarationPath.isFunctionDeclaration() || declarationPath.isClassDeclaration()) {\n const name = declarationPath.node.id?.name;\n if (!name || !isComponentName(name) || seen.has(name)) {\n return;\n }\n\n const sourceValue = getSourceValue(state, declarationPath.node.loc?.start);\n if (!sourceValue) {\n return;\n }\n\n seen.add(name);\n insertAfterPath.insertAfter(buildAssignment(name, sourceValue));\n return;\n }\n\n if (!declarationPath.isVariableDeclaration()) {\n return;\n }\n\n const assignments = declarationPath.node.declarations.flatMap((declarator) => {\n if (!t.isIdentifier(declarator.id) || !isComponentName(declarator.id.name) || seen.has(declarator.id.name)) {\n return [];\n }\n\n if (!declarator.init) {\n return [];\n }\n\n if (!isSupportedComponentInit(declarator.init)) {\n return [];\n }\n\n const sourceValue = getSourceValue(state, declarator.loc?.start ?? declarator.init.loc?.start);\n if (!sourceValue) {\n return [];\n }\n\n seen.add(declarator.id.name);\n return [buildAssignment(declarator.id.name, sourceValue)];\n });\n\n if (assignments.length > 0) {\n insertAfterPath.insertAfter(assignments);\n }\n}\n\nexport function babelInjectComponentSource(\n options: BabelInjectComponentSourceOptions = {},\n): PluginObj<BabelState> {\n const { injectJsxSource = false, injectComponentSource = true } = options;\n\n return {\n name: \"babel-inject-component-source\",\n visitor: {\n JSXOpeningElement(pathNode, state) {\n if (!injectJsxSource) {\n return;\n }\n\n const hasSourceProp = pathNode.node.attributes.some(\n (attr) => t.isJSXAttribute(attr) && t.isJSXIdentifier(attr.name) && attr.name.name === SOURCE_PROP,\n );\n if (hasSourceProp) {\n return;\n }\n\n const filename = state.file?.opts?.filename;\n const loc = pathNode.node.loc?.start;\n if (!filename || !loc) {\n return;\n }\n\n pathNode.node.attributes.push(\n t.jsxAttribute(\n t.jsxIdentifier(SOURCE_PROP),\n t.stringLiteral(getSourceValue(state, loc) ?? `${filename.replace(/\\\\/g, \"/\")}:${loc.line}:${loc.column + 1}`),\n ),\n );\n },\n Program(programPath, state) {\n if (!injectComponentSource) {\n return;\n }\n\n const seen = new Set<string>();\n\n for (const childPath of programPath.get(\"body\")) {\n if (childPath.isExportNamedDeclaration() || childPath.isExportDefaultDeclaration()) {\n const declarationPath = childPath.get(\"declaration\");\n if (!Array.isArray(declarationPath) && declarationPath.node) {\n visitDeclaration(declarationPath, childPath, state, seen);\n }\n continue;\n }\n\n visitDeclaration(childPath, childPath, state, seen);\n }\n },\n },\n };\n}\n","export const SOURCE_PROP = \"__componentSourceLoc\";\n\n"],"mappings":"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","names":["t","path"]}
|
|
1
|
+
{"version":3,"sources":["../src/babel.ts","../src/babelInjectComponentSource.ts","../src/constants.ts","../src/sourceMetadata.ts","../src/sourceAdapter.ts"],"sourcesContent":["import { babelInjectComponentSource, type BabelInjectComponentSourceOptions } from \"./babelInjectComponentSource\";\nimport { defineSourceAdapter } from \"./sourceAdapter\";\n\nexport type BabelSourceAdapterConfig = {\n plugins: Array<[typeof babelInjectComponentSource, BabelInjectComponentSourceOptions]>;\n};\n\nexport { babelInjectComponentSource } from \"./babelInjectComponentSource\";\nexport type { BabelInjectComponentSourceOptions } from \"./babelInjectComponentSource\";\nexport type { SourceAdapterDescriptor, SourceAdapterKind, SourceInjectionOptions } from \"./sourceAdapter\";\n\nexport function createBabelSourceAdapter(options: BabelInjectComponentSourceOptions = {}) {\n return defineSourceAdapter<BabelSourceAdapterConfig, BabelInjectComponentSourceOptions>({\n kind: \"babel\",\n name: \"react-code-locator/babel\",\n options,\n config: {\n plugins: [[babelInjectComponentSource, options]],\n },\n });\n}\n\nexport const babelSourceAdapter = createBabelSourceAdapter();\n","import { types as t, type NodePath, type PluginObj } from \"@babel/core\";\nimport {\n JSX_SOURCE_PROP,\n JSX_SOURCE_REGISTRY_SYMBOL,\n SOURCE_PROP,\n} from \"./constants\";\nimport type { SourceInjectionOptions } from \"./sourceAdapter\";\nimport {\n isExternalToProjectRoot,\n toRelativeSource,\n} from \"./sourceMetadata\";\n\nexport type BabelInjectComponentSourceOptions = SourceInjectionOptions;\n\ntype BabelState = {\n file?: {\n opts?: {\n filename?: string;\n };\n };\n injectedIntrinsicHelper?: boolean;\n};\n\ntype BindingLike = {\n path: NodePath;\n};\n\nconst SOURCE_PROP_LOCAL = \"_componentSourceLoc\";\nconst SOURCE_PROPS_REST = \"__reactCodeLocatorProps\";\n\nfunction isComponentName(name: string) {\n return /^[A-Z]/.test(name);\n}\n\nfunction isCustomComponentTag(\n name: t.JSXIdentifier | t.JSXMemberExpression | t.JSXNamespacedName,\n) {\n if (t.isJSXIdentifier(name)) {\n return isComponentName(name.name);\n }\n\n if (t.isJSXMemberExpression(name)) {\n return true;\n }\n\n return false;\n}\n\nfunction isIntrinsicElementTag(\n name: t.JSXIdentifier | t.JSXMemberExpression | t.JSXNamespacedName,\n) {\n return t.isJSXIdentifier(name) && /^[a-z]/.test(name.name);\n}\n\nfunction isElementFactoryIdentifier(name: string) {\n return (\n name === \"jsx\" ||\n name === \"jsxs\" ||\n name === \"jsxDEV\" ||\n name === \"_jsx\" ||\n name === \"_jsxs\" ||\n name === \"_jsxDEV\" ||\n name === \"createElement\"\n );\n}\n\nfunction isReactElementFactoryCall(pathNode: NodePath<t.CallExpression>) {\n const callee = pathNode.node.callee;\n\n if (t.isIdentifier(callee)) {\n return isElementFactoryIdentifier(callee.name);\n }\n\n return (\n t.isMemberExpression(callee) &&\n t.isIdentifier(callee.object, { name: \"React\" }) &&\n t.isIdentifier(callee.property, { name: \"createElement\" })\n );\n}\n\nfunction getRootJsxIdentifierName(\n name: t.JSXIdentifier | t.JSXMemberExpression | t.JSXNamespacedName,\n): string | null {\n if (t.isJSXIdentifier(name)) {\n return name.name;\n }\n\n if (t.isJSXMemberExpression(name)) {\n return getRootJsxIdentifierName(name.object);\n }\n\n return null;\n}\n\nfunction isStyledModuleImport(binding: BindingLike | undefined) {\n if (!binding) {\n return false;\n }\n\n if (\n !binding.path.isImportSpecifier() &&\n !binding.path.isImportDefaultSpecifier() &&\n !binding.path.isImportNamespaceSpecifier()\n ) {\n return false;\n }\n\n const source = binding.path.parentPath.isImportDeclaration()\n ? binding.path.parentPath.node.source.value\n : null;\n if (typeof source !== \"string\") {\n return false;\n }\n\n const normalized = source.replace(/\\\\/g, \"/\");\n return (\n normalized === \"./styled\" ||\n normalized === \"../styled\" ||\n normalized.endsWith(\"/styled\")\n );\n}\n\nfunction isSupportedComponentInit(\n node: t.Expression | null | undefined,\n): boolean {\n if (!node) {\n return false;\n }\n\n if (t.isArrowFunctionExpression(node) || t.isFunctionExpression(node)) {\n return true;\n }\n\n if (!t.isCallExpression(node)) {\n return false;\n }\n\n if (\n t.isIdentifier(node.callee) &&\n (node.callee.name === \"memo\" || node.callee.name === \"forwardRef\")\n ) {\n return true;\n }\n\n return (\n t.isMemberExpression(node.callee) &&\n t.isIdentifier(node.callee.object, { name: \"React\" }) &&\n t.isIdentifier(node.callee.property) &&\n (node.callee.property.name === \"memo\" ||\n node.callee.property.name === \"forwardRef\")\n );\n}\n\nfunction hasSourcePropBinding(pattern: t.ObjectPattern) {\n return pattern.properties.some((property: t.ObjectPattern[\"properties\"][number]) => {\n if (!t.isObjectProperty(property)) {\n return false;\n }\n\n return (\n t.isIdentifier(property.key) && property.key.name === JSX_SOURCE_PROP\n );\n });\n}\n\nfunction injectSourcePropBinding(pattern: t.ObjectPattern) {\n if (hasSourcePropBinding(pattern)) {\n return;\n }\n\n const sourceBinding = t.objectProperty(\n t.identifier(JSX_SOURCE_PROP),\n t.identifier(SOURCE_PROP_LOCAL),\n false,\n false,\n );\n\n const restIndex = pattern.properties.findIndex((property: t.ObjectPattern[\"properties\"][number]) =>\n t.isRestElement(property),\n );\n if (restIndex === -1) {\n pattern.properties.push(sourceBinding);\n return;\n }\n\n pattern.properties.splice(restIndex, 0, sourceBinding);\n}\n\nfunction injectSourcePropIntoIdentifierParam(\n node:\n | t.FunctionDeclaration\n | t.FunctionExpression\n | t.ArrowFunctionExpression,\n param: t.Identifier,\n) {\n if (!t.isBlockStatement(node.body)) {\n node.body = t.blockStatement([t.returnStatement(node.body)]);\n }\n\n const alreadyInjected = node.body.body.some(\n (statement: t.Statement) =>\n t.isVariableDeclaration(statement) &&\n statement.declarations.some(\n (declaration: t.VariableDeclarator) =>\n t.isIdentifier(declaration.id) &&\n declaration.id.name === SOURCE_PROPS_REST,\n ),\n );\n if (alreadyInjected) {\n return;\n }\n\n node.body.body.unshift(\n t.variableDeclaration(\"const\", [\n t.variableDeclarator(\n t.objectPattern([\n t.objectProperty(\n t.identifier(JSX_SOURCE_PROP),\n t.identifier(SOURCE_PROP_LOCAL),\n false,\n false,\n ),\n t.restElement(t.identifier(SOURCE_PROPS_REST)),\n ]),\n param,\n ),\n ]),\n t.expressionStatement(\n t.assignmentExpression(\n \"=\",\n t.identifier(param.name),\n t.identifier(SOURCE_PROPS_REST),\n ),\n ),\n );\n}\n\nfunction injectSourcePropIntoFunctionParams(\n node:\n | t.FunctionDeclaration\n | t.FunctionExpression\n | t.ArrowFunctionExpression,\n) {\n const firstParam = node.params[0];\n if (!firstParam) {\n return;\n }\n\n if (t.isObjectPattern(firstParam)) {\n injectSourcePropBinding(firstParam);\n return;\n }\n\n if (t.isIdentifier(firstParam)) {\n injectSourcePropIntoIdentifierParam(node, firstParam);\n }\n}\n\nfunction injectSourcePropIntoExpression(node: t.Expression | null | undefined) {\n if (!node) {\n return;\n }\n\n if (t.isFunctionExpression(node) || t.isArrowFunctionExpression(node)) {\n injectSourcePropIntoFunctionParams(node);\n return;\n }\n\n if (!t.isCallExpression(node)) {\n return;\n }\n\n const firstArg = node.arguments[0];\n if (\n firstArg &&\n !t.isSpreadElement(firstArg) &&\n (t.isFunctionExpression(firstArg) || t.isArrowFunctionExpression(firstArg))\n ) {\n injectSourcePropIntoFunctionParams(firstArg);\n }\n}\n\nfunction getSourceValue(\n state: BabelState,\n loc: { line: number; column: number } | null | undefined,\n projectRoot?: string,\n) {\n const filename = state.file?.opts?.filename;\n if (!filename || !loc) {\n return null;\n }\n\n return toRelativeSource(filename, loc, projectRoot);\n}\n\nfunction buildAssignment(name: string, sourceValue: string) {\n return t.expressionStatement(\n t.assignmentExpression(\n \"=\",\n t.memberExpression(t.identifier(name), t.identifier(SOURCE_PROP)),\n t.stringLiteral(sourceValue),\n ),\n );\n}\n\nfunction buildIntrinsicSourceHelper() {\n return t.functionDeclaration(\n t.identifier(\"_markIntrinsicElementSource\"),\n [t.identifier(\"element\"), t.identifier(\"source\")],\n t.blockStatement([\n t.variableDeclaration(\"const\", [\n t.variableDeclarator(\n t.identifier(\"registryKey\"),\n t.callExpression(\n t.memberExpression(t.identifier(\"Symbol\"), t.identifier(\"for\")),\n [t.stringLiteral(JSX_SOURCE_REGISTRY_SYMBOL)],\n ),\n ),\n ]),\n t.variableDeclaration(\"let\", [\n t.variableDeclarator(\n t.identifier(\"registry\"),\n t.memberExpression(t.identifier(\"globalThis\"), t.identifier(\"registryKey\"), true),\n ),\n ]),\n t.ifStatement(\n t.unaryExpression(\n \"!\",\n t.binaryExpression(\"instanceof\", t.identifier(\"registry\"), t.identifier(\"WeakMap\")),\n ),\n t.blockStatement([\n t.expressionStatement(\n t.assignmentExpression(\n \"=\",\n t.identifier(\"registry\"),\n t.assignmentExpression(\n \"=\",\n t.memberExpression(t.identifier(\"globalThis\"), t.identifier(\"registryKey\"), true),\n t.newExpression(t.identifier(\"WeakMap\"), []),\n ),\n ),\n ),\n ]),\n ),\n t.ifStatement(\n t.logicalExpression(\n \"&&\",\n t.identifier(\"element\"),\n t.logicalExpression(\n \"&&\",\n t.binaryExpression(\"===\", t.unaryExpression(\"typeof\", t.identifier(\"element\")), t.stringLiteral(\"object\")),\n t.binaryExpression(\n \"===\",\n t.unaryExpression(\"typeof\", t.memberExpression(t.identifier(\"element\"), t.identifier(\"props\"))),\n t.stringLiteral(\"object\"),\n ),\n ),\n ),\n t.blockStatement([\n t.expressionStatement(\n t.callExpression(\n t.memberExpression(t.identifier(\"registry\"), t.identifier(\"set\")),\n [t.memberExpression(t.identifier(\"element\"), t.identifier(\"props\")), t.identifier(\"source\")],\n ),\n ),\n ]),\n ),\n t.returnStatement(t.identifier(\"element\")),\n ]),\n );\n}\n\nfunction ensureIntrinsicSourceHelper(programPath: NodePath<t.Program>, state: BabelState) {\n if (state.injectedIntrinsicHelper) {\n return;\n }\n\n const alreadyExists = programPath.node.body.some(\n (node: t.Statement) =>\n t.isFunctionDeclaration(node) && t.isIdentifier(node.id, { name: \"_markIntrinsicElementSource\" }),\n );\n if (!alreadyExists) {\n programPath.unshiftContainer(\"body\", buildIntrinsicSourceHelper());\n }\n\n state.injectedIntrinsicHelper = true;\n}\n\nfunction visitDeclaration(\n declarationPath: NodePath,\n insertAfterPath: NodePath,\n state: BabelState,\n seen: Set<string>,\n projectRoot?: string,\n) {\n if (\n declarationPath.isFunctionDeclaration() ||\n declarationPath.isClassDeclaration()\n ) {\n const name = declarationPath.node.id?.name;\n if (!name || !isComponentName(name) || seen.has(name)) {\n return;\n }\n\n if (declarationPath.isFunctionDeclaration()) {\n injectSourcePropIntoFunctionParams(declarationPath.node);\n }\n\n const sourceValue = getSourceValue(\n state,\n declarationPath.node.loc?.start,\n projectRoot,\n );\n if (!sourceValue) {\n return;\n }\n\n seen.add(name);\n insertAfterPath.insertAfter(buildAssignment(name, sourceValue));\n return;\n }\n\n if (!declarationPath.isVariableDeclaration()) {\n return;\n }\n\n const assignments = declarationPath.node.declarations.flatMap(\n (declarator: t.VariableDeclarator) => {\n if (\n !t.isIdentifier(declarator.id) ||\n !isComponentName(declarator.id.name) ||\n seen.has(declarator.id.name)\n ) {\n return [];\n }\n\n if (!declarator.init) {\n return [];\n }\n\n if (!isSupportedComponentInit(declarator.init)) {\n return [];\n }\n\n injectSourcePropIntoExpression(declarator.init);\n\n const sourceValue = getSourceValue(\n state,\n declarator.loc?.start ?? declarator.init.loc?.start,\n projectRoot,\n );\n if (!sourceValue) {\n return [];\n }\n\n seen.add(declarator.id.name);\n return [buildAssignment(declarator.id.name, sourceValue)];\n },\n );\n\n if (assignments.length > 0) {\n insertAfterPath.insertAfter(assignments);\n }\n}\n\nexport function babelInjectComponentSource(\n options: BabelInjectComponentSourceOptions = {},\n): PluginObj<BabelState> {\n const {\n injectJsxSource = true,\n injectComponentSource = true,\n projectRoot,\n } = options;\n\n return {\n name: \"babel-inject-component-source\",\n visitor: {\n CallExpression(pathNode: NodePath<t.CallExpression>, state: BabelState) {\n if (!injectJsxSource) {\n return;\n }\n\n if (!isReactElementFactoryCall(pathNode)) {\n return;\n }\n\n if (\n pathNode.parentPath.isCallExpression() &&\n t.isIdentifier(pathNode.parentPath.node.callee, {\n name: \"_markIntrinsicElementSource\",\n })\n ) {\n return;\n }\n\n const sourceValue = getSourceValue(\n state,\n pathNode.node.loc?.start,\n projectRoot,\n );\n if (!sourceValue) {\n return;\n }\n\n const programPath = pathNode.findParent((parent: NodePath) => parent.isProgram());\n if (!programPath || !programPath.isProgram()) {\n return;\n }\n\n ensureIntrinsicSourceHelper(programPath, state);\n pathNode.replaceWith(\n t.callExpression(t.identifier(\"_markIntrinsicElementSource\"), [\n pathNode.node,\n t.stringLiteral(sourceValue),\n ]),\n );\n pathNode.skip();\n },\n JSXElement: {\n exit(pathNode: NodePath<t.JSXElement>, state: BabelState) {\n if (!injectJsxSource) {\n return;\n }\n\n if (!isIntrinsicElementTag(pathNode.node.openingElement.name)) {\n return;\n }\n\n if (\n pathNode.parentPath.isCallExpression() &&\n t.isIdentifier(pathNode.parentPath.node.callee, { name: \"_markIntrinsicElementSource\" })\n ) {\n return;\n }\n\n const sourceValue = getSourceValue(\n state,\n pathNode.node.openingElement.loc?.start,\n projectRoot,\n );\n if (!sourceValue) {\n return;\n }\n\n const programPath = pathNode.findParent((parent: NodePath) => parent.isProgram());\n if (!programPath || !programPath.isProgram()) {\n return;\n }\n\n ensureIntrinsicSourceHelper(programPath, state);\n\n const wrappedNode = t.callExpression(t.identifier(\"_markIntrinsicElementSource\"), [\n pathNode.node,\n t.stringLiteral(sourceValue),\n ]);\n\n if (pathNode.parentPath.isJSXElement() || pathNode.parentPath.isJSXFragment()) {\n pathNode.replaceWith(t.jsxExpressionContainer(wrappedNode));\n return;\n }\n\n if (pathNode.parentPath.isJSXExpressionContainer()) {\n pathNode.parentPath.replaceWith(t.jsxExpressionContainer(wrappedNode));\n return;\n }\n\n pathNode.replaceWith(wrappedNode);\n },\n },\n JSXOpeningElement(pathNode: NodePath<t.JSXOpeningElement>, state: BabelState) {\n if (!injectJsxSource) {\n return;\n }\n\n if (!isCustomComponentTag(pathNode.node.name)) {\n return;\n }\n\n const rootIdentifierName = getRootJsxIdentifierName(pathNode.node.name);\n if (\n rootIdentifierName &&\n isExternalToProjectRoot(state.file?.opts?.filename, projectRoot) &&\n isStyledModuleImport(pathNode.scope.getBinding(rootIdentifierName))\n ) {\n return;\n }\n\n const hasSourceProp = pathNode.node.attributes.some(\n (attr: t.JSXAttribute | t.JSXSpreadAttribute) =>\n t.isJSXAttribute(attr) &&\n t.isJSXIdentifier(attr.name) &&\n attr.name.name === JSX_SOURCE_PROP,\n );\n if (hasSourceProp) {\n return;\n }\n\n const filename = state.file?.opts?.filename;\n const loc = pathNode.node.loc?.start;\n if (!filename || !loc) {\n return;\n }\n\n pathNode.node.attributes.push(\n t.jsxAttribute(\n t.jsxIdentifier(JSX_SOURCE_PROP),\n t.stringLiteral(\n getSourceValue(state, loc, projectRoot) ??\n `${filename.replace(/\\\\/g, \"/\")}:${loc.line}:${loc.column + 1}`,\n ),\n ),\n );\n },\n Program(programPath: NodePath<t.Program>, state: BabelState) {\n if (!injectComponentSource) {\n return;\n }\n\n const seen = new Set<string>();\n\n for (const childPath of programPath.get(\"body\")) {\n if (\n childPath.isExportNamedDeclaration() ||\n childPath.isExportDefaultDeclaration()\n ) {\n const declarationPath = childPath.get(\"declaration\");\n if (!Array.isArray(declarationPath) && declarationPath.node) {\n visitDeclaration(declarationPath, childPath, state, seen, projectRoot);\n }\n continue;\n }\n\n visitDeclaration(childPath, childPath, state, seen, projectRoot);\n }\n },\n },\n };\n}\n","export const SOURCE_PROP = \"__componentSourceLoc\";\nexport const JSX_SOURCE_PROP = \"$componentSourceLoc\";\nexport const JSX_SOURCE_REGISTRY_SYMBOL = \"react-code-locator.jsxSourceRegistry\";\n","export type SourceLocation = {\n line: number;\n column: number;\n};\n\nfunction normalizeSlashes(value: string) {\n return value.replace(/\\\\/g, \"/\");\n}\n\nfunction trimTrailingSlash(value: string) {\n return value.replace(/\\/+$/, \"\");\n}\n\nfunction splitPathSegments(value: string) {\n return normalizeSlashes(value).split(\"/\").filter(Boolean);\n}\n\nfunction computeRelativePath(fromPath: string, toPath: string) {\n const fromSegments = splitPathSegments(fromPath);\n const toSegments = splitPathSegments(toPath);\n\n let sharedIndex = 0;\n while (\n sharedIndex < fromSegments.length &&\n sharedIndex < toSegments.length &&\n fromSegments[sharedIndex] === toSegments[sharedIndex]\n ) {\n sharedIndex += 1;\n }\n\n const upSegments = new Array(Math.max(0, fromSegments.length - sharedIndex)).fill(\"..\");\n const downSegments = toSegments.slice(sharedIndex);\n const relativeSegments = [...upSegments, ...downSegments];\n return relativeSegments.length > 0 ? relativeSegments.join(\"/\") : \".\";\n}\n\nexport function normalizeProjectRoot(projectRoot?: string) {\n if (projectRoot) {\n return trimTrailingSlash(normalizeSlashes(projectRoot));\n }\n\n if (typeof process !== \"undefined\" && typeof process.cwd === \"function\") {\n return trimTrailingSlash(normalizeSlashes(process.cwd()));\n }\n\n return \"\";\n}\n\nexport function toRelativeSource(\n filename: string | undefined,\n loc: SourceLocation | null | undefined,\n projectRoot?: string,\n) {\n if (!filename || !loc) {\n return null;\n }\n\n const root = normalizeProjectRoot(projectRoot);\n const normalizedFilename = normalizeSlashes(filename);\n const relPath =\n root && normalizedFilename.startsWith(`${root}/`)\n ? normalizedFilename.slice(root.length + 1)\n : root\n ? computeRelativePath(root, normalizedFilename)\n : normalizedFilename;\n return `${relPath}:${loc.line}:${loc.column + 1}`;\n}\n\nexport function getSourceFile(source: string | null) {\n if (!source) {\n return null;\n }\n\n const match = source.match(/^(.*):\\d+:\\d+$/);\n return match?.[1] ?? null;\n}\n\nexport function isProjectLocalFile(filename: string | undefined, projectRoot?: string) {\n if (!filename) {\n return false;\n }\n\n const root = normalizeProjectRoot(projectRoot);\n const normalizedFilename = normalizeSlashes(filename);\n\n if (!root) {\n return (\n !normalizedFilename.startsWith(\"../\") &&\n !normalizedFilename.startsWith(\"/\") &&\n !/^[A-Za-z]:\\//.test(normalizedFilename)\n );\n }\n\n if (normalizedFilename.startsWith(`${root}/`) || normalizedFilename === root) {\n return true;\n }\n\n const relativePath = computeRelativePath(root, normalizedFilename);\n return !relativePath.startsWith(\"../\");\n}\n\nexport function isExternalToProjectRoot(filename: string | undefined, projectRoot?: string) {\n return !isProjectLocalFile(filename, projectRoot);\n}\n\nexport function isProjectLocalSource(source: string, projectRoot?: string) {\n const file = getSourceFile(source);\n return isProjectLocalFile(file ?? undefined, projectRoot);\n}\n","export type SourceInjectionOptions = {\n injectJsxSource?: boolean;\n injectComponentSource?: boolean;\n projectRoot?: string;\n};\n\nexport type SourceAdapterKind = \"babel\" | \"vite\" | \"esbuild\" | \"swc\";\n\nexport type SourceAdapterDescriptor<TConfig = unknown, TOptions = SourceInjectionOptions> = {\n kind: SourceAdapterKind;\n name: string;\n options: TOptions;\n config: TConfig;\n};\n\nexport function defineSourceAdapter<TConfig = unknown, TOptions = SourceInjectionOptions>(\n descriptor: SourceAdapterDescriptor<TConfig, TOptions>,\n) {\n return descriptor;\n}\n"],"mappings":"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","names":["t"]}
|