@shaper.org/vite-react-plugin 1.0.14 → 1.0.15
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.mjs +34 -8
- package/package.json +1 -1
- package/templates/main.ts +2 -1
package/dist/index.mjs
CHANGED
|
@@ -1799,14 +1799,40 @@ function jsxSourcePlugin(options = {}) {
|
|
|
1799
1799
|
runtime: "automatic"
|
|
1800
1800
|
}], "@babel/preset-typescript"],
|
|
1801
1801
|
plugins: [function injectSourceFile() {
|
|
1802
|
-
return { visitor: {
|
|
1803
|
-
|
|
1804
|
-
|
|
1805
|
-
|
|
1806
|
-
|
|
1807
|
-
|
|
1808
|
-
|
|
1809
|
-
|
|
1802
|
+
return { visitor: {
|
|
1803
|
+
Program(programPath, state) {
|
|
1804
|
+
const root = state.file.opts.root;
|
|
1805
|
+
const filename = state.file.opts.filename;
|
|
1806
|
+
const relativeFilename = PathUtil.relative(root, filename);
|
|
1807
|
+
const injected = /* @__PURE__ */ new Set();
|
|
1808
|
+
function injectAtProgramEnd(name) {
|
|
1809
|
+
if (injected.has(name)) return;
|
|
1810
|
+
injected.add(name);
|
|
1811
|
+
programPath.pushContainer("body", t.expressionStatement(t.assignmentExpression("=", t.memberExpression(t.identifier(name), t.identifier("__file")), t.stringLiteral(relativeFilename))));
|
|
1812
|
+
}
|
|
1813
|
+
programPath.traverse({
|
|
1814
|
+
ExportNamedDeclaration(path) {
|
|
1815
|
+
const decl = path.node.declaration;
|
|
1816
|
+
if (t.isFunctionDeclaration(decl) && decl.id) injectAtProgramEnd(decl.id.name);
|
|
1817
|
+
if (t.isVariableDeclaration(decl)) {
|
|
1818
|
+
for (const d of decl.declarations) if (t.isIdentifier(d.id) && (t.isArrowFunctionExpression(d.init) || t.isFunctionExpression(d.init))) injectAtProgramEnd(d.id.name);
|
|
1819
|
+
}
|
|
1820
|
+
},
|
|
1821
|
+
ExportDefaultDeclaration(path) {
|
|
1822
|
+
const decl = path.node.declaration;
|
|
1823
|
+
if (t.isIdentifier(decl)) injectAtProgramEnd(decl.name);
|
|
1824
|
+
}
|
|
1825
|
+
});
|
|
1826
|
+
},
|
|
1827
|
+
JSXOpeningElement(path, state) {
|
|
1828
|
+
const root = state.file.opts.root;
|
|
1829
|
+
const filename = state.file.opts.filename;
|
|
1830
|
+
const relativeFilename = PathUtil.relative(root, filename);
|
|
1831
|
+
const { line, column } = path.node.loc.start;
|
|
1832
|
+
const attr = t.jsxAttribute(t.jsxIdentifier("data-loc"), t.stringLiteral(`${relativeFilename}:${line}:${column}`));
|
|
1833
|
+
path.node.attributes.push(attr);
|
|
1834
|
+
}
|
|
1835
|
+
} };
|
|
1810
1836
|
}]
|
|
1811
1837
|
});
|
|
1812
1838
|
if (!result) return null;
|
package/package.json
CHANGED
package/templates/main.ts
CHANGED
|
@@ -138,10 +138,11 @@ export class ReactRouteMonitor {
|
|
|
138
138
|
const validRoutes = event.detail.routes.filter(
|
|
139
139
|
(route) => route.element !== undefined && route.path !== "*",
|
|
140
140
|
);
|
|
141
|
+
|
|
141
142
|
const routes = validRoutes.map((route) => ({
|
|
142
143
|
name: route.path,
|
|
143
144
|
path: route.path,
|
|
144
|
-
file: route.element.type
|
|
145
|
+
file: route.element.type.__file,
|
|
145
146
|
}));
|
|
146
147
|
|
|
147
148
|
this.iframeClient.sendAllRoutes(routes);
|