config.mts 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335
  1. import "dotenv/config";
  2. import { fileURLToPath, URL } from "node:url";
  3. import { defineConfig } from "vitepress";
  4. import VueI18nPlugin from "@intlify/unplugin-vue-i18n/vite";
  5. import Icons from "unplugin-icons/vite";
  6. import { FileSystemIconLoader } from "unplugin-icons/loaders";
  7. import { SVG, cleanupSVG, parseColors, runSVGO } from "@iconify/tools";
  8. import {
  9. S3Client,
  10. ListObjectsCommand,
  11. GetObjectCommand,
  12. } from "@aws-sdk/client-s3";
  13. import fs from "node:fs";
  14. import path from "node:path";
  15. import { exec } from "child_process";
  16. import { buildSideBar } from "../utils/sideBar";
  17. const DOC_BASE_PATH = "pages";
  18. if (process.env.NODE_ENV === "production") {
  19. // 执行清理pages文件夹命令
  20. await new Promise((resolve, reject) =>
  21. exec(
  22. `git checkout -- ${DOC_BASE_PATH} & git clean -df ${DOC_BASE_PATH}`,
  23. (error, stdout, stderr) => {
  24. if (error) {
  25. console.error(`清理pages时出错: ${error.message}`);
  26. reject(stderr);
  27. }
  28. console.log(`清理pages结果: ${stdout}`);
  29. resolve(stdout);
  30. }
  31. )
  32. );
  33. }
  34. // 从S3构建pages里面的markdown文件
  35. const s3 = new S3Client({
  36. credentials: {
  37. accessKeyId: process.env.VITE_AWS_S3_ACCESS_KEY_ID!,
  38. secretAccessKey: process.env.VITE_AWS_S3_SECRET_ACCESS_KEY!,
  39. },
  40. region: process.env.VITE_AWS_S3_REGION!,
  41. });
  42. const command = new ListObjectsCommand({
  43. Bucket: process.env.VITE_DOCS_LIST_BUCKET,
  44. });
  45. const { Contents: contents } = await s3.send(command);
  46. await Promise.all(
  47. contents!.map((content) => {
  48. return new Promise(async (resolve, reject) => {
  49. try {
  50. const command = new GetObjectCommand({
  51. Bucket: process.env.VITE_DOCS_LIST_BUCKET,
  52. Key: content.Key,
  53. ResponseCacheControl: "no-cache",
  54. });
  55. const file = await s3.send(command);
  56. const writePath = path.join(DOC_BASE_PATH, content.Key!);
  57. const directory = path.dirname(writePath);
  58. fs.mkdirSync(directory, { recursive: true });
  59. fs.writeFileSync(writePath, await file.Body!.transformToString());
  60. resolve(content.Key);
  61. } catch (e) {
  62. reject(e);
  63. }
  64. fs.writeFile;
  65. });
  66. })
  67. );
  68. // 构建sideBar数据
  69. function readJsonFile(filePath) {
  70. try {
  71. // 同步读取文件内容,如果文件不存在会抛出异常
  72. const data = fs.readFileSync(filePath, "utf8");
  73. return JSON.parse(data); // 解析 JSON 数据
  74. } catch (err) {
  75. if (err.code === "ENOENT") {
  76. console.error("File not found:", filePath);
  77. // 可以返回默认值或者进行其他处理
  78. return {}; // 返回 null 或者其他默认值
  79. } else {
  80. throw err; // 抛出其他异常
  81. }
  82. }
  83. }
  84. const sideBarSortMap = {
  85. "zh-CN": readJsonFile("pages/zh-CN::SIDEBAR_SORTED_MAP.json"),
  86. "zh-HK": readJsonFile("pages/zh-HK::SIDEBAR_SORTED_MAP.json"),
  87. "en-US": readJsonFile("pages/en-US::SIDEBAR_SORTED_MAP.json"),
  88. };
  89. let { rootSideBar, zhHKSideBar, enUSSideBar } = buildSideBar(
  90. contents,
  91. sideBarSortMap
  92. );
  93. import util from "util";
  94. console.log(
  95. util.inspect(sideBarSortMap, {
  96. showHidden: false,
  97. depth: null,
  98. colors: true,
  99. }),
  100. util.inspect(rootSideBar, { showHidden: false, depth: null, colors: true })
  101. );
  102. // https://vitepress.dev/reference/site-config
  103. export default defineConfig({
  104. title: "CocoBlockly帮助文档",
  105. description: "Cococlass help documents",
  106. srcDir: DOC_BASE_PATH,
  107. ignoreDeadLinks: true,
  108. lastUpdated: true,
  109. themeConfig: {
  110. search: {
  111. provider: "local",
  112. options: {
  113. locales: {
  114. root: {
  115. translations: {
  116. button: {
  117. buttonText: "搜索文档",
  118. buttonAriaLabel: "搜索文档",
  119. },
  120. modal: {
  121. noResultsText: "无法找到相关结果",
  122. resetButtonTitle: "清除查询条件",
  123. footer: {
  124. selectText: "选择",
  125. navigateText: "切换",
  126. closeText: "关闭",
  127. },
  128. },
  129. },
  130. },
  131. "zh-HK": {
  132. translations: {
  133. button: {
  134. buttonText: "搜索文档hk",
  135. buttonAriaLabel: "搜索文档hk",
  136. },
  137. modal: {
  138. noResultsText: "无法找到相关结果",
  139. resetButtonTitle: "清除查询条件",
  140. footer: {
  141. selectText: "选择",
  142. navigateText: "切换",
  143. closeText: "关闭",
  144. },
  145. },
  146. },
  147. },
  148. },
  149. },
  150. },
  151. },
  152. appearance: false,
  153. vite: {
  154. publicDir: "../public",
  155. envDir: "../",
  156. ssr: {
  157. // SSG Vue-i18n workaround
  158. noExternal: ["vue-i18n", "element-plus", 'minisearch'],
  159. },
  160. plugins: [
  161. VueI18nPlugin({}),
  162. Icons({
  163. compiler: "vue3",
  164. customCollections: {
  165. "ccrbi-plain": FileSystemIconLoader(
  166. "assets/icons/plain",
  167. async (svgStr) => {
  168. const svg = new SVG(svgStr);
  169. cleanupSVG(svg);
  170. parseColors(svg, {
  171. defaultColor: "currentColor",
  172. callback: (attr, colorStr, color) => {
  173. // console.log('Color:', colorStr, color);
  174. // 普通图标
  175. return "currentColor";
  176. // Change black to 'currentColor'
  177. // const blackColor = stringToColor("black");
  178. // if (color && compareColors(color, blackColor!)) {
  179. // return "currentColor";
  180. // }
  181. // switch (color?.type) {
  182. // case "none":
  183. // case "current":
  184. // return color;
  185. // }
  186. // throw new Error(
  187. // `Unexpected color "${colorStr}" in attribute ${attr}`
  188. // );
  189. },
  190. });
  191. // Optimise, but do not change shapes because they are animated
  192. runSVGO(svg, {
  193. keepShapes: true,
  194. });
  195. return svg.toMinifiedString({});
  196. }
  197. ),
  198. "ccrbi-colored": FileSystemIconLoader(
  199. "assets/icons/colored",
  200. async (svgStr) => {
  201. const svg = new SVG(svgStr);
  202. cleanupSVG(svg);
  203. // Optimise, but do not change shapes because they are animated
  204. runSVGO(svg, {
  205. keepShapes: true,
  206. });
  207. return svg.toMinifiedString({});
  208. }
  209. ),
  210. },
  211. }),
  212. ],
  213. resolve: {
  214. alias: [
  215. {
  216. find: /^.*\/VPNavBar\.vue$/,
  217. replacement: fileURLToPath(
  218. new URL("../components/CustomNavBar.vue", import.meta.url)
  219. ),
  220. },
  221. {
  222. find: "@/",
  223. replacement: fileURLToPath(new URL("../", import.meta.url)),
  224. },
  225. ],
  226. },
  227. },
  228. locales: {
  229. root: {
  230. label: "简体中文",
  231. lang: "zh-CN",
  232. themeConfig: {
  233. logo: "/logo.png",
  234. siteTitle: false,
  235. // https://vitepress.dev/reference/default-theme-config
  236. // nav: [
  237. // { text: 'Home', link: '/' },
  238. // { text: 'Examples', link: '/markdown-examples' }
  239. // ],
  240. // sidebar: [
  241. // { text: "关于CocoBlockly X", link: "/docs" },
  242. // { text: "常见问题解答", link: "/docs/常见问题解答" },
  243. // {
  244. // text: "开始使用CocoBlockly X",
  245. // link: "/docs/start-using-cocoblockly-x",
  246. // collapsed: true,
  247. // items: [],
  248. // },
  249. // {
  250. // text: "电子模块基本教学",
  251. // collapsed: true,
  252. // items: [{ text: "todo", link: "/docs" }],
  253. // },
  254. // ],
  255. sidebar: rootSideBar,
  256. // socialLinks: [
  257. // { icon: 'github', link: 'https://github.com/vuejs/vitepress' }
  258. // ]
  259. },
  260. },
  261. "zh-HK": {
  262. label: "繁体中文",
  263. lang: "zh-HK",
  264. themeConfig: {
  265. logo: "/logo.png",
  266. siteTitle: false,
  267. // https://vitepress.dev/reference/default-theme-config
  268. // nav: [
  269. // { text: 'Home', link: '/' },
  270. // { text: 'Examples', link: '/markdown-examples' }
  271. // ],
  272. // sidebar: [
  273. // { text: "什麽是CocoBlockly X", link: "/zh-HK/docs" },
  274. // { text: "常見問題解答", link: "/zh-HK/docs/faq" },
  275. // {
  276. // text: "開始使用CocoBlockly X",
  277. // link: "/zh-HK/docs/start-using-cocoblockly-x",
  278. // },
  279. // {
  280. // text: "電子模組基本教學",
  281. // collapsed: true,
  282. // items: [{ text: "todo", link: "/zh-HK/docs" }],
  283. // },
  284. // ],
  285. sidebar: zhHKSideBar,
  286. // socialLinks: [
  287. // { icon: 'github', link: 'https://github.com/vuejs/vitepress' }
  288. // ]
  289. },
  290. },
  291. "en-US": {
  292. label: "English",
  293. lang: "en-US",
  294. themeConfig: {
  295. logo: "/logo.png",
  296. siteTitle: false,
  297. // https://vitepress.dev/reference/default-theme-config
  298. // nav: [
  299. // { text: 'Home', link: '/' },
  300. // { text: 'Examples', link: '/markdown-examples' }
  301. // ],
  302. // sidebar: [
  303. // { text: "什麽是CocoBlockly X", link: "/zh-HK/docs" },
  304. // { text: "常見問題解答", link: "/zh-HK/docs/faq" },
  305. // {
  306. // text: "開始使用CocoBlockly X",
  307. // link: "/zh-HK/docs/start-using-cocoblockly-x",
  308. // },
  309. // {
  310. // text: "電子模組基本教學",
  311. // collapsed: true,
  312. // items: [{ text: "todo", link: "/zh-HK/docs" }],
  313. // },
  314. // ],
  315. sidebar: enUSSideBar,
  316. // socialLinks: [
  317. // { icon: 'github', link: 'https://github.com/vuejs/vitepress' }
  318. // ]
  319. },
  320. },
  321. },
  322. });