2024-11-14 17:43:18 +08:00
|
|
|
|
// File path: ../Requirements/pluginRequirement.ts
|
2024-11-14 01:44:26 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 插件配置接口
|
|
|
|
|
*
|
|
|
|
|
* 该接口定义了插件的基本配置,包括插件的名称、版本、描述、作者等信息。
|
|
|
|
|
* 还包括插件的生命周期钩子和依赖项的配置。
|
|
|
|
|
*/
|
2024-11-14 17:43:18 +08:00
|
|
|
|
import { SerializeType } from "./generalRequirement";
|
|
|
|
|
import { ExtensionProps } from "types/extensionRequirement";
|
|
|
|
|
import { ExtensionService } from "service/extensionService";
|
2024-11-14 23:01:21 +08:00
|
|
|
|
import { useExtension } from "hooks/servicesProvider";
|
2024-11-14 17:43:18 +08:00
|
|
|
|
|
2024-11-14 01:44:26 +08:00
|
|
|
|
export interface PluginConfig {
|
|
|
|
|
name: string; // 插件名称
|
|
|
|
|
version: string; // 插件版本
|
|
|
|
|
displayName: string; // 插件显示名称
|
|
|
|
|
description?: string; // 插件描述(可选)
|
|
|
|
|
author?: string; // 插件作者(可选)
|
|
|
|
|
enabled: boolean; // 插件是否启用
|
|
|
|
|
icon?: string; // 插件图标URL(可选)
|
|
|
|
|
managePath?: string; // 插件管理页面路径(可选)
|
|
|
|
|
configuration?: PluginConfiguration; // 插件配置
|
|
|
|
|
hooks?: {
|
|
|
|
|
onInstall?: (context: any) => {}; // 安装时调用的钩子(可选)
|
|
|
|
|
onUninstall?: (context: any) => {}; // 卸载时调用的钩子(可选)
|
|
|
|
|
onEnable?: (context: any) => {}; // 启用时调用的钩子(可选)
|
|
|
|
|
onDisable?: (context: any) => {}; // 禁用时调用的钩子(可选)
|
|
|
|
|
};
|
|
|
|
|
routs: Set<{
|
|
|
|
|
description?: string; // 路由描述(可选)
|
|
|
|
|
path: string; // 路由路径
|
|
|
|
|
}>;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 插件配置接口
|
|
|
|
|
*
|
|
|
|
|
* 该接口定义了插件的配置类型及其属性。
|
|
|
|
|
*/
|
|
|
|
|
export interface PluginConfiguration {
|
2024-11-14 17:43:18 +08:00
|
|
|
|
[key: string]: {
|
2024-11-14 01:44:26 +08:00
|
|
|
|
title: string; // 属性标题
|
|
|
|
|
description?: string; // 属性描述(可选)
|
2024-11-14 17:43:18 +08:00
|
|
|
|
data: SerializeType; // 额外数据(可选),支持序列化
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 插件属性接口
|
|
|
|
|
*
|
|
|
|
|
* 该接口定义了插件的属性和行为。
|
|
|
|
|
*/
|
2024-11-14 23:01:21 +08:00
|
|
|
|
export class usePluginProps extends ExtensionProps {
|
|
|
|
|
|
|
|
|
|
}
|
2024-11-14 17:43:18 +08:00
|
|
|
|
|
|
|
|
|
|