|
@@ -16,7 +16,6 @@ import path from "node:path";
|
|
|
import { exec } from "child_process";
|
|
|
import { buildSideBar } from "../utils/sideBar";
|
|
|
|
|
|
-
|
|
|
const DOC_BASE_PATH = "pages";
|
|
|
|
|
|
if (process.env.NODE_ENV === "production") {
|
|
@@ -75,29 +74,36 @@ await Promise.all(
|
|
|
// 构建sideBar数据
|
|
|
function readJsonFile(filePath) {
|
|
|
try {
|
|
|
- // 同步读取文件内容,如果文件不存在会抛出异常
|
|
|
- const data = fs.readFileSync(filePath, 'utf8');
|
|
|
- return JSON.parse(data); // 解析 JSON 数据
|
|
|
+ // 同步读取文件内容,如果文件不存在会抛出异常
|
|
|
+ const data = fs.readFileSync(filePath, "utf8");
|
|
|
+ return JSON.parse(data); // 解析 JSON 数据
|
|
|
} catch (err) {
|
|
|
- if (err.code === 'ENOENT') {
|
|
|
- console.error('File not found:', filePath);
|
|
|
- // 可以返回默认值或者进行其他处理
|
|
|
- return {}; // 返回 null 或者其他默认值
|
|
|
- } else {
|
|
|
- throw err; // 抛出其他异常
|
|
|
- }
|
|
|
+ if (err.code === "ENOENT") {
|
|
|
+ console.error("File not found:", filePath);
|
|
|
+ // 可以返回默认值或者进行其他处理
|
|
|
+ return {}; // 返回 null 或者其他默认值
|
|
|
+ } else {
|
|
|
+ throw err; // 抛出其他异常
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
const sideBarSortMap = {
|
|
|
- 'zh-CN': readJsonFile('pages/zh-CN::SIDEBAR_SORTED_MAP.json'),
|
|
|
- 'zh-HK': readJsonFile('pages/zh-HK::SIDEBAR_SORTED_MAP.json'),
|
|
|
- 'en-US': readJsonFile('pages/en-US::SIDEBAR_SORTED_MAP.json'),
|
|
|
-}
|
|
|
-let { rootSideBar, zhHKSideBar, enUSSideBar } = buildSideBar(contents, sideBarSortMap);
|
|
|
+ "zh-CN": readJsonFile("pages/zh-CN::SIDEBAR_SORTED_MAP.json"),
|
|
|
+ "zh-HK": readJsonFile("pages/zh-HK::SIDEBAR_SORTED_MAP.json"),
|
|
|
+ "en-US": readJsonFile("pages/en-US::SIDEBAR_SORTED_MAP.json"),
|
|
|
+};
|
|
|
+let { rootSideBar, zhHKSideBar, enUSSideBar } = buildSideBar(
|
|
|
+ contents,
|
|
|
+ sideBarSortMap
|
|
|
+);
|
|
|
import util from "util";
|
|
|
console.log(
|
|
|
- util.inspect(sideBarSortMap, {showHidden: false, depth: null, colors: true}),
|
|
|
- util.inspect(rootSideBar, { showHidden: false, depth: null, colors: true }),
|
|
|
+ util.inspect(sideBarSortMap, {
|
|
|
+ showHidden: false,
|
|
|
+ depth: null,
|
|
|
+ colors: true,
|
|
|
+ }),
|
|
|
+ util.inspect(rootSideBar, { showHidden: false, depth: null, colors: true })
|
|
|
);
|
|
|
|
|
|
// https://vitepress.dev/reference/site-config
|
|
@@ -115,39 +121,39 @@ export default defineConfig({
|
|
|
root: {
|
|
|
translations: {
|
|
|
button: {
|
|
|
- buttonText: '搜索文档',
|
|
|
- buttonAriaLabel: '搜索文档'
|
|
|
+ buttonText: "搜索文档",
|
|
|
+ buttonAriaLabel: "搜索文档",
|
|
|
},
|
|
|
modal: {
|
|
|
- noResultsText: '无法找到相关结果',
|
|
|
- resetButtonTitle: '清除查询条件',
|
|
|
+ noResultsText: "无法找到相关结果",
|
|
|
+ resetButtonTitle: "清除查询条件",
|
|
|
footer: {
|
|
|
- selectText: '选择',
|
|
|
- navigateText: '切换',
|
|
|
- closeText: '关闭',
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
+ selectText: "选择",
|
|
|
+ navigateText: "切换",
|
|
|
+ closeText: "关闭",
|
|
|
+ },
|
|
|
+ },
|
|
|
+ },
|
|
|
},
|
|
|
- 'zh-HK': {
|
|
|
+ "zh-HK": {
|
|
|
translations: {
|
|
|
button: {
|
|
|
- buttonText: '搜索文档hk',
|
|
|
- buttonAriaLabel: '搜索文档hk'
|
|
|
+ buttonText: "搜索文档hk",
|
|
|
+ buttonAriaLabel: "搜索文档hk",
|
|
|
},
|
|
|
modal: {
|
|
|
- noResultsText: '无法找到相关结果',
|
|
|
- resetButtonTitle: '清除查询条件',
|
|
|
+ noResultsText: "无法找到相关结果",
|
|
|
+ resetButtonTitle: "清除查询条件",
|
|
|
footer: {
|
|
|
- selectText: '选择',
|
|
|
- navigateText: '切换',
|
|
|
- closeText: '关闭',
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
+ selectText: "选择",
|
|
|
+ navigateText: "切换",
|
|
|
+ closeText: "关闭",
|
|
|
+ },
|
|
|
+ },
|
|
|
+ },
|
|
|
+ },
|
|
|
+ },
|
|
|
+ },
|
|
|
},
|
|
|
},
|
|
|
appearance: false,
|
|
@@ -157,7 +163,7 @@ export default defineConfig({
|
|
|
envDir: "../",
|
|
|
ssr: {
|
|
|
// SSG Vue-i18n workaround
|
|
|
- noExternal: [/vue-i18n/, 'element-plus'],
|
|
|
+ noExternal: ["vue-i18n", "element-plus", 'minisearch'],
|
|
|
},
|
|
|
plugins: [
|
|
|
VueI18nPlugin({}),
|