UNPKG

1.84 kBJavaScriptView Raw
1"use strict";exports.__esModule=true;exports.pageNotFoundError=pageNotFoundError;exports.getPagePath=getPagePath;exports.requirePage=requirePage;exports.requireFontManifest=requireFontManifest;var _fs=require("fs");var _path=require("path");var _constants=require("../lib/constants");var _normalizePagePath=require("./normalize-page-path");var _normalizeLocalePath=require("../lib/i18n/normalize-locale-path");function pageNotFoundError(page){const err=new Error(`Cannot find module for page: ${page}`);err.code='ENOENT';return err;}function getPagePath(page,distDir,serverless,dev,locales){const serverBuildPath=(0,_path.join)(distDir,serverless&&!dev?_constants.SERVERLESS_DIRECTORY:_constants.SERVER_DIRECTORY);const pagesManifest=require((0,_path.join)(serverBuildPath,_constants.PAGES_MANIFEST));try{page=(0,_normalizePagePath.denormalizePagePath)((0,_normalizePagePath.normalizePagePath)(page));}catch(err){console.error(err);throw pageNotFoundError(page);}let pagePath=pagesManifest[page];if(!pagesManifest[page]&&locales){const manifestNoLocales={};for(const key of Object.keys(pagesManifest)){manifestNoLocales[(0,_normalizeLocalePath.normalizeLocalePath)(key,locales).pathname]=pagesManifest[key];}pagePath=manifestNoLocales[page];}if(!pagePath){throw pageNotFoundError(page);}return(0,_path.join)(serverBuildPath,pagePath);}function requirePage(page,distDir,serverless){const pagePath=getPagePath(page,distDir,serverless);if(pagePath.endsWith('.html')){return _fs.promises.readFile(pagePath,'utf8');}return require(pagePath);}function requireFontManifest(distDir,serverless){const serverBuildPath=(0,_path.join)(distDir,serverless?_constants.SERVERLESS_DIRECTORY:_constants.SERVER_DIRECTORY);const fontManifest=require((0,_path.join)(serverBuildPath,_constants.FONT_MANIFEST));return fontManifest;}
2//# sourceMappingURL=require.js.map
\No newline at end of file