You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			85 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			JavaScript
		
	
			
		
		
	
	
			85 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			JavaScript
		
	
| "use strict";
 | |
| Object.defineProperty(exports, "__esModule", {
 | |
|     value: true
 | |
| });
 | |
| 0 && (module.exports = {
 | |
|     fillMetadataSegment: null,
 | |
|     normalizeMetadataRoute: null
 | |
| });
 | |
| function _export(target, all) {
 | |
|     for(var name in all)Object.defineProperty(target, name, {
 | |
|         enumerable: true,
 | |
|         get: all[name]
 | |
|     });
 | |
| }
 | |
| _export(exports, {
 | |
|     fillMetadataSegment: function() {
 | |
|         return fillMetadataSegment;
 | |
|     },
 | |
|     normalizeMetadataRoute: function() {
 | |
|         return normalizeMetadataRoute;
 | |
|     }
 | |
| });
 | |
| const _ismetadataroute = require("./is-metadata-route");
 | |
| const _path = /*#__PURE__*/ _interop_require_default(require("../../shared/lib/isomorphic/path"));
 | |
| const _serverutils = require("../../server/server-utils");
 | |
| const _routeregex = require("../../shared/lib/router/utils/route-regex");
 | |
| const _hash = require("../../shared/lib/hash");
 | |
| const _apppaths = require("../../shared/lib/router/utils/app-paths");
 | |
| const _normalizepathsep = require("../../shared/lib/page-path/normalize-path-sep");
 | |
| function _interop_require_default(obj) {
 | |
|     return obj && obj.__esModule ? obj : {
 | |
|         default: obj
 | |
|     };
 | |
| }
 | |
| /*
 | |
|  * If there's special convention like (...) or @ in the page path,
 | |
|  * Give it a unique hash suffix to avoid conflicts
 | |
|  *
 | |
|  * e.g.
 | |
|  * /app/open-graph.tsx -> /open-graph/route
 | |
|  * /app/(post)/open-graph.tsx -> /open-graph/route-[0-9a-z]{6}
 | |
|  */ function getMetadataRouteSuffix(page) {
 | |
|     let suffix = "";
 | |
|     if (page.includes("(") && page.includes(")") || page.includes("@")) {
 | |
|         suffix = (0, _hash.djb2Hash)(page).toString(36).slice(0, 6);
 | |
|     }
 | |
|     return suffix;
 | |
| }
 | |
| function fillMetadataSegment(segment, params, imageSegment) {
 | |
|     const pathname = (0, _apppaths.normalizeAppPath)(segment);
 | |
|     const routeRegex = (0, _routeregex.getNamedRouteRegex)(pathname, false);
 | |
|     const route = (0, _serverutils.interpolateDynamicPath)(pathname, params, routeRegex);
 | |
|     const suffix = getMetadataRouteSuffix(segment);
 | |
|     const routeSuffix = suffix ? `-${suffix}` : "";
 | |
|     const { name, ext } = _path.default.parse(imageSegment);
 | |
|     return (0, _normalizepathsep.normalizePathSep)(_path.default.join(route, `${name}${routeSuffix}${ext}`));
 | |
| }
 | |
| function normalizeMetadataRoute(page) {
 | |
|     if (!(0, _ismetadataroute.isMetadataRoute)(page)) {
 | |
|         return page;
 | |
|     }
 | |
|     let route = page;
 | |
|     let suffix = "";
 | |
|     if (page === "/robots") {
 | |
|         route += ".txt";
 | |
|     } else if (page === "/manifest") {
 | |
|         route += ".webmanifest";
 | |
|     } else if (page.endsWith("/sitemap")) {
 | |
|         route += ".xml";
 | |
|     } else {
 | |
|         // Remove the file extension, e.g. /route-path/robots.txt -> /route-path
 | |
|         const pathnamePrefix = page.slice(0, -(_path.default.basename(page).length + 1));
 | |
|         suffix = getMetadataRouteSuffix(pathnamePrefix);
 | |
|     }
 | |
|     // Support both /<metadata-route.ext> and custom routes /<metadata-route>/route.ts.
 | |
|     // If it's a metadata file route, we need to append /[id]/route to the page.
 | |
|     if (!route.endsWith("/route")) {
 | |
|         const { dir, name: baseName, ext } = _path.default.parse(route);
 | |
|         const isStaticRoute = (0, _ismetadataroute.isStaticMetadataRoute)(page);
 | |
|         route = _path.default.posix.join(dir, `${baseName}${suffix ? `-${suffix}` : ""}${ext}`, isStaticRoute ? "" : "[[...__metadata_id__]]", "route");
 | |
|     }
 | |
|     return route;
 | |
| }
 | |
| 
 | |
| //# sourceMappingURL=get-metadata-route.js.map
 |