前言

《一篇带你用 VuePress + Github Pages 搭建博客》中,我们使用 VuePress 搭建了一个博客,最终的效果查看:TypeScript 中文文档
但在搭建 VuePress 博客的过程中,也并不是所有的插件都能满足需求,所以本篇我们以实现一个代码复制插件为例,教大家如何从零实现一个 VuePress 插件。

本地开发

开发插件第一个要解决的问题就是如何本地开发,我们查看 VuePress 1.0 官方文档的「开发插件」章节,并没有找到解决方案,但在 VuePress 2.0 官方文档的「本地插件」里,却有写道:
推荐你直接将 配置文件 作为插件使用,因为几乎所有的插件 API 都可以在配置文件中使用,这在绝大多数场景下都更为方便。
但是如果你在配置文件中要做的事情太多了,最好还是将它们提取到单独的插件中,然后通过设置绝对路径或者通过 require 来使用它们:

  1. module.exports = {
  2. plugins: [
  3. path.resolve(__dirname, './path/to/your-plugin.js'),
  4. require('./another-plugin'),
  5. ],
  6. }

那就让我们开始吧!

初始化项目

我们在 .vuepress 文件夹下新建一个 vuepress-plugin-code-copy 的文件夹,用于存放插件相关的代码,然后命令行进入到该文件夹,执行 npm init,创建 package.json,此时文件的目录为:

  1. .vuepress
  2. ├─ vuepress-plugin-code-copy
  3. └─ package.json
  4. └─ config.js

我们在 vuepress-plugin-code-copy下新建一个 index.js 文件,参照官方文档插件示例中的写法,我们使用返回对象的函数形式,这个函数接受插件的配置选项作为第一个参数、包含编译期上下文的 ctx 对象作为第二个参数:

  1. module.exports = (options, ctx) => {
  2. return {
  3. // ...
  4. }
  5. }

再参照官方文档 Option API 中的 name,以及生命周期函数中的 ready 钩子,我们写一个初始的测试代码:

  1. module.exports = (options, ctx) => {
  2. return {
  3. name: 'vuepress-plugin-code-copy',
  4. async ready() {
  5. console.log('Hello World!');
  6. }
  7. }
  8. }

此时我们运行下 yarn run docs:dev,可以在运行过程中看到我们的插件名字和打印结果:
从零实现一个 VuePress 插件 - 图1

插件设计

现在我们可以设想下我们的代码复制插件的效果了,我想要实现的效果是:
在代码块的右下角有一个 Copy 文字按钮,点击后文字变为 Copied!然后一秒后文字重新变为 Copy,而代码块里的代码则在点击的时候复制到剪切板中,期望的表现效果如下:
从零实现一个 VuePress 插件 - 图2

插件开发

如果是在 Vue 组件中,我们很容易实现这个效果,在根组件 mounted 或者 updated的时候,使用 document.querySelector获取所有的代码块,插入一个按钮元素,再在按钮元素上绑定点击事件,当触发点击事件的时候,代码复制到剪切板,然后修改文字,1s 后再修改下文字。
那 VuePress 插件有方法可以控制根组件的生命周期吗?我们查阅下 VuePress 官方文档的 Option API,可以发现 VuePress 提供了一个 clientRootMixin 方法:
指向 mixin 文件的路径,它让你可以控制根组件的生命周期
看下示例代码:

  1. // 插件的入口
  2. const path = require('path')
  3. module.exports = {
  4. clientRootMixin: path.resolve(__dirname, 'mixin.js')
  5. }

这不就是我们需要的吗?那我们动手吧,修改 index.js的内容为:

  1. const path = require('path');
  2. module.exports = (options, ctx) => {
  3. return {
  4. name: 'vuepress-plugin-code-copy',
  5. clientRootMixin: path.resolve(__dirname, 'clientRootMixin.js')
  6. }
  7. }

