app5.js 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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. return replaceText(text, '{{ $t(\'$1\') }}');
  25. });
  26. });
  27. // 替换 <script> 中的内容
  28. content = content.replace(scriptRegex, (match, scriptContent) => {
  29. return match.replace(/(['"])([\u4e00-\u9fa5]+)\1/g, (_, quote, text) => {
  30. return replaceText(text, 'this.$t(\'$1\')');
  31. });
  32. });
  33. // 写回文件
  34. fs.writeFileSync(filePath, content, 'utf-8');
  35. }
  36. // 替换逻辑
  37. function replaceText(text, replacementPattern) {
  38. // 如果语言文件中不存在该汉字,则生成一个唯一的 key
  39. if (!langData[text]) {
  40. const key = `text_${Object.keys(langData).length + 1}`;
  41. langData[text] = key;
  42. }
  43. // 替换为指定的模式
  44. const key = langData[text];
  45. return replacementPattern.replace('$1', key);
  46. }
  47. // 遍历目录
  48. function traverseDirectory(dir) {
  49. const files = fs.readdirSync(dir);
  50. files.forEach((file) => {
  51. const fullPath = path.join(dir, file);
  52. const stats = fs.statSync(fullPath);
  53. if (stats.isDirectory()) {
  54. // 忽略指定的文件夹
  55. if (!ignoredFiles.includes(file)) {
  56. traverseDirectory(fullPath);
  57. }
  58. } else if (stats.isFile()) {
  59. // 只处理 .vue 和 .js 文件
  60. if (/\.(vue|js)$/.test(file)) {
  61. processFile(fullPath);
  62. }
  63. }
  64. });
  65. }
  66. // 主函数
  67. function main() {
  68. console.log('开始转换汉字为国际化格式...');
  69. // 遍历项目目录
  70. traverseDirectory(projectDir);
  71. // 更新语言文件
  72. fs.writeFileSync(langFilePath, JSON.stringify(langData, null, 2), 'utf-8');
  73. console.log(`语言文件已更新:${langFilePath}`);
  74. console.log('转换完成!');
  75. }
  76. main();