2018-07-12 17:21:42 +02:00
|
|
|
"use strict";
|
|
|
|
|
|
|
|
|
|
|
|
|
2018-11-30 21:46:22 +01:00
|
|
|
// I M P O R T S
|
2018-07-12 17:21:42 +02:00
|
|
|
|
2018-10-12 00:16:11 +02:00
|
|
|
import fm from "front-matter";
|
2018-08-29 01:57:18 +02:00
|
|
|
import fs from "graceful-fs";
|
|
|
|
import html from "choo/html";
|
|
|
|
import raw from "choo/html/raw";
|
|
|
|
|
2018-10-10 19:56:35 +02:00
|
|
|
// U T I L S
|
|
|
|
|
2018-11-30 21:46:22 +01:00
|
|
|
import markdown from "../components/markdown";
|
|
|
|
import redirect404 from "../modules/redirect-404";
|
2018-07-12 17:21:42 +02:00
|
|
|
|
2018-10-01 22:47:10 +02:00
|
|
|
|
|
|
|
|
2018-07-13 23:58:24 +02:00
|
|
|
// E X P O R T
|
2018-07-12 17:21:42 +02:00
|
|
|
|
2018-11-30 21:46:22 +01:00
|
|
|
export default (state, emit) => { // eslint-disable-line
|
2018-10-08 16:36:09 +02:00
|
|
|
const partialPath = state.route === "resources/*" ? `resources/${state.params.wildcard}` : state.params.wildcard;
|
|
|
|
const path = `./documents/${partialPath}.md`;
|
2018-07-12 17:21:42 +02:00
|
|
|
|
2018-10-12 00:10:32 +02:00
|
|
|
if (!fs.existsSync(path))
|
2018-10-01 22:47:10 +02:00
|
|
|
return redirect404(state);
|
2018-07-12 17:21:42 +02:00
|
|
|
|
2018-10-08 16:36:09 +02:00
|
|
|
const markdownFile = fs.readFileSync(path, "utf-8");
|
2018-07-12 17:21:42 +02:00
|
|
|
const markdownFileDetails = fm(markdownFile);
|
2018-09-28 23:20:51 +02:00
|
|
|
|
|
|
|
if (markdownFileDetails.attributes.meta) {
|
|
|
|
const customMetadata = {};
|
|
|
|
|
|
|
|
for (const key in markdownFileDetails.attributes.meta) {
|
|
|
|
if (markdownFileDetails.attributes.meta.hasOwnProperty(key)) {
|
|
|
|
customMetadata[Object.keys(markdownFileDetails.attributes.meta[key])[0]] =
|
|
|
|
markdownFileDetails.attributes.meta[key][Object.keys(markdownFileDetails.attributes.meta[key])[0]];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-08 16:36:09 +02:00
|
|
|
// below seems evil
|
2018-09-28 23:20:51 +02:00
|
|
|
state.lbry = customMetadata;
|
|
|
|
}
|
2018-07-12 17:21:42 +02:00
|
|
|
|
2018-10-08 16:36:09 +02:00
|
|
|
// below should be refactored into components
|
2018-07-16 23:06:37 +02:00
|
|
|
let pageScript = "";
|
2018-10-06 22:53:01 +02:00
|
|
|
|
2018-12-03 22:29:06 +01:00
|
|
|
if (partialPath === "glossary")
|
|
|
|
pageScript = "<script>" + fs.readFileSync(`${process.cwd()}/app/components/client/glossary-scripts.js`, "utf-8") + "</script>";
|
|
|
|
|
|
|
|
if (partialPath === "overview")
|
|
|
|
pageScript = "<script>" + fs.readFileSync(`${process.cwd()}/app/components/client/ecosystem-scripts.js`, "utf-8") + "</script>";
|
|
|
|
|
|
|
|
if (partialPath === "playground")
|
|
|
|
pageScript = "<script>" + fs.readFileSync(`${process.cwd()}/app/components/client/playground-scripts.js`, "utf-8") + "</script>";
|
2018-07-12 17:21:42 +02:00
|
|
|
|
|
|
|
return html`
|
|
|
|
<article class="page" itemtype="http://schema.org/BlogPosting">
|
|
|
|
<header class="page__header">
|
|
|
|
<div class="page__header-wrap">
|
|
|
|
<div class="inner-wrap">
|
|
|
|
<h1 class="page__header__title" itemprop="name headline">${markdownFileDetails.attributes.title}</h1>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
|
|
|
|
<section class="page__content" itemprop="articleBody">
|
|
|
|
<div class="inner-wrap">
|
2018-10-08 16:36:09 +02:00
|
|
|
${markdown(path)}
|
2018-07-16 23:06:37 +02:00
|
|
|
${raw(pageScript)}
|
2018-07-12 17:21:42 +02:00
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
</article>
|
|
|
|
`;
|
|
|
|
};
|