溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

怎么統(tǒng)計Webpack組件的使用次數(shù)

發(fā)布時間:2021-03-08 11:13:27 來源:億速云 閱讀:513 作者:Leah 欄目:開發(fā)技術(shù)

怎么統(tǒng)計Webpack組件的使用次數(shù)?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學(xué)習(xí)下,希望你能有所收獲。

用的 @material-ui,下面是組件使用情況

怎么統(tǒng)計Webpack組件的使用次數(shù)

實現(xiàn)

我們知道 loader 的 source是文件的靜態(tài)字符串如下圖

怎么統(tǒng)計Webpack組件的使用次數(shù)

最快的方案通過字符串統(tǒng)計用正則的方式一把梭,但是這樣會有問題就是如果注釋部分有的話也會被統(tǒng)計進去就不準確,所以我們可以通過 AST 的方式來實現(xiàn),關(guān)于 ast 的概念有很多大佬都講過了我就不啰嗦了

分析 AST

我這邊是通過 @babel/parser 來分析的,我們先看下面這段代碼在網(wǎng)站上的構(gòu)成

import { Box } from '@material-ui/core';
import Autocomplete from '@material-ui/lab/Autocomplete';

怎么統(tǒng)計Webpack組件的使用次數(shù)

我們可以看出路徑  program => body ,然后聲明類型是 type: ImportDeclaration,繼續(xù)看如下構(gòu)成

"source": {
     "type": "StringLiteral",
     "value": "@material-ui/core"
 },
 // 第二段
 "source": {
      type": "StringLiteral",
     "value": "@material-ui/lab/Autocomplete"
 },

我們發(fā)下這個字段里面的 value 有我們想要的包名所以第一段代碼就是

const ast = parser.parse(source, {
      sourceType: 'module',
      plugins: ['jsx'],
 });
const getImport = 'ImportDeclaration';
const getMaterialImport = packageName || '@material-ui';
const importAst = ast.program.body.filter(
  // type 節(jié)點類型,這里我們?nèi)ミ^濾 import 聲明類型 同時去過濾
  (i) => i.type === getImport && i.source.value.includes(getMaterialImport),
);

拿到相關(guān)的 ast 數(shù)組下一步就要去拿到組件名字了, 通過觀察我們發(fā)現(xiàn) specifiers 標識符這個字段里面有兩個字段包含組件名:imported、local

 怎么統(tǒng)計Webpack組件的使用次數(shù)

  • imported 表示從導(dǎo)出模塊導(dǎo)出的變量

  • local 表示導(dǎo)入后當(dāng)前模塊的變量

這里我取的 local, 因為下面這種方式并不會出現(xiàn) imported  這個字段

import Autocomplete from '@material-ui/lab/Autocomplete';

這個時候包的名字也拿到了后面就簡單了直奔主題貼完整代碼了

demo

const parser = require('@babel/parser');
const loaderUtils = require('loader-utils');
const total = {
  len: 0,
  components: {},
};
// 對象排序
const sortable = (obj) => Object.fromEntries(Object.entries(obj).sort(([, a], [, b]) => b - a));
module.exports = function(source) {
  console.log(source, '--');
  const options = loaderUtils.getOptions(this);
  const { packageName = '' } = options;
  const callback = this.async();
  if (!packageName) return callback(null, source);
  try {
    // 解析成 ast
    const ast = parser.parse(source, {
      sourceType: 'module',
      plugins: ['jsx'],
    });
    if (ast) {
      setTimeout(() => {
        const getImport = 'ImportDeclaration';
        const getMaterialImport = packageName;
        const importAst = ast.program.body.filter(
          // type 節(jié)點類型,這里我們?nèi)ミ^濾 import 聲明類型 同時去過濾
          (i) => i.type === getImport && i.source.value.includes(getMaterialImport),
        );
        total.len = total.len + importAst.length;
        for (let i of importAst) {
          const { specifiers = [] } = i;
          for (let s of specifiers) {
            if (s.local) {
              const { name } = s.local;
              total.components[name] = total.components[name] ? total.components[name] + 1 : 1;
            }
          }
        }
        total.components = sortable(total.components);
        console.log(total, 'total');
        callback(null, source);
      }, 0);
    } else callback(null, source);
  } catch (error) {
    callback(null, source);
  }
};

調(diào)用 loader

 {
  test: /\.(jsx|)$/,
  exclude: /node_modules/,
  include: [appConfig.eslintEntry],
  use: [
    {
      loader: path.resolve(__dirname, './loader/total.js'),
      options: {
        packageName: '@material-ui',
      },
    },
  ],
},

看完上述內(nèi)容是否對您有幫助呢?如果還想對相關(guān)知識有進一步的了解或閱讀更多相關(guān)文章,請關(guān)注億速云行業(yè)資訊頻道,感謝您對億速云的支持。

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI