Node.js實(shí)現(xiàn)批量替換文件內(nèi)容

文章序

將國(guó)際化文件中key: value形式改為value: value形式

代碼

main.js

const fs = require('fs');

// const args = process.argv;
// console.log(args);

let i18nKeyMap = {};
// const dictnoryMap = new Map([
//   ["components", true],
//   ["hooks", true],
//   ["pages", true],
//   ["store", true],
//   ["utils", true]
// ])

try {
  let fileStr = fs.readFileSync('./source/basic/locale/lang/en.js', 'utf-8');
  // let fileStr = fs.readFileSync('./source/track/locale/lang/en.js', 'utf-8');
  // let fileStr = fs.readFileSync('./source/emap/locale/lang/en.js', 'utf-8');
  fileStr = fileStr.replaceAll(/[\n\r]/g, "").replaceAll(/`/g, "\"").replaceAll(/\/\/[^"'{]*/g, "");
  const leftIndex = fileStr.indexOf('{');
  const rightIndex = fileStr.lastIndexOf('}');
  let innerStr = fileStr.substring(leftIndex + 1, rightIndex).replaceAll(/{/g, "[").replaceAll(/}/g, "]");
  const objStr = "{" + (innerStr[innerStr.length - 1] === "," ?
    innerStr.substring(0, innerStr.length - 1) :
    innerStr) + "}";

  i18nKeyMap = JSON.parse(objStr)
} catch (err) {
  console.log("handle i18n error, the path is: src/locale/lang/en.js");
  console.log("handle i18n error, the reason is: " + err + "\n");
}


handleWorkReplace('./source/basic');
handleDictReplace('./source/basic/locale/lang')
// handleWorkReplace('./source/track');
// handleDictReplace('./source/track/locale/lang')
// handleWorkReplace('./source/emap');
// handleDictReplace('./source/emap/locale/lang')
console.log("執(zhí)行完畢!")


function handleDictReplace(path) {
  try {
    let fileList = fs.readdirSync(path);
    for (let i = 0; i < fileList.length; i++) {
      replaceDictFile(path + '/' + fileList[i]);
    }
  } catch (err) {
    console.log("handle i18n error, the path is: " + path);
    console.log("handle i18n error, the reason is: " + err + "\n");
  }
}

function handleWorkReplace(path) {
  try {
    let fileList = fs.readdirSync(path);
    let item = null;
    for (let i = 0; i < fileList.length; i++) {
      item = fileList[i];
      const nameList = item.split(".");
      // if (item.indexOf(".") > -1) {
      if (nameList[nameList.length - 1] === "vue" || nameList[nameList.length - 1] === "js") {
        replaceWorkFile(path + '/' + item);
      } else if(item.indexOf(".") === -1) {
        recursionFun(path + "/" + item);
      }
      // } else if (dictnoryMap.has(item)) {
      //   recursionFun(path + "/" + item);
      // }
    }
  } catch (err) {
    console.log("handle i18n error, the path is: " + path);
    console.log("handle i18n error, the reason is: " + err + "\n");
  }
}

function recursionFun(path) {
  try {
    let item = null;
    let fileList = fs.readdirSync(path);
    for (let i = 0; i < fileList.length; i++) {
      item = fileList[i];
      const nameList = item.split(".");
      // if (item.indexOf(".") === -1) {
      //   recursionFun(path + "/" + item);
      // } else {
      //   replaceWorkFile(path + '/' + item);
      // }
      if (nameList[nameList.length - 1] === "vue" || nameList[nameList.length - 1] === "js") {
        replaceWorkFile(path + '/' + item);
      } else if(item.indexOf(".") === -1) {
        recursionFun(path + "/" + item);
      }
    }
  } catch (err) {
    console.log("handle i18n error, the path is: " + path);
    console.log("handle i18n error, the reason is: " + err + "\n");
  }
}

function replaceDictFile(path) {
  try {
    let fileStr = fs.readFileSync(path, 'utf-8');
    for (let key in i18nKeyMap) {
      //language不做處理
      if (key === "language") continue;
      const leftIndex = fileStr.indexOf(key);
      fileStr = fileStr.substring(0, leftIndex) + i18nKeyMap[key] + fileStr.substring(leftIndex + key.length);
    }
    fileStr = fileStr.replaceAll(/\[/g, "{").replaceAll(/\]/g, "}");
    fs.writeFileSync(path, fileStr);
  } catch (err) {
    console.log("handle i18n error, the path is: " + path);
    console.log("handle i18n error, the reason is: " + err + "\n");
  }
}

function replaceWorkFile(path) {
  try {
    let fileStr = fs.readFileSync(path, 'utf-8');
    let writeStream = "";
    let leftIndex = 0;
    let rightIndex = 0;
    for (let i = 0; i < fileStr.length; i++) {
      let preChar = fileStr[i - 1];
      let curChar = fileStr[i];
      let nextChar = fileStr[i + 1];
      let furtherChar = fileStr[i + 2];
      if (curChar === "t" && nextChar === "(" && !/[a-zA-Z0-9]/.test(preChar) && /["'`]/.test(furtherChar)) {
        leftIndex = i + 3;
        for (let j = i + 2; j < fileStr.length; j++) {
          if (/[[${(]/.test(fileStr[j])) {
            console.log("handle i18n error, the path is: " + path);
            console.log("handle i18n error, A part of the line is: " + fileStr.substr(j - 10, 30) + "\n" + "\n");
            for (let k = j + 1; k < fileStr.length; k++) {
              if (fileStr[k + 1] === ")" && /["'`]/.test(fileStr[k])) {
                writeStream += fileStr.substring(i, k + 2);
                i = k + 1;
                break;
              }
            }
            break;
          }
          if (fileStr[j + 1] === ")" && /["'`]/.test(fileStr[j])) {
            rightIndex = j;
            const replaceStr = i18nKeyMap[fileStr.substring(leftIndex, rightIndex)];
            if (!replaceStr) {
              console.log("handle i18n error, the path is: " + path);
              console.log("handle i18n error, the reason is: " + fileStr.substring(leftIndex, rightIndex) + " has no key in en.js!" + "\n");
              writeStream += fileStr.substring(i, j + 2);
              i = j + 1;
              break;
            }
            writeStream += "t(`" + replaceStr + "`)"
            i = j + 1;
            break;
          }
        }
      } else {
        writeStream += fileStr[i];
      }
    }
    fs.writeFileSync(path, writeStream);
  } catch (err) {
    console.log("handle i18n error, the path is: " + path);
    console.log("handle i18n error, the reason is: " + err + "\n");
  }
}
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市扫茅,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌骤菠,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,968評(píng)論 6 482
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異拙毫,居然都是意外死亡蝇率,警方通過(guò)查閱死者的電腦和手機(jī)迟杂,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,601評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)本慕,“玉大人排拷,你說(shuō)我怎么就攤上這事」荆” “怎么了监氢?”我有些...
    開封第一講書人閱讀 153,220評(píng)論 0 344
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)藤违。 經(jīng)常有香客問(wèn)我浪腐,道長(zhǎng),這世上最難降的妖魔是什么顿乒? 我笑而不...
    開封第一講書人閱讀 55,416評(píng)論 1 279
  • 正文 為了忘掉前任议街,我火速辦了婚禮,結(jié)果婚禮上璧榄,老公的妹妹穿的比我還像新娘特漩。我一直安慰自己,他們只是感情好骨杂,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,425評(píng)論 5 374
  • 文/花漫 我一把揭開白布涂身。 她就那樣靜靜地躺著,像睡著了一般搓蚪。 火紅的嫁衣襯著肌膚如雪蛤售。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,144評(píng)論 1 285
  • 那天,我揣著相機(jī)與錄音悍抑,去河邊找鬼鳄炉。 笑死,一個(gè)胖子當(dāng)著我的面吹牛搜骡,可吹牛的內(nèi)容都是我干的拂盯。 我是一名探鬼主播,決...
    沈念sama閱讀 38,432評(píng)論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼记靡,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼谈竿!你這毒婦竟也來(lái)了?” 一聲冷哼從身側(cè)響起摸吠,我...
    開封第一講書人閱讀 37,088評(píng)論 0 261
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤空凸,失蹤者是張志新(化名)和其女友劉穎,沒(méi)想到半個(gè)月后寸痢,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體呀洲,經(jīng)...
    沈念sama閱讀 43,586評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,028評(píng)論 2 325
  • 正文 我和宋清朗相戀三年啼止,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了道逗。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,137評(píng)論 1 334
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡献烦,死狀恐怖滓窍,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情巩那,我是刑警寧澤吏夯,帶...
    沈念sama閱讀 33,783評(píng)論 4 324
  • 正文 年R本政府宣布,位于F島的核電站即横,受9級(jí)特大地震影響噪生,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜令境,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,343評(píng)論 3 307
  • 文/蒙蒙 一杠园、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧舔庶,春花似錦抛蚁、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,333評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至弥鹦,卻和暖如春肚逸,著一層夾襖步出監(jiān)牢的瞬間爷辙,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,559評(píng)論 1 262
  • 我被黑心中介騙來(lái)泰國(guó)打工朦促, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留膝晾,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 45,595評(píng)論 2 355
  • 正文 我出身青樓务冕,卻偏偏與公主長(zhǎng)得像血当,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子禀忆,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,901評(píng)論 2 345

推薦閱讀更多精彩內(nèi)容