2024-01-06 16:01:59 +08:00
|
|
|
import { cutForSearch } from "@node-rs/jieba";
|
2024-01-15 11:44:48 +08:00
|
|
|
import Colors from "colors";
|
2024-01-06 11:47:18 +08:00
|
|
|
import minisearch from "minisearch";
|
2024-01-15 11:44:48 +08:00
|
|
|
import sizeof from "object-sizeof";
|
2024-01-06 11:47:18 +08:00
|
|
|
import { getPostFileContent, sortedPosts } from "./post-process";
|
|
|
|
|
|
2024-01-08 21:25:34 +08:00
|
|
|
// Due to the flaws of the word tokenizer,
|
|
|
|
|
// it is necessary to match CJKL symbols only
|
|
|
|
|
// during the word segmentation process to prevent repeated recognition.
|
|
|
|
|
const CJKLRecognizeRegex = /[\u4E00-\u9FFF\u3040-\u309F\u30A0-\u30FF\uAC00-\uD7A3a-zA-Z]+/g;
|
|
|
|
|
|
2024-01-06 16:01:59 +08:00
|
|
|
function tokenizer(str: string) {
|
2024-04-03 22:08:27 +08:00
|
|
|
const result = cutForSearch(str, true).filter((item) => CJKLRecognizeRegex.test(item));
|
2024-01-08 21:25:34 +08:00
|
|
|
return result;
|
2024-01-06 16:01:59 +08:00
|
|
|
}
|
2024-01-06 11:47:18 +08:00
|
|
|
|
|
|
|
|
function makeSearchIndex() {
|
2024-04-03 22:08:27 +08:00
|
|
|
const startTime = Date.now();
|
2024-01-06 11:47:18 +08:00
|
|
|
let miniSearch = new minisearch({
|
|
|
|
|
fields: ["id", "title", "tags", "subtitle", "summary", "content"],
|
|
|
|
|
storeFields: ["id", "title", "tags"],
|
2024-01-06 16:01:59 +08:00
|
|
|
tokenize: tokenizer,
|
2024-01-06 11:47:18 +08:00
|
|
|
});
|
|
|
|
|
for (let index = 0; index < sortedPosts.allPostList.length; index++) {
|
|
|
|
|
const post = sortedPosts.allPostList[index];
|
|
|
|
|
const content = getPostFileContent(post.id);
|
|
|
|
|
miniSearch.add({
|
|
|
|
|
id: post.id,
|
|
|
|
|
title: post.frontMatter.title,
|
|
|
|
|
tags: post.frontMatter.tags,
|
|
|
|
|
subtitle: post.frontMatter.subtitle,
|
|
|
|
|
summary: post.frontMatter.summary,
|
|
|
|
|
content: content,
|
|
|
|
|
});
|
|
|
|
|
}
|
2024-04-03 22:08:27 +08:00
|
|
|
const endTime = Date.now();
|
2024-01-15 11:44:48 +08:00
|
|
|
const sizeofIndex = (sizeof(miniSearch) / 1024 ** 2).toFixed(3);
|
2024-04-03 22:08:27 +08:00
|
|
|
console.log(
|
|
|
|
|
Colors.cyan(
|
|
|
|
|
`Search index is ready. And the size of index is ${sizeofIndex} mb. And it costs ${(endTime - startTime) / 1000} s.`,
|
|
|
|
|
),
|
|
|
|
|
);
|
2024-01-06 11:47:18 +08:00
|
|
|
return miniSearch;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export const SearchIndex = makeSearchIndex();
|