我们以注入一个全局组件为例,来看看如何定义和使用插件。
为了获得更好的类型提示,你可以在项目中安装 @rspress/shared
,然后通过 import { RspressPlugin } from '@rspress/shared'
来引入 RspressPlugin
类型。
import { RspressPlugin } from '@rspress/shared';
export function pluginExample(slug: string): RspressPlugin {
// 组件路径,组件的内容你需要自己实现
const componentPath = path.join(__dirname, 'Example.tsx');
return {
// 插件名称
name: 'plugin-example',
// 全局组件的路径
globalUIComponents: [componentPath],
// 构建阶段的全局变量定义
builderConfig: {
source: {
define: {
'process.env.slug': JSON.stringify(slug),
},
},
},
};
}
import React from 'react';
const Example = () => {
console.log(process.env.SLUG);
return <div>Example</div>;
};
export default Example;
插件一般为一个函数,接收一些插件参数(可选),返回一个对象,对象中包含插件的名称以及其它配置。在上面的例子中,我们定义了一个插件,它的名称为plugin-example
,它会在构建阶段定义一个全局变量slug
,并且在文档中注入一个全局组件Example.tsx
。
在 rspress.config.ts
中通过 plugins
注册插件:
import { pluginExample } from './plugin';
export default {
plugins: [pluginExample('test')],
};
这样,Example 组件会自动在页面中渲染,并且我们可以在 Example 组件中访问到process.env.slug
。