static-cms/src/formats/frontmatter.js

60 lines
1.8 KiB
JavaScript
Raw Normal View History

import matter from 'gray-matter';
import tomlFormatter from './toml';
import yamlFormatter from './yaml';
import jsonFormatter from './json';
const parsers = {
toml: input => tomlFormatter.fromFile(input),
json: input => {
let JSONinput = input.trim();
// Fix JSON if leading and trailing brackets were trimmed.
if (JSONinput.substr(0, 1) !== '{') {
JSONinput = '{' + JSONinput;
}
if (JSONinput.substr(-1) !== '}') {
JSONinput = JSONinput + '}';
}
return jsonFormatter.fromFile(JSONinput);
},
yaml: {
parse: input => yamlFormatter.fromFile(input),
stringify: (metadata, { sortedKeys }) => yamlFormatter.toFile(metadata, sortedKeys),
},
}
2017-09-12 20:51:40 -06:00
function inferFrontmatterFormat(str) {
const firstLine = str.substr(0, str.indexOf('\n')).trim();
if ((firstLine.length > 3) && (firstLine.substr(0, 3) === "---")) {
// No need to infer, `gray-matter` will handle things like `---toml` for us.
return;
}
2017-09-12 20:51:40 -06:00
switch (firstLine) {
case "---":
return { language: "yaml", delimiters: "---" };
2017-09-12 20:51:40 -06:00
case "+++":
return { language: "toml", delimiters: "+++" };
2017-09-12 20:51:40 -06:00
case "{":
return { language: "json", delimiters: ["{", "}"] };
default:
2017-10-26 13:16:44 -06:00
throw "Unrecognized front-matter format.";
2017-09-12 20:51:40 -06:00
}
}
export default {
fromFile(content) {
const result = matter(content, { engines: parsers, ...inferFrontmatterFormat(content) });
return {
...result.data,
body: result.content,
};
},
toFile(data, sortedKeys) {
const { body = '', ...meta } = data;
2017-04-07 22:40:30 +01:00
// always stringify to YAML
// `sortedKeys` is not recognized by gray-matter, so it gets passed through to the parser
return matter.stringify(body, meta, { engines: parsers, language: "yaml", delimiters: "---", sortedKeys });
}
}