你造不造PostCss脆侮?不造就進(jìn)來看看缰贝,包你造

image.png

關(guān)于PostCss

在前端編寫css屬性時(shí)筷狼,又是為了兼容不同的瀏覽器,需要在屬性上加上不同前綴,有時(shí)為了添加一條屬性恼策,需添加3~4條類似的屬性只是為了滿足瀏覽器的兼容,這不僅會(huì)增加的工作量前普,還容易遺漏殿遂,造成樣式兼容問題。

隨著前端工程化越來越強(qiáng)大篡九,我們只需要在編譯工具(webpack,rollup等)中配置一下谐岁,就可以實(shí)現(xiàn)編譯過程中自動(dòng)補(bǔ)全前綴的功能,我們就有更多的精力在更重要的地方榛臼。

多數(shù)情況下伊佃,這都是借用了PostCss的力量,PostCss是一個(gè)使用JS插件轉(zhuǎn)換css樣式的工具沛善,這些插件可以實(shí)現(xiàn)css樣式合并航揉,將px轉(zhuǎn)化成rem,支持變量金刁,處理內(nèi)聯(lián)圖像等等帅涂,換句話說议薪,如果沒有這些小而美的插件,那么PostCss 就什么都不會(huì)做媳友。

目前斯议,PostSS有200多個(gè)插件,可以在插件列表或可搜索目錄中找到所有插件庆锦。

工程化中怎么使用的捅位?

舉個(gè)例子??

Webpack

webpack.config.js 使用 postcss-loader:

module.exports = {
  module: {
    rules: [
      {
        test: /\.css$/,
        exclude: /node_modules/,
        use: [
          {
            loader: 'style-loader',
          },
          {
            loader: 'css-loader',
          },
          {
            loader: 'postcss-loader'
          }
        ]
      }
    ]
  }
}

創(chuàng)建 postcss.config.js,配置postcss需要的插件:

module.exports = {
  plugins: [
    require('autoprefixer'),
    require('postcss-px2rem')
  ]
}
Gulp

在Gulp中使用 gulp-postcssgulp-sourcemaps.

gulp.task('css', () => {
  const postcss    = require('gulp-postcss')
  const sourcemaps = require('gulp-sourcemaps')

  return gulp.src('src/**/*.css')
    .pipe( sourcemaps.init() )
    .pipe( postcss([ require('autoprefixer'), require('postcss-nested') ]) )
    .pipe( sourcemaps.write('.') )
    .pipe( gulp.dest('build/') )
})
JS API

也可以直接使用JS API

const autoprefixer = require('autoprefixer')
const postcss = require('postcss')
const postcssNested = require('postcss-nested')
const fs = require('fs')

fs.readFile('src/app.css', (err, css) => {
  postcss([autoprefixer, postcssNested])
    .process(css, { from: 'src/app.css', to: 'dest/app.css' })
    .then(result => {
      fs.writeFile('dest/app.css', result.css, () => true)
      if ( result.map ) {
        fs.writeFile('dest/app.css.map', result.map.toString(), () => true)
      }
    })
})
大佬出場(chǎng)

在不同的編譯工具中搂抒,我們會(huì)使用不同的PostCss工具艇搀,webpack的postcss-loader,gulp的gulp-postcss求晶,但是其實(shí)焰雕,他們內(nèi)部都是使用了postcss,只是針對(duì)不同的編譯工具進(jìn)行了適配芳杏,那就以最熟悉的postcss-loader為例矩屁,他內(nèi)部源碼構(gòu)造如下,可以看出也是使用了postcss

const path = require('path');
const { getOptions } = require('loader-utils');
const validateOptions = require('schema-utils');
const postcss = require('postcss');
const postcssrc = require('postcss-load-config');
const Warning = require('./Warning.js');
const SyntaxError = require('./Error.js');
const parseOptions = require('./options.js');

function loader(css, map, meta) {
    const options = Object.assign({}, getOptions(this));
    validateOptions(require('./options.json'), options, 'PostCSS Loader');
    const cb = this.async();
    const file = this.resourcePath;
    const sourceMap = options.sourceMap;

    Promise.resolve().then(() => {
        // webpack內(nèi)置參數(shù)處理與擴(kuò)展
        // 省略
        return postcssrc(rc.ctx, rc.path);
    }).then((config) => {
        // 省略
        return postcss(plugins)
            .process(css, options)
            .then((result) => {
                // ...
                cb(null, css, map, meta);

                return null;
            });
    }).catch((err) => {
        // 錯(cuò)誤處理
    });
}
module.exports = loader;

