Remove troublesome FrontMatter pluggin (temporarily)
Cached graph-data, which result in hugely improved build performance and probably browsing experience as well
This commit is contained in:
parent
1a11bdb2b0
commit
233e5ba4ed
@ -65,7 +65,7 @@ export const Transformer = {
|
||||
.use(obsidianImage)
|
||||
.use(highlight)
|
||||
.use(externalLinks, {target: "_blank", rel: ['noopener']})
|
||||
.use(frontmatter, ['yaml', 'toml'])
|
||||
// .use(frontmatter, ['yaml', 'toml'])
|
||||
.use(wikiLinkPlugin, {
|
||||
permalinks: null,
|
||||
pageResolver: function (pageName) {
|
||||
|
69
lib/utils.js
69
lib/utils.js
@ -3,6 +3,8 @@ import {Transformer} from "./transformer";
|
||||
import unified from "unified";
|
||||
import markdown from "remark-parse";
|
||||
import {toString} from 'mdast-util-to-string'
|
||||
import path from "path";
|
||||
import fs from "fs";
|
||||
|
||||
const dirTree = require("directory-tree");
|
||||
|
||||
@ -46,7 +48,7 @@ export function getSinglePost(slug) {
|
||||
//console.log("hrmlcontents and backlinks")
|
||||
return {
|
||||
id: slug,
|
||||
...currentFileFrontMatter,
|
||||
// ...currentFileFrontMatter,
|
||||
data: htmlContent,
|
||||
}
|
||||
|
||||
@ -100,41 +102,48 @@ export function toSlug(filePath) {
|
||||
}
|
||||
|
||||
|
||||
|
||||
export function constructGraphData() {
|
||||
|
||||
const filePaths = getAllMarkdownFiles();
|
||||
const edges = []
|
||||
const nodes = []
|
||||
const filepath = path.join(process.cwd(), "graph-data.json");
|
||||
if (Node.isFile(filepath)) {
|
||||
const data = fs.readFileSync(filepath);
|
||||
return JSON.parse(String(data))
|
||||
} else {
|
||||
const filePaths = getAllMarkdownFiles();
|
||||
const edges = []
|
||||
const nodes = []
|
||||
filePaths
|
||||
.forEach(aFilePath => {
|
||||
// const {currentFilePath} = getFileNames(filename)
|
||||
const aNode = {
|
||||
title: Transformer.parseFileNameFromPath(aFilePath),
|
||||
slug: toSlug(aFilePath),
|
||||
shortSummary: getShortSummary(toSlug(aFilePath))
|
||||
}
|
||||
nodes.push(aNode)
|
||||
|
||||
filePaths
|
||||
.forEach(aFilePath => {
|
||||
// const {currentFilePath} = getFileNames(filename)
|
||||
const aNode = {
|
||||
title: Transformer.parseFileNameFromPath(aFilePath),
|
||||
slug: toSlug(aFilePath),
|
||||
shortSummary: getShortSummary(toSlug(aFilePath))
|
||||
}
|
||||
nodes.push(aNode)
|
||||
// console.log("Constructing graph for node: " + aFilePath )
|
||||
const internalLinks = Transformer.getInternalLinks(aFilePath)
|
||||
internalLinks.forEach(aLink => {
|
||||
|
||||
// console.log("Constructing graph for node: " + aFilePath )
|
||||
const internalLinks = Transformer.getInternalLinks(aFilePath)
|
||||
internalLinks.forEach(aLink => {
|
||||
if (aLink.slug === null || aLink.slug.length === 0) return
|
||||
|
||||
if (aLink.slug === null || aLink.slug.length === 0) return
|
||||
|
||||
const anEdge = {
|
||||
source: toSlug(aFilePath),
|
||||
target: aLink.slug,
|
||||
const anEdge = {
|
||||
source: toSlug(aFilePath),
|
||||
target: aLink.slug,
|
||||
}
|
||||
edges.push(anEdge)
|
||||
// console.log("Source: " + anEdge.source)
|
||||
// console.log("Target: " + anEdge.target)
|
||||
})
|
||||
// console.log("==============Constructing graph" )
|
||||
}
|
||||
edges.push(anEdge)
|
||||
// console.log("Source: " + anEdge.source)
|
||||
// console.log("Target: " + anEdge.target)
|
||||
})
|
||||
// console.log("==============Constructing graph" )
|
||||
}
|
||||
)
|
||||
|
||||
return {nodes, edges};
|
||||
)
|
||||
const data = {nodes, edges};
|
||||
fs.writeFileSync(filepath, JSON.stringify(data), "utf-8");
|
||||
return data;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user