UNPKG

next-runtime-sitemap

Version:

Generates a sitemap for nextjs apps at runtime, using a crawl of the local filesystem

41 lines (40 loc) 1.77 kB
"use strict"; var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } return new (P || (P = Promise))(function (resolve, reject) { function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.introspectFile = introspectFile; const node_path_1 = __importDefault(require("node:path")); const promises_1 = require("fs/promises"); function introspectFile(dir, page, fileSuffixRE) { return __awaiter(this, void 0, void 0, function* () { const fullPath = node_path_1.default.join(dir, page); try { const [pageContent, stats] = yield Promise.all([ (0, promises_1.readFile)(fullPath, "utf8"), (0, promises_1.stat)(fullPath), ]); const pageParsed = JSON.parse(pageContent); return { path: page.replace(fileSuffixRE, ""), status: pageParsed.status, stats, }; } catch (err) { return { path: err.message, status: 500, }; } }); }