feat: init
This commit is contained in:
61
node_modules/@nuxt/devtools/dist/chunks/vite-inspect.mjs
generated
vendored
Normal file
61
node_modules/@nuxt/devtools/dist/chunks/vite-inspect.mjs
generated
vendored
Normal file
@@ -0,0 +1,61 @@
|
||||
import { addCustomTab } from '@nuxt/devtools-kit';
|
||||
import { addVitePlugin } from '@nuxt/kit';
|
||||
|
||||
async function createVitePluginInspect(options) {
|
||||
return await import('vite-plugin-inspect').then((r) => r.default(options));
|
||||
}
|
||||
async function setup({ nuxt, rpc }) {
|
||||
const plugin = await createVitePluginInspect();
|
||||
addVitePlugin(plugin);
|
||||
let api;
|
||||
nuxt.hook("vite:serverCreated", () => {
|
||||
api = plugin.api;
|
||||
});
|
||||
addCustomTab(() => ({
|
||||
name: "builtin-vite-inspect",
|
||||
title: "Inspect",
|
||||
icon: "carbon-ibm-watson-discovery",
|
||||
category: "advanced",
|
||||
view: {
|
||||
type: "iframe",
|
||||
src: `${nuxt.options.app.baseURL}${nuxt.options.app.buildAssetsDir}/__inspect/`.replace(/\/\//g, "/")
|
||||
}
|
||||
}), nuxt);
|
||||
async function getComponentsRelationships() {
|
||||
const meta = await api?.rpc.getMetadata();
|
||||
const modules = (meta && meta.instances[0] ? await api?.rpc.getModulesList({
|
||||
vite: meta.instances[0].vite,
|
||||
env: meta.instances[0].environments[0]
|
||||
}) : null) || [];
|
||||
const components = await rpc.functions.getComponents() || [];
|
||||
const vueModules = modules.filter((m) => {
|
||||
const plainId = m.id.replace(/\?v=\w+$/, "");
|
||||
if (components.some((c) => c.filePath === plainId))
|
||||
return true;
|
||||
return m.id.match(/\.vue($|\?v=)/);
|
||||
});
|
||||
const graph = vueModules.map((i) => {
|
||||
function searchForVueDeps(id, seen = /* @__PURE__ */ new Set()) {
|
||||
if (seen.has(id))
|
||||
return [];
|
||||
seen.add(id);
|
||||
const module = modules.find((m) => m.id === id);
|
||||
if (!module)
|
||||
return [];
|
||||
return module.deps.flatMap((i2) => {
|
||||
if (vueModules.find((m) => m.id === i2))
|
||||
return [i2];
|
||||
return searchForVueDeps(i2, seen);
|
||||
});
|
||||
}
|
||||
return {
|
||||
id: i.id,
|
||||
deps: searchForVueDeps(i.id)
|
||||
};
|
||||
});
|
||||
return graph;
|
||||
}
|
||||
rpc.functions.getComponentsRelationships = getComponentsRelationships;
|
||||
}
|
||||
|
||||
export { createVitePluginInspect, setup };
|
||||
Reference in New Issue
Block a user