app5.js 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. const fs = require('fs');
  2. const path = require('path');
  3. // 配置
  4. const projectDir = './pages'; // 你的 UniApp 项目路径
  5. const langFilePath = './output3.json'; // 本地语言文件路径
  6. const ignoredFiles = ['node_modules', 'locale']; // 忽略的文件夹或文件
  7. // 加载语言文件
  8. let langData = {};
  9. if (fs.existsSync(langFilePath)) {
  10. const langFileContent = fs.readFileSync(langFilePath, 'utf-8');
  11. langData = JSON.parse(langFileContent);
  12. }
  13. // 正则表达式:匹配汉字
  14. const chineseRegex = /[\u4e00-\u9fa5\u3000-\u303f\uff01-\uff5e\u201c-\u201d\u3008-\u3011]+/g;
  15. // 处理单个文件
  16. function processFile(filePath) {
  17. let content = fs.readFileSync(filePath, 'utf-8');
  18. // 匹配 <template> 和 <script> 标签中的内容
  19. const templateRegex = /<template[^>]*>([\s\S]*?)<\/template>/gi;
  20. const scriptRegex = /<script[^>]*>([\s\S]*?)<\/script>/gi;
  21. // 替换 <template> 中的内容
  22. content = content.replace(templateRegex, (match, templateContent) => {
  23. return match.replace(chineseRegex, (text) => {
  24. // 跳过已有的 $t()
  25. if (templateContent.includes(`$t('${langData[text]}')`) || templateContent.includes(`$t("${langData[text]}")`)) {
  26. return text; // 不替换
  27. }
  28. return replaceText(text, '{{ $t(\'$1\') }}');
  29. });
  30. });
  31. // 替换 <script> 中的内容
  32. content = content.replace(scriptRegex, (match, scriptContent) => {
  33. return match.replace(/(['"])([\u4e00-\u9fa5\u3000-\u303f\uff01-\uff5e\u201c-\u201d\u3008-\u3011]+)\1/g, (_, quote, text) => {
  34. // 跳过已有的 $t()
  35. if (scriptContent.includes(`this.$t('${langData[text]}')`) || scriptContent.includes(`this.$t("${langData[text]}")`)) {
  36. return `${quote}${text}${quote}`; // 不替换
  37. }
  38. return replaceText(text, 'this.$t(\'$1\')');
  39. });
  40. });
  41. // 写回文件
  42. fs.writeFileSync(filePath, content, 'utf-8');
  43. }
  44. // 替换逻辑
  45. function replaceText(text, replacementPattern) {
  46. // 如果语言文件中不存在该汉字,则生成一个唯一的 key
  47. if (!langData[text]) {
  48. const key = `text_${Object.keys(langData).length + 1}`;
  49. langData[text] = key;
  50. }
  51. // 替换为指定的模式
  52. const key = langData[text];
  53. return replacementPattern.replace('$1', text);
  54. }
  55. // 遍历目录
  56. function traverseDirectory(dir) {
  57. const files = fs.readdirSync(dir);
  58. files.forEach((file) => {
  59. const fullPath = path.join(dir, file);
  60. const stats = fs.statSync(fullPath);
  61. if (stats.isDirectory()) {
  62. // 忽略指定的文件夹
  63. if (!ignoredFiles.includes(file)) {
  64. traverseDirectory(fullPath);
  65. }
  66. } else if (stats.isFile()) {
  67. // 只处理 .vue 和 .js 文件
  68. if (/\.(vue|js)$/.test(file)) {
  69. processFile(fullPath);
  70. }
  71. }
  72. });
  73. }
  74. // 主函数
  75. function main() {
  76. console.log('开始转换汉字为国际化格式...');
  77. // 遍历项目目录
  78. traverseDirectory(projectDir);
  79. // 更新语言文件
  80. fs.writeFileSync(langFilePath, JSON.stringify(langData, null, 2), 'utf-8');
  81. console.log(`语言文件已更新:${langFilePath}`);
  82. console.log('转换完成!');
  83. }
  84. main();