/opt/canhelp/node_modules/next/dist/esm/build/webpack/loaders
NameSizeModeActions
css-loader/-0755rm
devtool/-0755rm
lightningcss-loader/-0755rm
metadata/-0755rm
next-app-loader/-0755rm
next-edge-app-route-loader/-0755rm
next-edge-ssr-loader/-0755rm
next-flight-loader/-0755rm
next-font-loader/-0755rm
next-image-loader/-0755rm
next-route-loader/-0755rm
next-style-loader/-0755rm
postcss-loader/-0755rm
resolve-url-loader/-0755rm
empty-loader.js1140644editdlrm
empty-loader.js.map3740644editdlrm
error-loader.js10280644editdlrm
error-loader.js.map16730644editdlrm
get-module-build-info.js2760644editdlrm
get-module-build-info.js.map19320644editdlrm
modularize-import-loader.js8810644editdlrm
modularize-import-loader.js.map17030644editdlrm
next-barrel-loader.js99640644editdlrm
next-barrel-loader.js.map155070644editdlrm
next-client-pages-loader.js10070644editdlrm
next-client-pages-loader.js.map19040644editdlrm
next-edge-function-loader.js16500644editdlrm
next-edge-function-loader.js.map32160644editdlrm
next-error-browser-binary-loader.js5050644editdlrm
next-error-browser-binary-loader.js.map9130644editdlrm
next-flight-action-entry-loader.js7660644editdlrm
next-flight-action-entry-loader.js.map19410644editdlrm
next-flight-client-entry-loader.js17600644editdlrm
next-flight-client-entry-loader.js.map41450644editdlrm
next-flight-client-module-loader.js19820644editdlrm
next-flight-client-module-loader.js.map34360644editdlrm
next-flight-css-loader.js17050644editdlrm
next-flight-css-loader.js.map30520644editdlrm
next-flight-server-reference-proxy-loader.js11280644editdlrm
next-flight-server-reference-proxy-loader.js.map18690644editdlrm
next-invalid-import-error-loader.js3620644editdlrm
next-invalid-import-error-loader.js.map7210644editdlrm
next-metadata-image-loader.js55820644editdlrm
next-metadata-image-loader.js.map97740644editdlrm
next-metadata-route-loader.js87140644editdlrm
next-metadata-route-loader.js.map136960644editdlrm
next-middleware-asset-loader.js7180644editdlrm
next-middleware-asset-loader.js.map15150644editdlrm
next-middleware-loader.js15600644editdlrm
next-middleware-loader.js.map35850644editdlrm
next-middleware-wasm-loader.js6610644editdlrm
next-middleware-wasm-loader.js.map14680644editdlrm
next-root-params-loader.js48620644editdlrm
next-root-params-loader.js.map85580644editdlrm
next-swc-loader.js90730644editdlrm
next-swc-loader.js.map150380644editdlrm
utils.js29630644editdlrm
utils.js.map58210644editdlrm
Edit: /opt/canhelp/node_modules/next/dist/esm/build/webpack/loaders/next-root-params-loader.js (4862B)
import * as path from 'node:path'; import * as fs from 'node:fs/promises'; import { normalizeAppPath } from '../../../shared/lib/router/utils/app-paths'; import { ensureLeadingSlash } from '../../../shared/lib/page-path/ensure-leading-slash'; import { getSegmentParam } from '../../../server/app-render/get-segment-param'; const rootParamsLoader = async function() { const { appDir, pageExtensions } = this.getOptions(); const allRootParams = await collectRootParamsFromFileSystem({ appDir, pageExtensions }); // invalidate the result whenever a file/directory is added/removed inside the app dir or its subdirectories, // because that might mean that a root layout has been moved. this.addContextDependency(appDir); // If there's no root params, there's nothing to generate. if (allRootParams.size === 0) { return 'export {}'; } // Generate a getter for each root param we found. const sortedRootParamNames = Array.from(allRootParams).sort(); const content = [ `import { getRootParam } from 'next/dist/server/request/root-params';`, ...sortedRootParamNames.map((paramName)=>{ return `export function ${paramName}() { return getRootParam('${paramName}'); }`; }) ].join('\n'); return content; }; export default rootParamsLoader; async function collectRootParamsFromFileSystem(opts) { return collectRootParams({ appDir: opts.appDir, rootLayoutFilePaths: await findRootLayouts(opts) }); } function collectRootParams({ rootLayoutFilePaths, appDir }) { const allRootParams = new Set(); for (const rootLayoutFilePath of rootLayoutFilePaths){ const params = getParamsFromLayoutFilePath({ appDir, layoutFilePath: rootLayoutFilePath }); for (const param of params){ allRootParams.add(param); } } return allRootParams; } async function findRootLayouts({ appDir, pageExtensions }) { const layoutFilenameRegex = new RegExp(`^layout\\.(?:${pageExtensions.join('|')})$`); async function visit(directory) { let dir; try { dir = await fs.readdir(directory, { withFileTypes: true }); } catch (err) { // If the directory was removed before we managed to read it, just ignore it. if (err && typeof err === 'object' && 'code' in err && err.code === 'ENOENT') { return []; } throw err; } const subdirectories = []; for (const entry of dir){ if (entry.isDirectory()) { // Directories that start with an underscore are excluded from routing, so we shouldn't look for layouts inside. if (entry.name[0] === '_') { continue; } // Parallel routes cannot occur above a layout, so they can't contain a root layout. if (entry.name[0] === '@') { continue; } const absolutePathname = path.join(directory, entry.name); subdirectories.push(absolutePathname); } else if (entry.isFile()) { if (layoutFilenameRegex.test(entry.name)) { // We found a root layout, so we're not going to recurse into subdirectories, // meaning that we can skip the rest of the entries. // Note that we don't need to track any of the subdirectories as dependencies -- // changes in the subdirectories will only become relevant if this root layout is (re)moved, // in which case the loader will re-run, traverse deeper (because it no longer stops at this root layout) // and then track those directories as needed. const rootLayoutPath = path.join(directory, entry.name); return [ rootLayoutPath ]; } } } if (subdirectories.length === 0) { return []; } const subdirectoryRootLayouts = await Promise.all(subdirectories.map((subdirectory)=>visit(subdirectory))); return subdirectoryRootLayouts.flat(1); } return visit(appDir); } function getParamsFromLayoutFilePath({ appDir, layoutFilePath }) { const rootLayoutPath = normalizeAppPath(ensureLeadingSlash(path.dirname(path.relative(appDir, layoutFilePath)))); const segments = rootLayoutPath.split('/'); const paramNames = []; for (const segment of segments){ const param = getSegmentParam(segment); if (param !== null) { paramNames.push(param.param); } } return paramNames; } //# sourceMappingURL=next-root-params-loader.js.map