API

PostCss接受一個(gè)CSS文件爵赵,通過將其轉(zhuǎn)換為抽象語法樹吝秕,提供一個(gè)API來分析和修改其規(guī)則。這個(gè)API可以被插件用來做很多有用的事情空幻,例如烁峭,自動(dòng)查找錯(cuò)誤,或者插入瀏覽器前綴秕铛。

1约郁、創(chuàng)建一個(gè)postcss實(shí)例,并傳入需要的plugins參數(shù),初始化插件但两,并用這些插件后續(xù)去處理css文件

let processor = require('postcss')

processor有兩個(gè)屬性鬓梅,兩個(gè)方法

  • plugins: 屬性,processor 接受到插件參數(shù)
const processor = postcss([autoprefixer, postcssNested])
processor.plugins.length //=> 2
  • version: 屬性谨湘,processor 的版本號(hào)
if (result.processor.version.split('.')[0] !== '6') {
  throw new Error('This plugin works only with PostCSS 6')
}
  • process:方法绽快,解析css并返回一個(gè)promise實(shí)例,參數(shù)在代碼中,接受兩個(gè)參數(shù)
    • css:需要轉(zhuǎn)譯的css文件紧阔,或者一個(gè)帶有 toString() 方法的函數(shù)
    • 第二個(gè)參數(shù)是一個(gè)對(duì)象 processOptions谎僻,可有6個(gè)屬性,標(biāo)注再例子中
  • use:方法寓辱,為processor添加插件艘绍,一般有四種形式(不常用)
    • 格式化插件
    • 一個(gè)包含pluginCreator.postcss = true的構(gòu)造函數(shù),
    • 一個(gè)函數(shù)秫筏,PostCSS 第一個(gè)參為 @{link Root}诱鞠,第二個(gè)參數(shù)為Result挎挖。
    • 其他的PostCSS實(shí)例,PostCSS會(huì)將這個(gè)實(shí)例的插件復(fù)制到本PostCSS實(shí)例中航夺。

所以一般的使用方式如下

let processor = require('postcss')

const processOptions = { 
    from: 'a.css',  // 需要轉(zhuǎn)譯的css文件路徑
    to: 'a.out.css', // 產(chǎn)出路徑
    // parser : Parser 的相關(guān)設(shè)置蕉朵,Parser主要用于將css字符串專為AST
    // stringifier: stringifier 的相關(guān)設(shè)置,stringifier主要用于將AST 轉(zhuǎn)成 css 字符串
    // map: , sourceMap的相關(guān)設(shè)置 SourceMapOptions
    // syntax: 包含parser和stringifier的對(duì)象
}
processor.process(css, processOptions)
  .then(result => {
     console.log(result.css)
  })

??

下面我們通過實(shí)際例子看看 PostCSS 會(huì)將 css 源碼轉(zhuǎn)換成的 AST 格式:

const postcss = require('postcss')
postcss().process(`
@media screen and (min-width: 480px) {
    body {
        background-color: lightgreen;
    }
}
/* 這是一段注釋 */
#app {
    border: 1px solid #000;
}
`).then(result => {
 console.log(result)
})

直接使用 PostCSS阳掐,在不使用任何插件的情況下將 css 源碼進(jìn)行轉(zhuǎn)換的A ST 如下

