diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/generateApi.ts | 28 | ||||
-rw-r--r-- | lib/interfaces.ts | 4 |
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 { |