blob: c363c67beb10e2749d84c174d3e14b8b47f64493 (
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
|
import { Post } from "./interfaces";
import { parsePost } from "./parsePost";
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 = parsePost(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 };
|