{
  "raws": {
    "semicolon": false,  // raws.semicolon 最后是否是分號(hào)結(jié)束
    "after": ""          // raws.after 最后的空字符串
  },
  "type": "root",        // 當(dāng)前對(duì)象的類型
  "nodes": [             // 子節(jié)點(diǎn)
    {
      "raws": {
        "before": "",    // raws.before  距離前一個(gè)兄弟節(jié)點(diǎn)的內(nèi)容
        "between": " ",  // raws.between 選擇器與 { 之間的內(nèi)容
        "afterName": " ",  // raws.afterName  記錄@name之間后的內(nèi)容
        "semicolon": false,
        "after": "\n"
      },
      "type": "atrule",  // 當(dāng)前節(jié)點(diǎn)類型
      "name": "media",   // @后的標(biāo)識(shí)名稱
      "source": {        // source 字段記錄@語句的開始始衅,以及當(dāng)前文件的信息
        "inputId": 0,
        "start": {
          "offset": 0,
          "line": 1,
          "column": 1
        },
        "end": {
          "offset": 94,
          "line": 5,
          "column": 1
        }
      },
      "params": "screen and (min-width: 480px)", // // @后的標(biāo)識(shí)參數(shù)
      "nodes": [
        {
          "raws": {
            "before": "\n    ",
            "between": " ",
            "semicolon": true,
            "after": "\n    "
          },
          "type": "rule",
          "nodes": [
            {
              "raws": {
                "before": "\n        ",
                "between": ": "
              },
              "type": "decl",
              "source": {
                "inputId": 0,
                "start": {
                  "offset": 58,
                  "line": 3,
                  "column": 9
                },
                "end": {
                  "offset": 86,
                  "line": 3,
                  "column": 37
                }
              },
              "prop": "background-color",
              "value": "lightgreen"
            }
          ],
          "source": {
            "inputId": 0,
            "start": {
              "offset": 43,
              "line": 2,
              "column": 5
            },
            "end": {
              "offset": 92,
              "line": 4,
              "column": 5
            }
          },
          "selector": "body"
        }
      ]
    },
    {
      "raws": {
        "before": "\n",
        "left": " ",
        "right": " "
      },
      "type": "comment",  //  注釋節(jié)點(diǎn)
      "source": {
        "inputId": 0,
        "start": {
          "offset": 96,
          "line": 6,
          "column": 1
        },
        "end": {
          "offset": 107,
          "line": 6,
          "column": 12
        }
      },
      "text": "這是一段注釋"  // 注釋節(jié)點(diǎn)內(nèi)容
    },
    {
      "raws": {
        "before": "\n",
        "between": " ",
        "semicolon": true,
        "after": "\n"
      },
      "type": "rule",
      "nodes": [
        {
          "raws": {
            "before": "\n    ",
            "between": ": "
          },
          "type": "decl",
          "source": {
            "inputId": 0,
            "start": {
              "offset": 120,
              "line": 8,
              "column": 5
            },
            "end": {
              "offset": 142,
              "line": 8,
              "column": 27
            }
          },
          "prop": "border",         // 屬性
          "value": "1px solid #000" // 屬性值
        }
      ],
      "source": {
        "inputId": 0,
        "start": {
          "offset": 109,
          "line": 7,
          "column": 1
        },
        "end": {
          "offset": 144,
          "line": 9,
          "column": 1
        }
      },
      "selector": "#app"  // 選擇器名稱
    }
  ],
  "source": {
    "inputId": 0,
    "start": {
      "offset": 0,
      "line": 1,
      "column": 1
    }
  },
  "inputs": [    // 當(dāng)前文件的相關(guān)信息
    {
      "hasBOM": false,
      "css": "@media screen and (min-width: 480px) {\n    body {\n        background-color: lightgreen;\n    }\n}\n/* 這是一段注釋 */\n#app {\n    border: 1px solid #000;\n}",
      "id": "<input css VT5Twy>"
    }
  ]
}

也可以直接使用在線轉(zhuǎn)

[圖片上傳失敗...(image-345b22-1649396282989)]

下面我們來介紹一下CSS AST 節(jié)點(diǎn)主要節(jié)點(diǎn)類型,相關(guān)節(jié)點(diǎn)屬性標(biāo)記再上方代碼中

  • Root: 根結(jié)點(diǎn)缭保,Commont汛闸,AtRule,Rule 都是它的子節(jié)點(diǎn)艺骂。
  • Commont: 注釋節(jié)點(diǎn)诸老。
  • AtRule: 帶@標(biāo)識(shí)的的節(jié)點(diǎn)。
  • Rule: 選擇器節(jié)點(diǎn)
  • Declaration:每個(gè) css 屬性以及屬性值就代表一個(gè) declaration

每個(gè)節(jié)點(diǎn)類型還有一些屬性和操作方法
具體可看官方文檔