在 vuepress-plugin-code-copy下新建一个 clientRootMixin.js文件,代码写入:

  1. export default {
  2. updated() {
  3. setTimeout(() => {
  4. document.querySelectorAll('div[class*="language-"] pre').forEach(el => {
  5. console.log('one code block')
  6. })
  7. }, 100)
  8. }
  9. }

刷新下浏览器里的页面,然后查看打印:
从零实现一个 VuePress 插件 - 图3
接下来就要思考如何写入按钮元素了。
当然我们可以使用原生 JavaScript 一点点的创建元素,然后插入其中,但我们其实是在一个支持 Vue 语法的项目里,其实我们完全可以创建一个 Vue 组件,然后将组件的实例挂载到元素上。那用什么方法挂载呢?
我们可以在 Vue 的全局 API里,找到 Vue.extendAPI,看一下使用示例:

  1. // 要挂载的元素
  2. <div id="mount-point"></div>
  1. // 创建构造器
  2. var Profile = Vue.extend({
  3. template: '<p>{{firstName}} {{lastName}} aka {{alias}}</p>',
  4. data: function () {
  5. return {
  6. firstName: 'Walter',
  7. lastName: 'White',
  8. alias: 'Heisenberg'
  9. }
  10. }
  11. })
  12. // 创建 Profile 实例,并挂载到一个元素上。
  13. new Profile().$mount('#mount-point')

结果如下:

  1. // 结果为:
  2. <p>Walter White aka Heisenberg</p>

那接下来,我们就创建一个 Vue 组件,然后通过 Vue.extend 方法,挂载到每个代码块元素中。
在 vuepress-plugin-code-copy下新建一个 CodeCopy.vue 文件,写入代码如下:

  1. <template>
  2. <span class="code-copy-btn" @click="copyToClipboard">{{ buttonText }}</span>
  3. </template>
  4. <script>
  5. export default {
  6. data() {
  7. return {
  8. buttonText: 'Copy'
  9. }
  10. },
  11. methods: {
  12. copyToClipboard(el) {
  13. this.setClipboard(this.code, this.setText);
  14. },
  15. setClipboard(code, cb) {
  16. if (navigator.clipboard) {
  17. navigator.clipboard.writeText(code).then(
  18. cb,
  19. () => {}
  20. )
  21. } else {
  22. let copyelement = document.createElement('textarea')
  23. document.body.appendChild(copyelement)
  24. copyelement.value = code
  25. copyelement.select()
  26. document.execCommand('Copy')
  27. copyelement.remove()
  28. cb()
  29. }
  30. },
  31. setText() {
  32. this.buttonText = 'Copied!'
  33. setTimeout(() => {
  34. this.buttonText = 'Copy'
  35. }, 1000)
  36. }
  37. }
  38. }
  39. </script>
  40. <style scoped>
  41. .code-copy-btn {
  42. position: absolute;
  43. bottom: 10px;
  44. right: 7.5px;
  45. opacity: 0.75;
  46. cursor: pointer;
  47. font-size: 14px;
  48. }
  49. .code-copy-btn:hover {
  50. opacity: 1;
  51. }
  52. </style>

该组件实现了按钮的样式和点击时将代码写入剪切版的效果,整体代码比较简单,就不多叙述了。
我们修改一下 clientRootMixin.js:

  1. import CodeCopy from './CodeCopy.vue'
  2. import Vue from 'vue'
  3. export default {
  4. updated() {
  5. // 防止阻塞
  6. setTimeout(() => {
  7. document.querySelectorAll('div[class*="language-"] pre').forEach(el => {
  8. // 防止重复写入
  9. if (el.classList.contains('code-copy-added')) return
  10. let ComponentClass = Vue.extend(CodeCopy)
  11. let instance = new ComponentClass()
  12. instance.code = el.innerText
  13. instance.$mount()
  14. el.classList.add('code-copy-added')
  15. el.appendChild(instance.$el)
  16. })
  17. }, 100)
  18. }
  19. }

