跳至主要内容

UI 扩展

本页详细介绍了 UI 扩展 API。

Grafana 中的扩展点

Grafana 中可供插件扩展的可用扩展点列表。所有这些扩展点 ID 都可以使用 PluginExtensionPoints 枚举访问,该枚举由 @grafana/data 包公开。

import { PluginExtensionPoints } from '@grafana/data';

const extensionPointId = PluginExtensionPoints.DashboardPanelMenu;
扩展点 ID类型描述
AlertingAlertingRuleAction链接使用自定义操作为警报规则扩展警报规则菜单。
AlertingHomePage组件使用自定义警报创建体验扩展警报主页。
AlertingRecordingRuleAction链接使用自定义操作为记录规则扩展警报规则菜单。
AlertInstanceAction链接使用自定义操作扩展警报实例表。
CommandPalette链接使用自定义操作扩展命令面板。
DashboardPanelMenu链接使用自定义操作扩展面板菜单。
ExploreToolbarAction链接使用自定义操作扩展 Explore 页面上的“添加”按钮。
UserProfileTab组件使用自定义选项卡扩展用户个人资料页面。

方法

addComponent

信息

适用于 Grafana >=v11.1.0。

此方法可用于将 React 组件 注册到某个扩展点,以贡献新的 UI 体验。

export const plugin = new AppPlugin<{}>().addComponent({
targets: ['grafana/user/profile/tab/v1'],
title: 'New user profile tab',
description: 'A new tab that shows extended user profile information',
component: () => {
return <div>Hello World!</div>;
},
});

参数

addComponent() 方法接受一个包含以下属性的单个 config 对象

属性描述
targets将注册扩展的扩展点 ID 列表。
示例:"grafana/dashboard/panel/menu/v1"查看 Grafana 中可用的扩展点 →
title组件的人类可读标题。
description组件的人类可读描述。
component将由扩展点渲染的 React 组件。注意:传递给组件的道具由每个扩展点定义。

返回值

该方法返回 AppPlugin 实例以允许链接。

示例

另请参阅

信息

适用于 Grafana >=v11.1.0。

此方法可用于将链接扩展注册到某个扩展点。链接扩展用于导航到 Grafana UI 或其他插件的不同部分,并且可以包含通过 onClick 声明的模态元素。

export const plugin = new AppPlugin<{}>().addLink({
targets: ['grafana/dashboard/panel/menu/v1'],
title: 'Declare incident',
description: 'Declare an incident and attach the panel context to it',
path: '/a/myorg-incidents-app/incidents',
});

参数

addLink() 方法接受一个包含以下属性的单个 config 对象

属性描述必需
targets将注册扩展的扩展点 ID 列表。
示例:"grafana/dashboard/panel/menu/v1"查看 Grafana 中可用的扩展点 →
true
title链接的人类可读标题。true
description链接的人类可读描述。true
path?您希望在用户单击链接时将用户发送到的应用程序插件中的路径。(使用 pathonClick)。
示例:"/a/myorg-incidents-app/incidents"
true
onClick?用户单击链接时应触发的回调。(使用 pathonClick)。false
category?用于将链接与其他链接分组的类别。false
icon?显示链接时应使用的图标。
示例:"edit""bookmark"查看所有可用的图标名称 →
false
configure?在显示链接之前调用的函数,使您可以根据其 context 动态更改或隐藏链接。false

返回值

该方法返回 AppPlugin 实例以允许链接。

示例

exposeComponent

信息

适用于 Grafana >=v11.1.0。

此方法公开一个 React 组件,并使其可供其他插件使用。其他插件可以通过调用 usePluginComponent() 并引用公开的组件的 id 在其应用程序中渲染该组件。

export const plugin = new AppPlugin<{}>()
.exposeComponent({
id: "myorg-incidents-app/create-incident-form/v1",],
title: "Create incident form",
description: "A form to create a new incident.",
component: () => {
return <div>Hello World!</div>;
},
});

参数

exposeComponent() 方法接受一个包含以下属性的单个 config 对象

属性描述
id您要公开的组件的唯一字符串标识符。它必须以您的插件 ID 为前缀。
示例:"myorg-incidents-app/create-incident-form/v1"
title组件的人类可读标题。
description组件的人类可读描述。
component您要公开的 React 组件。
确保使用组件依赖的必要的 React 上下文提供者对其进行包装,因为此组件不会在与插件相同的 React 树下渲染。

返回值

该方法返回 AppPlugin 实例以允许链接。

示例

另请参阅

getPluginExtensions ⚠️

此函数可用于获取注册到某个扩展点的扩展(链接和组件)。

警告

此函数已弃用,将在 Grafana v12 中删除。请改用 usePluginLinks()usePluginComponents() 钩子。

import { getPluginExtensions } from '@grafana/runtime';

const { extensions } = getPluginExtensions({
extensionPointId: 'grafana/dashboard/panel/menu/v1',
limitPerPlugin: 2,
context: {
panelId: '...',
},
});

参数

getPluginExtensions() 函数接受一个包含以下属性的单个 options 对象

属性描述必需
extensionPointId用于获取链接扩展的唯一 ID。如果您正在实现新的扩展点,这就是插件在注册扩展时引用的内容。插件必须在其插件 ID 前面加上该 ID,而 Grafana 核心扩展点必须使用 "grafana/" 前缀。
示例:"grafana/dashboard/panel/menu/v1"
true
context?您想要与扩展共享的任意对象。这可用于将数据传递给扩展。false
limitPerPlugin?- 每个插件要返回的最大扩展数。默认情况下没有限制。false

