utils.ts 4.8 KB
Newer Older
陈文彬 已提交
1
import fs from 'fs';
2
import path from 'path';
陈文彬 已提交
3 4
import { networkInterfaces } from 'os';
import dotenv from 'dotenv';
5
import chalk from 'chalk';
6
// import execa from 'execa';
7

陈文彬 已提交
8 9
export const isFunction = (arg: unknown): arg is (...args: any[]) => any =>
  typeof arg === 'function';
V
vben 已提交
10

陈文彬 已提交
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
export const isRegExp = (arg: unknown): arg is RegExp =>
  Object.prototype.toString.call(arg) === '[object RegExp]';

/*
 * Read all files in the specified folder, filter through regular rules, and return file path array
 * @param root Specify the folder path
 * [@param] reg Regular expression for filtering files, optional parameters
 * Note: It can also be deformed to check whether the file path conforms to regular rules. The path can be a folder or a file. The path that does not exist is also fault-tolerant.
 */
export function readAllFile(root: string, reg: RegExp) {
  let resultArr: string[] = [];
  try {
    if (fs.existsSync(root)) {
      const stat = fs.lstatSync(root);
      if (stat.isDirectory()) {
        // dir
        const files = fs.readdirSync(root);
        files.forEach(function (file) {
          const t = readAllFile(root + '/' + file, reg);
          resultArr = resultArr.concat(t);
        });
      } else {
        if (reg !== undefined) {
          if (isFunction(reg.test) && reg.test(root)) {
            resultArr.push(root);
          }
        } else {
          resultArr.push(root);
        }
      }
    }
  } catch (error) {}

  return resultArr;
}

V
vben 已提交
47 48 49
/**
 * get client ip address
 */
陈文彬 已提交
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
export function getIPAddress() {
  let interfaces = networkInterfaces();
  for (let devName in interfaces) {
    let iFace = interfaces[devName];
    if (!iFace) return;
    for (let i = 0; i < iFace.length; i++) {
      let alias = iFace[i];
      if (alias.family === 'IPv4' && alias.address !== '127.0.0.1' && !alias.internal) {
        return alias.address;
      }
    }
  }

  return '';
}

66 67
export function isDevFn(mode: 'development' | 'production'): boolean {
  return mode === 'development';
陈文彬 已提交
68 69
}

70 71
export function isProdFn(mode: 'development' | 'production'): boolean {
  return mode === 'production';
陈文彬 已提交
72 73
}

V
vben 已提交
74 75 76
/**
 * Whether to generate package preview
 */
陈文彬 已提交
77 78 79
export function isReportMode(): boolean {
  return process.env.REPORT === 'true';
}
V
vben 已提交
80 81 82 83

/**
 * Whether to generate gzip for packaging
 */
V
vben 已提交
84 85 86
export function isBuildGzip(): boolean {
  return process.env.VITE_BUILD_GZIP === 'true';
}
V
vben 已提交
87 88 89 90

/**
 *  Whether to generate package site
 */
V
vben 已提交
91 92 93
export function isSiteMode(): boolean {
  return process.env.SITE === 'true';
}
陈文彬 已提交
94

B
bin 已提交
95 96 97
export interface ViteEnv {
  VITE_PORT: number;
  VITE_USE_MOCK: boolean;
V
vben 已提交
98
  VITE_USE_PWA: boolean;
B
bin 已提交
99 100
  VITE_PUBLIC_PATH: string;
  VITE_PROXY: [string, string][];
101 102
  VITE_GLOB_APP_TITLE: string;
  VITE_USE_CDN: boolean;
V
vben 已提交
103 104
  VITE_DROP_CONSOLE: boolean;
  VITE_BUILD_GZIP: boolean;
V
vben 已提交
105
  VITE_DYNAMIC_IMPORT: boolean;
B
bin 已提交
106 107
}

V
vben 已提交
108
// Read all environment variable configuration files to process.env
109
export function wrapperEnv(envConf: any): ViteEnv {
陈文彬 已提交
110 111
  const ret: any = {};

112 113
  for (const envName of Object.keys(envConf)) {
    let realName = envConf[envName].replace(/\\n/g, '\n');
B
bin 已提交
114 115 116 117 118 119 120 121 122
    realName = realName === 'true' ? true : realName === 'false' ? false : realName;
    if (envName === 'VITE_PORT') {
      realName = Number(realName);
    }
    if (envName === 'VITE_PROXY') {
      try {
        realName = JSON.parse(realName);
      } catch (error) {}
    }
陈文彬 已提交
123 124 125 126 127
    ret[envName] = realName;
    process.env[envName] = realName;
  }
  return ret;
}
128

V
vben 已提交
129 130 131 132 133
/**
 * Get the environment variables starting with the specified prefix
 * @param match prefix
 * @param confFiles ext
 */
134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
export function getEnvConfig(match = 'VITE_GLOB_', confFiles = ['.env', '.env.production']) {
  let envConfig = {};
  confFiles.forEach((item) => {
    try {
      const env = dotenv.parse(fs.readFileSync(path.resolve(process.cwd(), item)));

      envConfig = { ...envConfig, ...env };
    } catch (error) {}
  });
  Object.keys(envConfig).forEach((key) => {
    const reg = new RegExp(`^(${match})`);
    if (!reg.test(key)) {
      Reflect.deleteProperty(envConfig, key);
    }
  });
  return envConfig;
}

V
vben 已提交
152
function consoleFn(color: string, message: any) {
153 154
  console.log(
    chalk.blue.bold('****************  ') +
V
vben 已提交
155
      (chalk as any)[color].bold(message) +
156 157 158 159
      chalk.blue.bold('  ****************')
  );
}

V
vben 已提交
160 161 162 163
/**
 * warnConsole
 * @param message
 */
V
vben 已提交
164 165 166 167
export function successConsole(message: any) {
  consoleFn('green', '' + message);
}

V
vben 已提交
168 169 170 171
/**
 * warnConsole
 * @param message
 */
172
export function errorConsole(message: any) {
V
vben 已提交
173
  consoleFn('red', '' + message);
174 175
}

V
vben 已提交
176 177 178 179
/**
 * warnConsole
 * @param message message
 */
180
export function warnConsole(message: any) {
V
vben 已提交
181
  consoleFn('yellow', '' + message);
182 183
}

V
vben 已提交
184 185 186 187
/**
 * Get user root directory
 * @param dir file path
 */
188 189 190
export function getCwdPath(...dir: string[]) {
  return path.resolve(process.cwd(), ...dir);
}
V
vben 已提交
191

192 193
// export const run = (bin: string, args: any, opts = {}) =>
//   execa(bin, args, { stdio: 'inherit', ...opts });