summary refs log tree commit diff
path: root/lib
diff options
context:
space:
mode:
authorPatryk Niedźwiedziński <pniedzwiedzinski19@gmail.com>2020-01-28 17:53:55 +0100
committerPatryk Niedźwiedziński <pniedzwiedzinski19@gmail.com>2020-01-28 17:53:55 +0100
commit1a5e99c7972968cc384c8dd94bbb92f9c9beac3b (patch)
treeeeb47ac09b408e386b13cfc93ec9da582d17fbaa /lib
parent74ee8edb555ef128112378f828c636bc04533b31 (diff)
downloadkronikarz-1a5e99c7972968cc384c8dd94bbb92f9c9beac3b.tar.gz
kronikarz-1a5e99c7972968cc384c8dd94bbb92f9c9beac3b.zip
Add categories
Diffstat (limited to 'lib')
-rw-r--r--lib/generateApi.ts28
-rw-r--r--lib/interfaces.ts4
2 files changed, 29 insertions, 3 deletions
diff --git a/lib/generateApi.ts b/lib/generateApi.ts
index cade7e4..0024d9f 100644
--- a/lib/generateApi.ts
+++ b/lib/generateApi.ts
@@ -2,6 +2,7 @@ import fs from 'fs';
 import path from 'path';
 import Post from './Post';
 import { dateToPath } from './utils';
+import { Object as PlainObject } from './interfaces';
 
 function mkDirByPathSync(targetDir: string) {
   const sep = path.sep;
@@ -49,7 +50,7 @@ export function saveApiEntry(post: Post, path: string) {
 }
 
 /*
- * This function generates paged api index on path `/api/paged-posts`
+ * This function generates paged api index on path `/api/posts`
  */
 function generateApiIndex(posts: Array<Post>, path: string) {
   const parsedPosts = posts.map((post) => {
@@ -63,9 +64,34 @@ function generateApiIndex(posts: Array<Post>, path: string) {
   );
 }
 
+function generateCategories(posts: Array<Post>, path: string) {
+  const categories: PlainObject = {};
+  posts.forEach((post) => {
+    const apiEntry = post.toApi();
+    delete apiEntry.content;
+    if (apiEntry.meta['category']) {
+      apiEntry.meta['category'].forEach((category: string) =>
+        categories[category]
+          ? categories[category].push(apiEntry)
+          : (categories[category] = [apiEntry])
+      );
+    }
+  });
+
+  const dir = `${path}/api/category`;
+  mkDirByPathSync(dir);
+  Object.keys(categories).forEach((category) => {
+    const filePath = `${dir}/${category}.json`;
+    fs.writeFile(filePath, JSON.stringify(categories[category]), (err) =>
+      err ? console.log(err) : null
+    );
+  });
+}
+
 export function generateApi(posts: Array<Post>, path: string) {
   try {
     generateApiIndex(posts, path);
+    generateCategories(posts, path);
     posts.forEach((post) => saveApiEntry(post, path));
   } catch (err) {
     console.log(err);
diff --git a/lib/interfaces.ts b/lib/interfaces.ts
index 158ac1d..1fbb226 100644
--- a/lib/interfaces.ts
+++ b/lib/interfaces.ts
@@ -11,7 +11,7 @@ export interface Object {
 export interface Meta {
   title: string;
   author: string;
-  additionalMeta: object;
+  additionalMeta: Object;
 }
 
 export interface FrontMatterObject {
@@ -25,7 +25,7 @@ export interface PostApiListEntry {
   title: string;
   path: string;
   description: string;
-  meta: object;
+  meta: Object;
 }
 
 export interface PostApiEntry extends PostApiListEntry {