silverbullet/plugs/query/util.ts

67 lines
1.7 KiB
TypeScript
Raw Normal View History

2022-04-29 19:37:31 +08:00
const maxWidth = 70;
// Nicely format an array of JSON objects as a Markdown table
export function jsonToMDTable(
jsonArray: any[],
2022-10-16 01:02:56 +08:00
valueTransformer: (k: string, v: any) => string = (_k, v) => "" + v,
): string {
2022-10-14 21:11:33 +08:00
const fieldWidths = new Map<string, number>();
2022-10-16 01:02:56 +08:00
for (const entry of jsonArray) {
for (const k of Object.keys(entry)) {
2022-04-29 19:37:31 +08:00
let fieldWidth = fieldWidths.get(k);
if (!fieldWidth) {
fieldWidth = valueTransformer(k, entry[k]).length;
} else {
fieldWidth = Math.max(valueTransformer(k, entry[k]).length, fieldWidth);
}
fieldWidths.set(k, fieldWidth);
}
}
2022-04-29 19:37:31 +08:00
let fullWidth = 0;
2022-10-16 01:02:56 +08:00
for (const v of fieldWidths.values()) {
2022-04-29 19:37:31 +08:00
fullWidth += v + 1;
}
2022-10-14 21:11:33 +08:00
const headerList = [...fieldWidths.keys()];
const lines = [];
2022-04-29 19:37:31 +08:00
lines.push(
"|" +
headerList
.map(
(headerName) =>
headerName +
2022-10-12 17:47:13 +08:00
charPad(" ", fieldWidths.get(headerName)! - headerName.length),
2022-04-29 19:37:31 +08:00
)
.join("|") +
2022-10-12 17:47:13 +08:00
"|",
2022-04-29 19:37:31 +08:00
);
lines.push(
"|" +
headerList
.map((title) => charPad("-", fieldWidths.get(title)!))
.join("|") +
2022-10-12 17:47:13 +08:00
"|",
2022-04-29 19:37:31 +08:00
);
for (const val of jsonArray) {
2022-10-16 01:02:56 +08:00
const el = [];
for (const prop of headerList) {
const s = valueTransformer(prop, val[prop]);
2022-04-29 19:37:31 +08:00
el.push(s + charPad(" ", fieldWidths.get(prop)! - s.length));
}
lines.push("|" + el.join("|") + "|");
}
return lines.join("\n");
2022-04-29 19:37:31 +08:00
function charPad(ch: string, length: number) {
if (fullWidth > maxWidth && ch === "") {
return "";
} else if (fullWidth > maxWidth && ch === "-") {
return "--";
}
if (length < 1) {
return "";
}
return new Array(length + 1).join(ch);
}
}