獲取到 AST 后我們就可以對(duì) AST 進(jìn)行操作钳恕,從而實(shí)現(xiàn)相關(guān)功能

開發(fā)一個(gè)PostCss插件

PostCSS 插件格式規(guī)范及 API
PostCSS 插件其實(shí)就是一個(gè) JS 對(duì)象别伏,其基本形式和解析如下:

module.exports = (opts = {}) => {
    // 此處可對(duì)插件配置opts進(jìn)行處理
    return {
        postcssPlugin: 'postcss-test', // 插件名字,以postcss-開頭

        Once(root, postcss) {
            // 此處root即為轉(zhuǎn)換后的AST忧额,此方法轉(zhuǎn)換一次css將調(diào)用一次
        },

        Declaration(decl, postcss) {
           // postcss遍歷css樣式時(shí)調(diào)用厘肮,在這里可以快速獲得type為decl的節(jié)點(diǎn)
        },

        Declaration: {
            color(decl, postcss) {
                // 可以進(jìn)一步獲得decl節(jié)點(diǎn)指定的屬性值,這里是獲得屬性為color的值
            }
        },

        Comment(comment, postcss) {
            // 可以快速訪問AST注釋節(jié)點(diǎn)(type為comment)
        },

        AtRule(atRule, postcss) {
            // 可以快速訪問css如@media睦番,@import等@定義的節(jié)點(diǎn)(type為atRule)
        }
    }
}
module.exports.postcss = true

了解了 PostCSS 插件的格式和 API类茂,我們將根據(jù)實(shí)際需求來開發(fā)一個(gè)簡(jiǎn)易的插件,有如下 css:

.demo {
     font-size: 14px; /*this is a comment*/
     color: #ffffff;
}

需求如下:

刪除 css 內(nèi)注釋
將所有顏色為十六進(jìn)制的#ffffff轉(zhuǎn)為 css 內(nèi)置的顏色變量white
根據(jù)第三節(jié)的插件格式抡砂,本次開發(fā)只需使用Comment和Declaration接口即可:

// plugin.js
module.exports = (opts = {}) => {
    return {
        postcssPlugin: 'postcss-test',

        Declaration(decl, postcss) {
                if (decl.value === '#ffffff') {
                        decl.value = 'white'
                }
        },

        Comment(comment) {
                comment.text = ''
        }
    }
}
module.exports.postcss = true

在 PostCSS 中使用該插件:

// index.js
const plugin = require('./plugin.js')
postcss([plugin]).process(`
.demo {
 font-size: 14px; /*this is a comment*/
 color: #ffffff;
}
`).then(result => {
    console.log(result.css)
})

運(yùn)行結(jié)果如下:

.demo {
 font-size: 14px; /**/
 color: white;
}

可以看到,字體顏色值已經(jīng)成功做了轉(zhuǎn)換恬涧,注釋內(nèi)容已經(jīng)刪掉注益,但注釋標(biāo)識(shí)符還依舊存在,這是因?yàn)樽⑨尮?jié)點(diǎn)是包含/**/內(nèi)容存在的溯捆,只要 AST 里注釋節(jié)點(diǎn)還存在丑搔,最后 PostCSS 還原 AST 時(shí)還是會(huì)把這段內(nèi)容還原,要做到徹底刪掉注釋提揍,需要對(duì) AST 的 nodes 字段進(jìn)行遍歷啤月,將 type 為 comment 的節(jié)點(diǎn)進(jìn)行刪除,插件源碼修改如下:

// plugin.js
module.exports = (opts = {}) => {
    // Work with options here
    // https://postcss.org/api/#plugin
    return {
        postcssPlugin: 'postcss-test',
        Once(root, postcss) {
            root.nodes.forEach(node => {
                if (node.type === 'rule') {
                    node.nodes.forEach((n, i) => {
                        if (n.type === 'comment') {
                            node.nodes.splice(i, 1)
                        }
                    })
                }
            })
        },
        Declaration(decl, postcss) {
            if (decl.value === '#ffffff') {
                    decl.value = 'white'
            }
        }
    }
}
module.exports.postcss = true

重新執(zhí)行 PostCSS劳跃,結(jié)果如下谎仲,符合預(yù)期。

