summary refs log tree commit diff
path: root/src/getPosts.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/getPosts.ts')
-rw-r--r--src/getPosts.ts36
1 files changed, 0 insertions, 36 deletions
diff --git a/src/getPosts.ts b/src/getPosts.ts
deleted file mode 100644
index 4170292..0000000
--- a/src/getPosts.ts
+++ /dev/null
@@ -1,36 +0,0 @@
-import * as fs from "fs";
-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 };