UNPKG

next

Version:

The React Framework

33 lines (32 loc) 1.25 kB
import { denormalizePagePath } from "./denormalize-page-path"; import { flatten } from "../flatten"; import path from "../isomorphic/path"; /** * Calculate all possible pagePaths for a given normalized pagePath along with * allowed extensions. This can be used to check which one of the files exists * and to debug inspected locations. * * For pages, map `/route` to [`/route.[ext]`, `/route/index.[ext]`] * For app paths, map `/route/page` to [`/route/page.[ext]`] * * @param normalizedPagePath Normalized page path (it will denormalize). * @param extensions Allowed extensions. */ export function getPagePaths(normalizedPagePath, extensions, isAppDir) { const page = denormalizePagePath(normalizedPagePath); return flatten(extensions.map((extension)=>{ const appPage = page + "." + extension; const folderIndexPage = path.join(page, "index." + extension); if (!normalizedPagePath.endsWith("/index")) { return isAppDir ? [ appPage ] : [ page + "." + extension, folderIndexPage ]; } return [ isAppDir ? appPage : folderIndexPage ]; })); } //# sourceMappingURL=get-page-paths.js.map