You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
900 B
29 lines
900 B
const crypto = require(`crypto`)
|
|
|
|
// docblock goes here
|
|
const createContentDigest = obj => crypto
|
|
.createHash(`md5`)
|
|
.update(obj)
|
|
.digest(`hex`)
|
|
|
|
// Store code snippets in GraphQL for the home page examples.
|
|
// Snippets will be matched with markdown templates of the same name.
|
|
exports.onCreateNode = async ({node, loadNodeContent, actions}) => {
|
|
const {createNode} = actions;
|
|
const {absolutePath, ext, name, relativeDirectory, sourceInstanceName} = node
|
|
|
|
if (sourceInstanceName === 'content' && relativeDirectory === 'home/examples' && ext === '.js') {
|
|
const code = await loadNodeContent(node);
|
|
createNode({
|
|
id: name,
|
|
children: [],
|
|
parent: 'EXAMPLES',
|
|
code,
|
|
mdAbsolutePath: absolutePath.replace(/\.js$/, '.md'),
|
|
internal: {
|
|
type: 'ExampleCode',
|
|
contentDigest: createContentDigest(JSON.stringify(code)),
|
|
},
|
|
});
|
|
}
|
|
};
|
|
|