vue-hook-optimizer 0.0.59 → 0.0.61
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/dist/index.js +129 -87
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +129 -87
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
@@ -358,6 +358,108 @@ function processSetup(ast, parentScope, parentPath, _spread, _lineOffset = 0) {
|
|
358
358
|
}
|
359
359
|
}
|
360
360
|
}, parentScope, parentPath);
|
361
|
+
function traverseHooks(node, patentScope) {
|
362
|
+
if (node.type === "ExpressionStatement" && node.expression.type === "CallExpression" && node.expression.callee.type === "Identifier" || node.type === "CallExpression" && node.callee.type === "Identifier") {
|
363
|
+
const hookName = (() => {
|
364
|
+
if (node.type === "ExpressionStatement" && node.expression.type === "CallExpression" && node.expression.callee.type === "Identifier") {
|
365
|
+
return node.expression.callee.name;
|
366
|
+
}
|
367
|
+
if (node.type === "CallExpression" && node.callee.type === "Identifier") {
|
368
|
+
return node.callee.name;
|
369
|
+
}
|
370
|
+
})() || "";
|
371
|
+
if (!hookName) {
|
372
|
+
return;
|
373
|
+
}
|
374
|
+
const hookBinding = patentScope.getBinding(hookName);
|
375
|
+
if (!(hookBinding === void 0 || hookBinding?.scope.block.type === "Program" || parentScope === hookBinding?.scope)) {
|
376
|
+
return;
|
377
|
+
}
|
378
|
+
const expression = node.type === "ExpressionStatement" ? node.expression : node;
|
379
|
+
const watchArgs = /* @__PURE__ */ new Set();
|
380
|
+
if (hookName === "provide") {
|
381
|
+
traverse2(expression, {
|
382
|
+
Identifier(path1) {
|
383
|
+
const binding = path1.scope.getBinding(path1.node.name);
|
384
|
+
if (graph.nodes.has(path1.node.name) && (path1.parent.type !== "MemberExpression" && path1.parent.type !== "OptionalMemberExpression" || path1.parent.object === path1.node) && (binding?.scope.block.type === "Program" || parentScope === binding?.scope)) {
|
385
|
+
const _node = nodeCollection.getNode(path1.node.name);
|
386
|
+
if (_node?.info?.used) {
|
387
|
+
_node?.info?.used?.add(hookName);
|
388
|
+
} else if (_node) {
|
389
|
+
_node.info = {
|
390
|
+
..._node?.info,
|
391
|
+
used: /* @__PURE__ */ new Set([hookName])
|
392
|
+
};
|
393
|
+
}
|
394
|
+
}
|
395
|
+
}
|
396
|
+
}, patentScope, node);
|
397
|
+
} else if (hookName === "watch") {
|
398
|
+
if (expression.arguments[0].type === "Identifier") {
|
399
|
+
const binding = patentScope.getBinding(expression.arguments[0].name);
|
400
|
+
if (graph.nodes.has(expression.arguments[0].name) && (binding?.scope.block.type === "Program" || parentScope === binding?.scope)) {
|
401
|
+
watchArgs.add(expression.arguments[0]);
|
402
|
+
}
|
403
|
+
} else {
|
404
|
+
traverse2(expression.arguments[0], {
|
405
|
+
Identifier(path1) {
|
406
|
+
const binding = path1.scope.getBinding(path1.node.name);
|
407
|
+
if (graph.nodes.has(path1.node.name) && (path1.parent.type !== "MemberExpression" && path1.parent.type !== "OptionalMemberExpression" || path1.parent.object === path1.node) && (binding?.scope.block.type === "Program" || parentScope === binding?.scope)) {
|
408
|
+
watchArgs.add(path1.node);
|
409
|
+
}
|
410
|
+
}
|
411
|
+
}, patentScope, node);
|
412
|
+
}
|
413
|
+
} else if (hookName === "useEffect" && expression.arguments[1].type === "ArrayExpression") {
|
414
|
+
traverse2(expression.arguments[1], {
|
415
|
+
Identifier(path1) {
|
416
|
+
const binding = path1.scope.getBinding(path1.node.name);
|
417
|
+
if (graph.nodes.has(path1.node.name) && (path1.parent.type !== "MemberExpression" && path1.parent.type !== "OptionalMemberExpression" || path1.parent.object === path1.node) && (binding?.scope.block.type === "Program" || parentScope === binding?.scope)) {
|
418
|
+
watchArgs.add(path1.node);
|
419
|
+
}
|
420
|
+
}
|
421
|
+
}, patentScope, node);
|
422
|
+
}
|
423
|
+
expression.arguments.forEach((argNode, index) => {
|
424
|
+
if (hookName === "watch" && index === 0 && argNode.type === "Identifier") {
|
425
|
+
const _node = nodeCollection.getNode(argNode.name);
|
426
|
+
if (_node?.info?.used) {
|
427
|
+
_node?.info?.used?.add(hookName);
|
428
|
+
} else if (_node) {
|
429
|
+
_node.info = {
|
430
|
+
..._node?.info,
|
431
|
+
used: /* @__PURE__ */ new Set([hookName])
|
432
|
+
};
|
433
|
+
}
|
434
|
+
return;
|
435
|
+
}
|
436
|
+
traverse2(argNode, {
|
437
|
+
Identifier(path1) {
|
438
|
+
const binding = path1.scope.getBinding(path1.node.name);
|
439
|
+
if (graph.nodes.has(path1.node.name) && (path1.parent.type !== "MemberExpression" && path1.parent.type !== "OptionalMemberExpression" || path1.parent.object === path1.node) && (binding?.scope.block.type === "Program" || parentScope === binding?.scope)) {
|
440
|
+
if (["watch", "useEffect"].includes(hookName) && watchArgs.size > 0) {
|
441
|
+
const watchArgsNames = Array.from(watchArgs).map((arg) => arg.name);
|
442
|
+
watchArgs.forEach((watchArg) => {
|
443
|
+
if (!watchArgsNames.includes(path1.node.name)) {
|
444
|
+
graph.edges.get(watchArg.name)?.add(path1.node.name);
|
445
|
+
}
|
446
|
+
});
|
447
|
+
}
|
448
|
+
const _node = nodeCollection.getNode(path1.node.name);
|
449
|
+
if (_node?.info?.used) {
|
450
|
+
_node?.info?.used?.add(hookName);
|
451
|
+
} else if (_node) {
|
452
|
+
_node.info = {
|
453
|
+
..._node?.info,
|
454
|
+
used: /* @__PURE__ */ new Set([hookName])
|
455
|
+
};
|
456
|
+
}
|
457
|
+
}
|
458
|
+
}
|
459
|
+
}, patentScope, node);
|
460
|
+
});
|
461
|
+
}
|
462
|
+
}
|
361
463
|
traverse2(ast, {
|
362
464
|
FunctionDeclaration(path) {
|
363
465
|
const name = path.node.id?.name;
|
@@ -435,6 +537,9 @@ function processSetup(ast, parentScope, parentPath, _spread, _lineOffset = 0) {
|
|
435
537
|
"ArrowFunctionExpression",
|
436
538
|
"FunctionDeclaration"
|
437
539
|
].includes(path.node.init.type) && path.node.id.type === "Identifier") {
|
540
|
+
if (path.node.init.type === "CallExpression" && path.node.init.callee.type === "Identifier" && ["watch", "watchEffect"].includes(path.node.init.callee.name)) {
|
541
|
+
traverseHooks(path.node.init, path.scope);
|
542
|
+
}
|
438
543
|
const name = path.node.id?.name;
|
439
544
|
if (name && graph.nodes.has(name)) {
|
440
545
|
traverse2(path.node.init, {
|
@@ -511,94 +616,24 @@ function processSetup(ast, parentScope, parentPath, _spread, _lineOffset = 0) {
|
|
511
616
|
}
|
512
617
|
},
|
513
618
|
ExpressionStatement(path) {
|
514
|
-
if (path.node.expression.type === "CallExpression" && path.node.expression.callee.type === "Identifier") {
|
515
|
-
const
|
516
|
-
|
517
|
-
|
518
|
-
|
519
|
-
|
520
|
-
|
521
|
-
|
522
|
-
|
523
|
-
|
524
|
-
|
525
|
-
if (graph.nodes.has(path1.node.name) && (path1.parent.type !== "MemberExpression" && path1.parent.type !== "OptionalMemberExpression" || path1.parent.object === path1.node) && (binding?.scope.block.type === "Program" || parentScope === binding?.scope)) {
|
526
|
-
const _node = nodeCollection.getNode(path1.node.name);
|
527
|
-
if (_node?.info?.used) {
|
528
|
-
_node?.info?.used?.add(hookName);
|
529
|
-
} else if (_node) {
|
530
|
-
_node.info = {
|
531
|
-
..._node?.info,
|
532
|
-
used: /* @__PURE__ */ new Set([hookName])
|
533
|
-
};
|
534
|
-
}
|
535
|
-
}
|
536
|
-
}
|
537
|
-
}, path.scope, path);
|
538
|
-
} else if (hookName === "watch") {
|
539
|
-
if (path.node.expression.arguments[0].type === "Identifier") {
|
540
|
-
const binding = path.scope.getBinding(path.node.expression.arguments[0].name);
|
541
|
-
if (graph.nodes.has(path.node.expression.arguments[0].name) && (binding?.scope.block.type === "Program" || parentScope === binding?.scope)) {
|
542
|
-
watchArgs.add(path.node.expression.arguments[0]);
|
543
|
-
}
|
544
|
-
} else {
|
545
|
-
traverse2(path.node.expression.arguments[0], {
|
546
|
-
Identifier(path1) {
|
547
|
-
const binding = path1.scope.getBinding(path1.node.name);
|
548
|
-
if (graph.nodes.has(path1.node.name) && (path1.parent.type !== "MemberExpression" && path1.parent.type !== "OptionalMemberExpression" || path1.parent.object === path1.node) && (binding?.scope.block.type === "Program" || parentScope === binding?.scope)) {
|
549
|
-
watchArgs.add(path1.node);
|
550
|
-
}
|
551
|
-
}
|
552
|
-
}, path.scope, path);
|
619
|
+
if (path.type === "ExpressionStatement" && path.node.expression.type === "CallExpression" && path.node.expression.callee.type === "Identifier") {
|
620
|
+
const name = path.node.expression.callee.name;
|
621
|
+
if (graph.nodes.has(name) && path.scope.block.type === "Program") {
|
622
|
+
const _node = nodeCollection.getNode(name);
|
623
|
+
if (_node?.info?.used) {
|
624
|
+
_node?.info?.used?.add("Call Expression");
|
625
|
+
} else if (_node) {
|
626
|
+
_node.info = {
|
627
|
+
..._node?.info,
|
628
|
+
used: /* @__PURE__ */ new Set(["Call Expression"])
|
629
|
+
};
|
553
630
|
}
|
554
|
-
} else
|
555
|
-
|
556
|
-
Identifier(path1) {
|
557
|
-
const binding = path1.scope.getBinding(path1.node.name);
|
558
|
-
if (graph.nodes.has(path1.node.name) && (path1.parent.type !== "MemberExpression" && path1.parent.type !== "OptionalMemberExpression" || path1.parent.object === path1.node) && (binding?.scope.block.type === "Program" || parentScope === binding?.scope)) {
|
559
|
-
watchArgs.add(path1.node);
|
560
|
-
}
|
561
|
-
}
|
562
|
-
}, path.scope, path);
|
631
|
+
} else {
|
632
|
+
traverseHooks(path.node.expression, path.scope);
|
563
633
|
}
|
564
|
-
|
565
|
-
|
566
|
-
|
567
|
-
if (_node?.info?.used) {
|
568
|
-
_node?.info?.used?.add(hookName);
|
569
|
-
} else if (_node) {
|
570
|
-
_node.info = {
|
571
|
-
..._node?.info,
|
572
|
-
used: /* @__PURE__ */ new Set([hookName])
|
573
|
-
};
|
574
|
-
}
|
575
|
-
return;
|
576
|
-
}
|
577
|
-
traverse2(argNode, {
|
578
|
-
Identifier(path1) {
|
579
|
-
const binding = path1.scope.getBinding(path1.node.name);
|
580
|
-
if (graph.nodes.has(path1.node.name) && (path1.parent.type !== "MemberExpression" && path1.parent.type !== "OptionalMemberExpression" || path1.parent.object === path1.node) && (binding?.scope.block.type === "Program" || parentScope === binding?.scope)) {
|
581
|
-
if (["watch", "useEffect"].includes(hookName) && watchArgs.size > 0) {
|
582
|
-
const watchArgsNames = Array.from(watchArgs).map((arg) => arg.name);
|
583
|
-
watchArgs.forEach((watchArg) => {
|
584
|
-
if (!watchArgsNames.includes(path1.node.name)) {
|
585
|
-
graph.edges.get(watchArg.name)?.add(path1.node.name);
|
586
|
-
}
|
587
|
-
});
|
588
|
-
}
|
589
|
-
const _node = nodeCollection.getNode(path1.node.name);
|
590
|
-
if (_node?.info?.used) {
|
591
|
-
_node?.info?.used?.add(hookName);
|
592
|
-
} else if (_node) {
|
593
|
-
_node.info = {
|
594
|
-
..._node?.info,
|
595
|
-
used: /* @__PURE__ */ new Set([hookName])
|
596
|
-
};
|
597
|
-
}
|
598
|
-
}
|
599
|
-
}
|
600
|
-
}, path.scope, path);
|
601
|
-
});
|
634
|
+
}
|
635
|
+
if (path.type === "ExpressionStatement" && path.node.expression.type === "AssignmentExpression" && path.node.expression.right.type === "CallExpression" && path.node.expression.right.callee.type === "Identifier") {
|
636
|
+
traverseHooks(path.node.expression.right, path.scope);
|
602
637
|
}
|
603
638
|
}
|
604
639
|
}, parentScope, parentPath);
|
@@ -2242,6 +2277,13 @@ function gen(graph, nodesUsedInTemplate, nodesUsedInStyle = /* @__PURE__ */ new
|
|
2242
2277
|
}
|
2243
2278
|
|
2244
2279
|
// src/vis.ts
|
2280
|
+
function filterNodeUserd(used) {
|
2281
|
+
const usedArray = Array.from(used || []);
|
2282
|
+
return new Set(usedArray.filter((u) => ![
|
2283
|
+
"Assignment Expression",
|
2284
|
+
"Call Expression"
|
2285
|
+
].includes(u)));
|
2286
|
+
}
|
2245
2287
|
function getVisData(graph, nodesUsedInTemplate, nodesUsedInStyle = /* @__PURE__ */ new Set()) {
|
2246
2288
|
const usedNodes = /* @__PURE__ */ new Set([...nodesUsedInTemplate, ...nodesUsedInStyle]);
|
2247
2289
|
const nodes = [];
|
@@ -2252,7 +2294,7 @@ function getVisData(graph, nodesUsedInTemplate, nodesUsedInStyle = /* @__PURE__
|
|
2252
2294
|
label: node.label,
|
2253
2295
|
shape: node.type === "var" ? "dot" : "diamond",
|
2254
2296
|
group: usedNodes.has(node.label) || node.info?.used?.size ? "used" : "normal",
|
2255
|
-
title: `${node.info?.used
|
2297
|
+
title: `${filterNodeUserd(node.info?.used).size ? `used by ${Array.from(filterNodeUserd(node.info?.used))?.map((i) => `\`${i}\``).join(",")}
|
2256
2298
|
|
2257
2299
|
` : ""}${usedNodes.has(node.label) ? `used in ${[
|
2258
2300
|
nodesUsedInStyle.has(node.label) ? "style" : "",
|