blob: 4bf4dd3873e235d5df1387a880059666374235f7 (
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 "./Post";
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)
}
}
|