@tanstack/router-plugin
Version:
Modern and scalable routing for React applications
103 lines (102 loc) • 3.35 kB
JavaScript
require("../_virtual/_rolldown/runtime.cjs");
const require_config = require("./config.cjs");
let _tanstack_router_generator = require("@tanstack/router-generator");
let node_path = require("node:path");
//#region src/core/router-generator-plugin.ts
var PLUGIN_NAME = "unplugin:router-generator";
var unpluginRouterGeneratorFactory = (options = {}) => {
let ROOT = process.cwd();
let userConfig;
let generator;
const routeGenerationDisabled = () => userConfig.enableRouteGeneration === false;
const getRoutesDirectoryPath = () => {
return (0, node_path.isAbsolute)(userConfig.routesDirectory) ? userConfig.routesDirectory : (0, node_path.join)(ROOT, userConfig.routesDirectory);
};
const initConfigAndGenerator = (opts) => {
if (opts?.root) ROOT = opts.root;
if (typeof options === "function") userConfig = options();
else userConfig = require_config.getConfig(options, ROOT);
generator = new _tanstack_router_generator.Generator({
config: userConfig,
root: ROOT
});
};
const generate = async (opts) => {
if (routeGenerationDisabled()) return;
let generatorEvent = void 0;
if (opts) {
const filePath = (0, node_path.normalize)(opts.file);
if (filePath === (0, _tanstack_router_generator.resolveConfigPath)({ configDirectory: ROOT })) {
initConfigAndGenerator();
return;
}
generatorEvent = {
path: filePath,
type: opts.event
};
}
try {
await generator.run(generatorEvent);
globalThis.TSR_ROUTES_BY_ID_MAP = generator.getRoutesByFileMap();
} catch (e) {
console.error(e);
}
};
return {
name: "tanstack:router-generator",
enforce: "pre",
async watchChange(id, { event }) {
await generate({
file: id,
event
});
},
vite: { async configResolved(config) {
initConfigAndGenerator({ root: config.root });
await generate();
} },
rspack(compiler) {
initConfigAndGenerator();
let handle = null;
compiler.hooks.beforeRun.tapPromise(PLUGIN_NAME, () => generate());
compiler.hooks.watchRun.tapPromise(PLUGIN_NAME, async () => {
if (handle) return;
const routesDirectoryPath = getRoutesDirectoryPath();
handle = (await import("chokidar")).watch(routesDirectoryPath, { ignoreInitial: true }).on("add", (file) => generate({
file,
event: "create"
}));
await generate();
});
compiler.hooks.watchClose.tap(PLUGIN_NAME, async () => {
if (handle) await handle.close();
});
},
webpack(compiler) {
initConfigAndGenerator();
let handle = null;
compiler.hooks.beforeRun.tapPromise(PLUGIN_NAME, () => generate());
compiler.hooks.watchRun.tapPromise(PLUGIN_NAME, async () => {
if (handle) return;
const routesDirectoryPath = getRoutesDirectoryPath();
handle = (await import("chokidar")).watch(routesDirectoryPath, { ignoreInitial: true }).on("add", (file) => generate({
file,
event: "create"
}));
await generate();
});
compiler.hooks.watchClose.tap(PLUGIN_NAME, async () => {
if (handle) await handle.close();
});
compiler.hooks.done.tap(PLUGIN_NAME, () => {
console.info("✅ " + PLUGIN_NAME + ": route-tree generation done");
});
},
esbuild: { config() {
initConfigAndGenerator();
} }
};
};
//#endregion
exports.unpluginRouterGeneratorFactory = unpluginRouterGeneratorFactory;
//# sourceMappingURL=router-generator-plugin.cjs.map