upgrade the project
This commit is contained in:
@@ -1,91 +1,105 @@
|
||||
import { PostsRootDirectory } from "@/consts/consts";
|
||||
import { TFrontmatter } from "@/types/frontmatter.type";
|
||||
import { TPostListItem, TTagSubPostSet } from "@/types/post-list";
|
||||
import { TPostListItem, TPostsByTag } from "@/types/post-list";
|
||||
import fs from "fs";
|
||||
import { serialize } from "next-mdx-remote/serialize";
|
||||
import path from "path";
|
||||
import { isEmptyString, nullifyEmptyArray, nullifyEmptyString } from "./utils";
|
||||
|
||||
async function getFrontmatters(filepath: string): Promise<TFrontmatter> {
|
||||
async function extractFrontmatters(filepath: string): Promise<TFrontmatter> {
|
||||
const source = fs.readFileSync(filepath, "utf-8");
|
||||
const mdxSource = await serialize(source, {
|
||||
parseFrontmatter: true,
|
||||
mdxOptions: { format: "md" },
|
||||
});
|
||||
return mdxSource.frontmatter as TFrontmatter;
|
||||
const frontmatter = mdxSource.frontmatter as TFrontmatter;
|
||||
|
||||
const normalizedTags = frontmatter.tags
|
||||
?.filter((tagname) => !isEmptyString(tagname))
|
||||
.map((tagname) => tagname.toUpperCase());
|
||||
|
||||
const normalizedResult: TFrontmatter = {
|
||||
title: frontmatter.title,
|
||||
subtitle: nullifyEmptyString(frontmatter.subtitle),
|
||||
coverURL: nullifyEmptyString(frontmatter.coverURL),
|
||||
tags: nullifyEmptyArray(normalizedTags),
|
||||
summary: nullifyEmptyString(frontmatter.summary),
|
||||
time: frontmatter.time,
|
||||
pin: frontmatter.pin ?? false,
|
||||
noPrompt: frontmatter.noPrompt ?? false,
|
||||
allowShare: frontmatter.allowShare ?? true,
|
||||
closed: frontmatter.closed ?? false,
|
||||
};
|
||||
|
||||
return normalizedResult;
|
||||
}
|
||||
|
||||
export const getPostFileContent = (postId: string): string | null => {
|
||||
const filePath = path.join(PostsRootDirectory, `${postId}.md`);
|
||||
if (!fs.existsSync(filePath)) return null;
|
||||
const source = fs.readFileSync(filePath, "utf-8");
|
||||
return source;
|
||||
};
|
||||
|
||||
const sortOutPostLists = async (): Promise<{
|
||||
allPostList: TPostListItem[];
|
||||
pinnedPostList: TPostListItem[];
|
||||
tagSubPostSet: TTagSubPostSet;
|
||||
}> => {
|
||||
const allPostListItems: TPostListItem[] = [];
|
||||
const pinnedPostList: TPostListItem[] = [];
|
||||
const tagSubPostSet: TTagSubPostSet = {};
|
||||
|
||||
const postFilePaths: string[] = [];
|
||||
|
||||
function readPostsDirectory(): string[] {
|
||||
const result: string[] = [];
|
||||
fs.readdirSync(PostsRootDirectory).forEach((fileName) => {
|
||||
const filePath = path.join(PostsRootDirectory, fileName);
|
||||
const fileStat = fs.statSync(filePath);
|
||||
|
||||
if (fileStat.isFile() && fileName.endsWith(".md")) {
|
||||
postFilePaths.push(filePath);
|
||||
result.push(filePath);
|
||||
}
|
||||
});
|
||||
return result;
|
||||
}
|
||||
|
||||
export const getPostFileContent = (postId: string): string | null => {
|
||||
const filePath = path.join(PostsRootDirectory, `${postId}.md`);
|
||||
if (!fs.existsSync(filePath)) return null;
|
||||
const content = fs.readFileSync(filePath, "utf-8");
|
||||
return content;
|
||||
};
|
||||
|
||||
const sortOutPosts = async (): Promise<{
|
||||
allPostList: TPostListItem[];
|
||||
pinnedPostList: TPostListItem[];
|
||||
postsByTag: TPostsByTag;
|
||||
}> => {
|
||||
const allPostList: TPostListItem[] = [];
|
||||
const pinnedPostList: TPostListItem[] = [];
|
||||
const postsByTag: TPostsByTag = {};
|
||||
|
||||
const postFilePaths: string[] = readPostsDirectory();
|
||||
|
||||
for (let i = 0; i < postFilePaths.length; i++) {
|
||||
const frontmatter = await getFrontmatters(postFilePaths[i]);
|
||||
const frontmatter = await extractFrontmatters(postFilePaths[i]);
|
||||
const postId = path.parse(postFilePaths[i]).name;
|
||||
|
||||
const normalizedTags = frontmatter.tags
|
||||
?.filter((tagname) => !isEmptyString(tagname))
|
||||
.map((tagname) => tagname.toUpperCase());
|
||||
|
||||
const postListItem: TPostListItem = {
|
||||
const currentPostListItem: TPostListItem = {
|
||||
id: postId,
|
||||
frontMatter: {
|
||||
title: frontmatter.title,
|
||||
subtitle: nullifyEmptyString(frontmatter.subtitle),
|
||||
coverURL: nullifyEmptyString(frontmatter.coverURL),
|
||||
tags: nullifyEmptyArray(normalizedTags),
|
||||
summary: nullifyEmptyString(frontmatter.summary),
|
||||
time: frontmatter.time,
|
||||
pin: frontmatter.pin ?? false,
|
||||
noPrompt: frontmatter.noPrompt ?? false,
|
||||
allowShare: frontmatter.allowShare ?? true,
|
||||
},
|
||||
frontMatter: frontmatter,
|
||||
};
|
||||
|
||||
allPostListItems.push(postListItem);
|
||||
|
||||
if (postListItem.frontMatter.pin) {
|
||||
pinnedPostList.push(postListItem);
|
||||
if (!currentPostListItem.frontMatter.closed) {
|
||||
allPostList.push(currentPostListItem);
|
||||
if (currentPostListItem.frontMatter.pin) {
|
||||
pinnedPostList.push(currentPostListItem);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
allPostListItems.sort((a, b) => {
|
||||
pinnedPostList.sort((a, b) => {
|
||||
return a.frontMatter.time > b.frontMatter.time ? -1 : 1;
|
||||
});
|
||||
|
||||
allPostListItems.map((item) => {
|
||||
item.frontMatter.tags?.map((tagName) => {
|
||||
if (tagSubPostSet[tagName] == null) {
|
||||
tagSubPostSet[tagName] = [];
|
||||
allPostList.sort((a, b) => {
|
||||
return a.frontMatter.time > b.frontMatter.time ? -1 : 1;
|
||||
});
|
||||
|
||||
allPostList.forEach((item) => {
|
||||
item.frontMatter.tags?.forEach((tagName) => {
|
||||
if (postsByTag[tagName] == null) {
|
||||
postsByTag[tagName] = [];
|
||||
}
|
||||
tagSubPostSet[tagName].push(item);
|
||||
postsByTag[tagName].push(item);
|
||||
});
|
||||
});
|
||||
|
||||
return { allPostList: allPostListItems, tagSubPostSet: tagSubPostSet, pinnedPostList: pinnedPostList };
|
||||
return { allPostList: allPostList, postsByTag: postsByTag, pinnedPostList: pinnedPostList };
|
||||
};
|
||||
|
||||
export const sortedPosts = await sortOutPostLists();
|
||||
export const sortedPosts = await sortOutPosts();
|
||||
|
||||
Reference in New Issue
Block a user