summary refs log tree commit diff
path: root/src/getPosts.ts
blob: 893946dd99a8032b1cbd355c04022c0ede78ac69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
import * as fs from "fs";
import { JSDOM } from "jsdom";
import { Post } from "./interfaces";

const frontmatter = require("front-matter");
const md = require("markdown-it")();

function getPostAttributes(fileContent: string) {
  const post = frontmatter(fileContent);

  const { document } = new JSDOM(`<body>${md.render(post.body)}</body>`).window;
  const element = document.getElementsByTagName("p");

  post.body = `<div>${md.render(post.body)}</div>`;
  post.description = element[1].textContent;

  return post;
}

function getPosts(path: string) {
  let routesArray: Post[] = [];
  try {
    const years = fs.readdirSync(`${path}`);
    console.log(years);
    years.forEach((year: string) => {
      const months = fs.readdirSync(`${path}/${year}`);
      months.forEach((month: string) => {
        const days = fs.readdirSync(`${path}/${year}/${month}`);
        days.forEach((day: string) => {
          const files = fs.readdirSync(`${path}/${year}/${month}/${day}`);
          files.forEach((file: string) => {
            const title = file.substr(0, file.lastIndexOf("."));
            const route = `/kronika/${year}/${month}/${day}/${title}/`;
            const fsRoute = `${path}/${year}/${month}/${day}/${file}`;

            const data = getPostAttributes(fs.readFileSync(fsRoute, "utf-8"));

            const post = {
              date: { year, month, day },
              title,
              data,
              file,
              fsRoute,
              route
            };

            routesArray.push(post);
          });
        });
      });
    });
  } finally {
    return routesArray;
  }
}

function createRoutesArray() {
  // let posts = getPosts();
  // return posts.map(post => post.route);
}

export { getPosts, createRoutesArray, getPostAttributes };