summary refs log tree commit diff
path: root/lib/getPosts.ts
blob: 1821f1249e1df5bf81a06b431f3f3241f083c2e8 (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
import { Post } from "./interfaces";
import { parsePost } from "./parsePost";
import { readDir } from "./utils";

function getPosts(path: string): Array<Post> {
  let routesArray: Post[] = [];
  try {
    const years = readDir(`${path}`);
    years.forEach((year: string) => {
      const months = readDir(`${path}/${year}`);
      months.forEach((month: string) => {
        const days = readDir(`${path}/${year}/${month}`);
        days.forEach((day: string) => {
          const files = readDir(`${path}/${year}/${month}/${day}`);
          files.forEach((file: string) => {
            const fsRoute = `${path}/${year}/${month}/${day}/${file}`;

            const post = parsePost(fsRoute);

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

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

export { getPosts, createRoutesArray };