blob: f9647bc52d67ba2469d6546ed876d6349aeb0b44 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
import { getPost as apiGetPost } from "./getPost";
import { getPosts as apiGetPosts } from "./getPosts";
import { generateApi as apiGenerateApi } from "./generateApi"
import { Post } from "./interfaces";
export default class Kronikarz {
postPath: string;
constructor(postPath: string) {
this.postPath = postPath;
}
getPosts(): Array<Post> {
return apiGetPosts(this.postPath);
}
getPost(year: string, month: string, day: string, title: string): Post {
return apiGetPost({ year, month, day, title }, this.postPath);
}
generateApi(path: string) {
const posts = this.getPosts();
apiGenerateApi(posts, path)
}
}
|