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

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

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

export { getPosts, createRoutesArray };