Browse Source

feat(小程序): mycli命令优化

qq12rrr 3 weeks ago
parent
commit
b027a2ecb2
6 changed files with 115 additions and 40 deletions
  1. 103 38
      bin/index.ts
  2. 4 0
      config/dev.js
  3. 3 0
      config/prod.js
  4. 2 1
      src/config/index.d.ts
  5. 2 1
      src/config/index.js
  6. 1 0
      src/pages/home/index.tsx

+ 103 - 38
bin/index.ts

@@ -7,66 +7,131 @@ const configFilePath = path.join(__dirname, "..", "project.config.json");
 const devFilePath = path.join(__dirname, "..", "config", "dev.js");
 const prodFilePath = path.join(__dirname, "..", "config", "prod.js");
 
-const miniAppIdObj = {
-  hrqb: "wxc7ed88182aa77a68",
-  hrhaojie: "wxaca93174bcaa6453",
-};
+/**
+ * 项目配置对象
+ * 因现在惠融好借和惠融钱包的图片资源都是一样的,所以LOGO和HOME_LOGO暂时这部分代码暂时注释掉
+ */
 
-const AppIdObj = {
-  hrqb: "458",
-  hrhaojie: "472",
+const projectConfigs = {
+  hrqb: {
+    appId: "458",
+    miniAppId: "wxc7ed88182aa77a68",
+    LOGO: "https://comon-image.oss-cn-hangzhou.aliyuncs.com/miniPrograme/logo.png",
+    HOME_LOGO:
+      "https://comon-image.oss-cn-hangzhou.aliyuncs.com/miniPrograme/home_logo_hrqb.png",
+  },
+  hrhaojie: {
+    appId: "472",
+    miniAppId: "wxaca93174bcaa6453",
+    LOGO: "https://comon-image.oss-cn-hangzhou.aliyuncs.com/miniPrograme/logo.png",
+    HOME_LOGO:
+      "https://comon-image.oss-cn-hangzhou.aliyuncs.com/miniPrograme/home_logo_hrqb.png",
+  },
 };
 
 // 读取并解析 JSON 文件
 async function readJsonFile(filePath) {
-  const data = await fs.readFile(filePath, "utf8");
-  return JSON.parse(data);
+  try {
+    const data = await fs.readFile(filePath, "utf8");
+    return JSON.parse(data);
+  } catch (error) {
+    throw new Error(`读取文件失败: ${filePath}, 错误: ${error.message}`);
+  }
 }
 
 // 写入 JSON 文件
 async function writeJsonFile(filePath, data) {
   const jsonData = JSON.stringify(data, null, 2);
-  await fs.writeFile(filePath, jsonData, "utf8");
+  try {
+    await fs.writeFile(filePath, jsonData, "utf8");
+  } catch (error) {
+    throw new Error(`写入文件失败: ${filePath}, 错误: ${error.message}`);
+  }
 }
 
-// 更新 APPID 在指定文件中
-async function updateAppIdInFile(filePath, newAPPID) {
-  let data = await fs.readFile(filePath, "utf8");
-  const updatedContent = data.replace(/APPID:\s*".*?"/, `APPID: "${newAPPID}"`);
-  await fs.writeFile(filePath, updatedContent, "utf8");
-}
+// 更新配置项在指定文件中
+async function updateConfigInFile(filePath, newAPPID, newLOGO, newHOME_LOGO) {
+  try {
+    let data = await fs.readFile(filePath, "utf8");
+    const updates = [
+      { key: "APPID: ", value: `'"${newAPPID}"',` },
 
-program
-  .command("project <projectName>")
-  .description("设置项目")
-  .action(async (projectName) => {
-    try {
-      const miniAppId = miniAppIdObj[projectName];
-      const newAPPID = AppIdObj[projectName];
+      // 因现在惠融好借和惠融钱包的图片资源都是一样的,所以LOGO和HOME_LOGO暂时这部分代码暂时注释掉
+      // { key: "LOGO: ", value: `'"${newLOGO}"',` },
+      // { key: "HOME_LOGO: ", value: `'"${newHOME_LOGO}"',` },
+    ];
 
-      if (!miniAppId || !newAPPID) {
-        console.error("无效的项目名称:", projectName);
-        return;
+    let updatedData = data;
+    for (const { key, value } of updates) {
+      const startIndex = updatedData.indexOf(key);
+      if (startIndex !== -1) {
+        const lineEndIndex = updatedData.indexOf("\n", startIndex);
+        const lineToReplace = updatedData.substring(startIndex, lineEndIndex);
+        updatedData = updatedData.replace(lineToReplace, `${key}${value}`);
+      } else {
+        console.warn(`未找到 ${key.trim()} 在文件中: ${filePath}`);
       }
+    }
+
+    if (data !== updatedData) {
+      await fs.writeFile(filePath, updatedData, "utf8");
+      console.log(`更新成功: ${filePath} 中的 APPID 已更新为 ${newAPPID}`);
+      // console.log(`更新成功: ${filePath} 中的 LOGO 已更新为 ${newLOGO}`);
+      // console.log(
+      //   `更新成功: ${filePath} 中的 HOME_LOGO 已更新为 ${newHOME_LOGO}`
+      // );
+    } else {
+      console.log(`没有需要更新的内容: ${filePath}`);
+    }
+  } catch (error) {
+    throw new Error(`更新配置文件失败: ${filePath}, 错误: ${error.message}`);
+  }
+}
 
-      // 更新 project.config.json 中的 appid
-      const config = await readJsonFile(configFilePath);
-      config.appid = miniAppId;
-      await writeJsonFile(configFilePath, config);
-      console.log("小程序 appid 已成功更新为:", miniAppId);
+// 更新项目配置
+async function updateProjectConfig(projectName) {
+  const projectConfig = projectConfigs[projectName];
 
-      // 更新 dev.js 和 prod.js 中的 APPID
-      await updateAppIdInFile(devFilePath, newAPPID);
-      console.log("dev.js 中的 APPID 已成功更新为:", newAPPID);
+  if (!projectConfig) {
+    throw new Error(`无效的项目名称: ${projectName}`);
+  }
 
-      await updateAppIdInFile(prodFilePath, newAPPID);
-      console.log("prod.js 中的 APPID 已成功更新为:", newAPPID);
+  // 更新 project.config.json 中的 appid
+  const config = await readJsonFile(configFilePath);
+  config.appid = projectConfig.miniAppId;
+  await writeJsonFile(configFilePath, config);
+  console.log(
+    `更新成功: ${configFilePath} 中的 appid 已更新为 ${projectConfig.miniAppId}`
+  );
 
+  // 更新 dev.js 和 prod.js 中的 APPID
+  await Promise.all([
+    updateConfigInFile(
+      devFilePath,
+      projectConfig.appId,
+      projectConfig.LOGO,
+      projectConfig.HOME_LOGO
+    ),
+    updateConfigInFile(
+      prodFilePath,
+      projectConfig.appId,
+      projectConfig.LOGO,
+      projectConfig.HOME_LOGO
+    ),
+  ]);
+}
+
+program
+  .command("project <projectName>")
+  .description("设置项目")
+  .action(async (projectName) => {
+    try {
+      await updateProjectConfig(projectName);
       console.log(
-        "---------- 每次执行完切换项目命令后,需要重新编译项目!!! ----------"
+        "---------- 每次执行完mycli命令后,需要重新编译项目!!! ----------"
       );
     } catch (error) {
-      console.error("操作过程中出错:", error);
+      console.error("操作过程中出错:", error.message);
     }
   });
 

+ 4 - 0
config/dev.js

@@ -7,7 +7,11 @@ module.exports = {
     // "HOST": '"http://192.168.0.168:810"',
     // "HOST": '"http://loan-web-api2.internal.jiebide.xin"',
     HOST: '"https://api.hrshuke.cn"',
+    // 格式化后,这条注释下的值有换行,请手动修改格式回去!!!否则mycli修改不会生效!!!键后面的冒号后面还有个空格!!!
     APPID: '"458"',
+    LOGO: '"https://comon-image.oss-cn-hangzhou.aliyuncs.com/miniPrograme/logo.png"',
+    HOME_LOGO: '"https://comon-image.oss-cn-hangzhou.aliyuncs.com/miniPrograme/home_logo_hrqb.png"',
+    // 
   },
   mini: {},
   h5: {},

+ 3 - 0
config/prod.js

@@ -7,7 +7,10 @@ module.exports = {
     // HOST: '"https://api.bicredit.xin"',
     HOST: '"https://api.hrshuke.cn"',
     // "HOST": '"http://192.168.0.168:810"',
+    // 格式化后,如果HOME_LOGO和APPID的值有换行,请手动修改格式回去!!!否则mycli修改不会生效!!!HOME_LOGO:还有APPID:后面还有个空格!!!
     APPID: '"458"',
+    LOGO: '"https://comon-image.oss-cn-hangzhou.aliyuncs.com/miniPrograme/logo.png"',
+    HOME_LOGO: '"https://comon-image.oss-cn-hangzhou.aliyuncs.com/miniPrograme/home_logo_hrqb.png"',
   },
   mini: {},
   h5: {

+ 2 - 1
src/config/index.d.ts

@@ -3,7 +3,8 @@ export type EnvType = "DEVELOPMENT" | "TEST" | "PRODUCTION" | "UAT"
 export interface Env {
     HOST: string,
     ENV: EnvType,
-    APPID: string
+    APPID: string,
+    HOME_LOGO:string,
 }
 
 declare const APPConfig: Env;

+ 2 - 1
src/config/index.js

@@ -1,5 +1,6 @@
 export default {
     HOST: HOST,
     ENV: ENV,
-    APPID: APPID
+    APPID: APPID,
+    HOME_LOGO: HOME_LOGO,
 }

+ 1 - 0
src/pages/home/index.tsx

@@ -190,6 +190,7 @@ const Home = () => {
           className="index-logo"
           src={require("../../assets/home_logo_hrqb.png")}
         />
+        {/* <Image className="index-logo" src={APPConfig.HOME_LOGO} /> */}
         <SizeBox height={20} />
 
         <Padding padding={EdgeInsets.symmetric({ horizontal: 32 })}>