这里注意两点,第一是我们通过 el.innerText 获取要复制的代码内容,然后写入到实例的 code 属性,在组件中,我们是通过 this.code获取的。
第二是我们没有使用 $mount(element),直接传入一个要挂载的节点元素,这是因为 $mount() 的挂载会清空目标元素,但是这里我们需要添加到元素中,所以我们在执行 instance.$mount()后,通过 instance.$el获取了实例元素,然后再将其 appendChild 到每个代码块中。关于 $el的使用可以参考官方文档的 el 章节
此时,我们的文件目录如下:

  1. .vuepress
  2. ├─ vuepress-plugin-code-copy
  3. ├─ CodeCopy.vue
  4. ├─ clientRootMixin.js
  5. ├─ index.js
  6. └─ package.json
  7. └─ config.js

至此,其实我们就已经实现了代码复制的功能。

插件选项

有的时候,为了增加插件的可拓展性,会允许配置可选项,就比如我们不希望按钮的文字是 Copy,而是中文的「复制」,复制完后,文字变为 「已复制!」,该如何实现呢?
前面讲到,我们的 index.js导出的函数,第一个参数就是 options 参数:

  1. const path = require('path');
  2. module.exports = (options, ctx) => {
  3. return {
  4. name: 'vuepress-plugin-code-copy',
  5. clientRootMixin: path.resolve(__dirname, 'clientRootMixin.js')
  6. }
  7. }

我们在 config.js先写入需要用到的选项:

  1. module.exports = {
  2. plugins: [
  3. [
  4. require('./vuepress-plugin-code-copy'),
  5. {
  6. 'copybuttonText': '复制',
  7. 'copiedButtonText': '已复制!'
  8. }
  9. ]
  10. ]
  11. }

我们 index.js中通过 options参数可以接收到我们在 config.js 写入的选项,但我们怎么把这些参数传入 CodeCopy.vue 文件呢?
我们再翻下 VuePress 提供的 Option API,可以发现有一个 define API,其实这个 define 属性就是定义我们插件内部使用的全局变量。我们修改下 index.js:

  1. const path = require('path');
  2. module.exports = (options, ctx) => {
  3. return {
  4. name: 'vuepress-plugin-code-copy',
  5. define: {
  6. copybuttonText: options.copybuttonText || 'copy',
  7. copiedButtonText: options.copiedButtonText || "copied!"
  8. },
  9. clientRootMixin: path.resolve(__dirname, 'clientRootMixin.js')
  10. }
  11. }

现在我们已经写入了两个全局变量,组件里怎么使用呢?答案是直接使用!
我们修改下 CodeCopy.vue 的代码:

  1. // ...
  2. <script>
  3. export default {
  4. data() {
  5. return {
  6. buttonText: copybuttonText
  7. }
  8. },
  9. methods: {
  10. copyToClipboard(el) {
  11. this.setClipboard(this.code, this.setText);
  12. },
  13. setClipboard(code, cb) {
  14. if (navigator.clipboard) {
  15. navigator.clipboard.writeText(code).then(
  16. cb,
  17. () => {}
  18. )
  19. } else {
  20. let copyelement = document.createElement('textarea')
  21. document.body.appendChild(copyelement)
  22. copyelement.value = code
  23. copyelement.select()
  24. document.execCommand('Copy')
  25. copyelement.remove()
  26. cb()
  27. }
  28. },
  29. setText() {
  30. this.buttonText = copiedButtonText
  31. setTimeout(() => {
  32. this.buttonText = copybuttonText
  33. }, 1000)
  34. }
  35. }
  36. }
  37. </script>
  38. // ...

最终的效果如下:
从零实现一个 VuePress 插件 - 图4

代码参考

完整的代码查看:https://github.com/mqyqingfeng/Blog/tree/master/demos/VuePress/vuepress-plugin-code-copy
其实本篇代码是参考了 Vuepress Code Copy Plugin这个插件的代码,点击查看源码地址