@storm-software/untyped
Version:
A package containing `untyped` utilities for building Storm Software libraries and applications
72 lines (56 loc) • 2.83 kB
JavaScript
;Object.defineProperty(exports, "__esModule", {value: true}); function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }
var _chunk73TYVR4Dcjs = require('./chunk-73TYVR4D.cjs');
var _chunkPBRGYMWBcjs = require('./chunk-PBRGYMWB.cjs');
// src/generators/markdown.ts
_chunkPBRGYMWBcjs.init_cjs_shims.call(void 0, );
var _promises = require('fs/promises');
function generateMarkdown(schema) {
return `
<!-- Generated by @storm-software/untyped -->
<!-- Do not edit this file directly -->
${generateMarkdownLevel(schema, schema.title || "", "#").join("\n")}
`;
}
_chunkPBRGYMWBcjs.__name.call(void 0, generateMarkdown, "generateMarkdown");
function generateMarkdownLevel(schema, title, level) {
const lines = [];
lines.push(`${level} ${title}`);
if (schema.type === "object") {
for (const key in schema.properties) {
const val = schema.properties[key];
lines.push("", ...generateMarkdownLevel(val, `\`${key}\``, level + "#"));
}
return lines;
}
lines.push(`- **Type**: \`${schema.markdownType || schema.tsType || schema.type}\``);
if ("default" in schema) {
lines.push(`- **Default**: \`${JSON.stringify(schema.default)}\``);
}
lines.push("");
if (schema.title) {
lines.push("> " + schema.title, "");
}
if (schema.description) {
lines.push("", schema.description, "");
}
return lines;
}
_chunkPBRGYMWBcjs.__name.call(void 0, generateMarkdownLevel, "generateMarkdownLevel");
function generateMarkdownFile(schema, file, config) {
try {
const declarations = _chunkPBRGYMWBcjs.getOutputFile.call(void 0, file, "md");
_chunk73TYVR4Dcjs.writeTrace.call(void 0, `Writing type markdown file ${declarations}`, config);
return _promises.writeFile.call(void 0, declarations, generateMarkdown(schema));
} catch (error) {
_chunk73TYVR4Dcjs.writeError.call(void 0, `Error writing markdown file for ${file.name}
Error:
${_optionalChain([error, 'optionalAccess', _ => _.message]) ? error.message : JSON.stringify(error)}${_optionalChain([error, 'optionalAccess', _2 => _2.stack]) ? `
Stack Trace: ${error.stack}` : ""}
Parsed schema:
${JSON.stringify(schema)}
`, config);
throw error;
}
}
_chunkPBRGYMWBcjs.__name.call(void 0, generateMarkdownFile, "generateMarkdownFile");
exports.generateMarkdown = generateMarkdown; exports.generateMarkdownFile = generateMarkdownFile;