.demo {
     font-size: 14px;
     color: white;
}

總結(jié)

1刨仑、PostCss是一個(gè)使用JS插件轉(zhuǎn)換css樣式的工具
2郑诺、PostCss將CSS解析為抽象語法樹(AST)夹姥、并提供一套 API 操作 AST
3、PostCss通過任意數(shù)量的“插件”函數(shù)辙诞,操作并傳遞AST
4辙售、然后將操作完成的AST轉(zhuǎn)換回字符串,并輸出到文件中
5飞涂、可以生成sourcemaps以跟蹤任何更改
6旦部、PostCss就像是處理css的生態(tài)系統(tǒng),沒有一個(gè)特定的插件能完全代表PostCss较店。

參考文章:
[如何編寫屬于自己的 PostCSS 8 插件士八?](https://zhuanlan.zhihu.com/p/426470972)  
[Postcss 運(yùn)用以及原理解析](http://www.reibang.com/p/183af77a51ec)  
[官方文檔](https://www.postcss.com.cn/api/#processor-use)  
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市泽西,隨后出現(xiàn)的幾起案子曹铃,更是在濱河造成了極大的恐慌,老刑警劉巖捧杉,帶你破解...
    沈念sama閱讀 206,723評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件陕见,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡味抖,警方通過查閱死者的電腦和手機(jī)评甜,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,485評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來仔涩,“玉大人忍坷,你說我怎么就攤上這事∪壑” “怎么了佩研?”我有些...
    開封第一講書人閱讀 152,998評(píng)論 0 344
  • 文/不壞的土叔 我叫張陵,是天一觀的道長霞揉。 經(jīng)常有香客問我旬薯,道長,這世上最難降的妖魔是什么适秩? 我笑而不...
    開封第一講書人閱讀 55,323評(píng)論 1 279
  • 正文 為了忘掉前任绊序,我火速辦了婚禮,結(jié)果婚禮上秽荞,老公的妹妹穿的比我還像新娘骤公。我一直安慰自己,他們只是感情好扬跋,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,355評(píng)論 5 374
  • 文/花漫 我一把揭開白布阶捆。 她就那樣靜靜地躺著,像睡著了一般。 火紅的嫁衣襯著肌膚如雪趁猴。 梳的紋絲不亂的頭發(fā)上刊咳,一...
    開封第一講書人閱讀 49,079評(píng)論 1 285
  • 那天,我揣著相機(jī)與錄音儡司,去河邊找鬼娱挨。 笑死,一個(gè)胖子當(dāng)著我的面吹牛捕犬,可吹牛的內(nèi)容都是我干的跷坝。 我是一名探鬼主播,決...
    沈念sama閱讀 38,389評(píng)論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼碉碉,長吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼柴钻!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起垢粮,我...
    開封第一講書人閱讀 37,019評(píng)論 0 259
  • 序言:老撾萬榮一對(duì)情侶失蹤贴届,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后蜡吧,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體毫蚓,經(jīng)...
    沈念sama閱讀 43,519評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,971評(píng)論 2 325
  • 正文 我和宋清朗相戀三年昔善,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了元潘。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,100評(píng)論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡君仆,死狀恐怖翩概,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情返咱,我是刑警寧澤钥庇,帶...
    沈念sama閱讀 33,738評(píng)論 4 324
  • 正文 年R本政府宣布,位于F島的核電站咖摹,受9級(jí)特大地震影響评姨,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜楞艾,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,293評(píng)論 3 307
  • 文/蒙蒙 一参咙、第九天 我趴在偏房一處隱蔽的房頂上張望龄广。 院中可真熱鬧硫眯,春花似錦、人聲如沸择同。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,289評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽敲才。三九已至裹纳,卻和暖如春择葡,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背剃氧。 一陣腳步聲響...
    開封第一講書人閱讀 31,517評(píng)論 1 262
  • 我被黑心中介騙來泰國打工敏储, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人朋鞍。 一個(gè)月前我還...
    沈念sama閱讀 45,547評(píng)論 2 354
  • 正文 我出身青樓已添,卻偏偏與公主長得像,于是被迫代替她去往敵國和親滥酥。 傳聞我的和親對(duì)象是個(gè)殘疾皇子更舞,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,834評(píng)論 2 345

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