返回值

该钩子返回以下对象

const {
// An empty array if no plugins have registered extensions for this extension point yet
extensions: PluginExtension[];
} = getPluginExtensions(options);

有关更多信息,请参见 PluginExtension

钩子

usePluginComponent

信息

适用于 Grafana >=v11.1.0。

此 React 钩子可用于获取由插件使用唯一 ID 公开的单个 React 组件。插件可以使用 AppPlugin.exposeComponent() 方法公开组件。

import { usePluginComponent } from '@grafana/runtime';

const { component: Component, isLoading } = usePluginComponent('myorg-incidents-app/create-incident-form/v1');

参数

  • id - 用于识别组件的唯一 ID。

返回值

该钩子返回以下对象

const {
// The react component that was exposed by the plugin
// (`null` if no component is exposed with that id)
component: React.ComponentType<Props> | undefined | null;

// `true` until the plugin exposing the component is still loading
isLoading: boolean;
} = usePluginComponent(id);

示例

usePluginComponents

信息

适用于 Grafana >=v11.1.0。

此 React 钩子可用于获取注册到某个扩展点的组件。组件扩展可用于渲染自定义 UI 组件。插件可以使用 AppPlugin.addComponent() 方法注册组件。

import { usePluginComponents } from '@grafana/runtime';

const { components, isLoading } = usePluginComponents({
extensionPointId: 'grafana/user/profile/tab/v1',
limitPerPlugin: 1,
});

参数

.usePluginComponents() 方法接受一个包含以下属性的单个 options 对象

属性描述必需
extensionPointId用于获取链接扩展的唯一 ID。如果您正在实现新的扩展点,这就是插件在注册扩展时引用的内容。插件必须在其插件 ID 前面加上该 ID,而 Grafana 核心扩展点必须使用 "grafana/" 前缀。
示例:"grafana/user/profile/tab/v1"
true
limitPerPlugin?- 每个插件要返回的最大扩展数。默认情况下没有限制。False

返回值

该钩子返回以下对象(有关更多信息,请查看 PluginExtensionComponent

const {
// An empty array if no plugins have registered extensions for this extension point yet
components: PluginExtensionComponent[];

// `true` until any plugins extending this extension point
// are still loading
isLoading: boolean;
} = usePluginComponents(options);

示例

另请参阅

信息

适用于 Grafana >=v11.1.0。

此 React Hook 可用于获取注册到特定扩展点的链接。插件可以使用 AppPlugin.addLink() 方法注册链接。

import { usePluginLinks } from '@grafana/runtime';

const { links, isLoading } = usePluginLinks({
extensionPointId: 'grafana/dashboard/panel/menu/v1',
limitPerPlugin: 2,
context: {
panelId: '...',
},
});

参数

.usePluginLinks() 方法接受一个包含以下属性的 options 对象

属性描述必需
extensionPointId用于获取链接扩展的唯一 ID。如果您正在实现新的扩展点,这就是插件在注册扩展时引用的内容。插件必须在其插件 ID 前面加上该 ID,而 Grafana 核心扩展点必须使用 "grafana/" 前缀。
示例:"grafana/dashboard/panel/menu/v1"
true
context?您想要与扩展共享的任意对象。这可用于将数据传递给扩展。false
limitPerPlugin?每个插件要返回的扩展数量上限。默认情况下没有限制。false

返回值

此 Hook 返回以下对象(有关更多信息,请查看 PluginExtensionLink

const {
// An empty array if no plugins have registered extensions for this extension point yet
links: PluginExtensionLink[];

// `true` until any plugins extending this extension point
// are still loading
isLoading: boolean;
} = usePluginLinks(options);

示例

另请参阅

usePluginExtensions ⚠️

此 React Hook 可用于获取注册到特定扩展点的扩展(链接和组件)。

警告

此 Hook 已弃用,将在 Grafana v12 中移除。请改用 usePluginLinks()usePluginComponents() Hook。

import { usePluginExtensions } from '@grafana/runtime';

const { extensions, isLoading } = usePluginExtensions({
extensionPointId: 'grafana/dashboard/panel/menu/v1',
limitPerPlugin: 2,
context: {
panelId: '...',
},
});

参数

.usePluginExtensions() 方法接受一个包含以下属性的 options 对象

属性描述必需
extensionPointId用于获取链接扩展的唯一 ID。如果您正在实现新的扩展点,这就是插件在注册扩展时引用的内容。插件必须在其插件 ID 前面加上该 ID,而 Grafana 核心扩展点必须使用 "grafana/" 前缀。
示例:"grafana/dashboard/panel/menu/v1"
true
context?您想要与扩展共享的任意对象。这可用于将数据传递给扩展。false
limitPerPlugin?每个插件要返回的扩展数量上限。默认情况下没有限制。false

返回值

该钩子返回以下对象

const {
// An empty array if no plugins have registered extensions for this extension point yet
extensions: PluginExtension[];

// `true` until any plugins extending this extension point
// are still loading
isLoading: boolean;
} = usePluginExtensions(options);

有关更多信息,请参见 PluginExtension