Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Management] Allow management apps to register additional deepLinks #213152

Open
tsullivan opened this issue Mar 4, 2025 · 1 comment
Open

[Management] Allow management apps to register additional deepLinks #213152

tsullivan opened this issue Mar 4, 2025 · 1 comment
Labels
Team:Kibana Management Dev Tools, Index Management, Upgrade Assistant, ILM, Ingest Node Pipelines, and more

Comments

@tsullivan
Copy link
Member

tsullivan commented Mar 4, 2025

This issue proposes allowing plugins to create deepLinks for individual screens or tabs in their management UI.

Background

Today, the Management plugin registers with the Core Application service with an appUpdater$ that registers a single deepLink on behalf of consumers that register applications with the management plugin. (Link to the code)

Image

However, there are times when a management app has multiple screens or tabs, and the plugins owners need deepLinks for navigation to take users directly to those screeen.

Proposal

Allowing plugins to configure their management apps with additional deepLink objects, would lead to consumer code registering management apps with something like:

  management?.sections.section.xyz.registerApp({
    id: 'myManagementApp',
    title: 'My Management App Title',
    mount: async (params) => {
      const { renderApp } = await getRenderApp();
      return renderApp(params);
    },
    deepLinks: [
      {
        id: 'knowledgeBase',
        title: 'Knowledge Base',
        path: '?tab=knowledge_base',
        keywords: 'blahblah',
      },
    ],
  });
@tsullivan tsullivan added the Team:Kibana Management Dev Tools, Index Management, Upgrade Assistant, ILM, Ingest Node Pipelines, and more label Mar 4, 2025
@elasticmachine
Copy link
Contributor

Pinging @elastic/kibana-management (Team:Kibana Management)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Team:Kibana Management Dev Tools, Index Management, Upgrade Assistant, ILM, Ingest Node Pipelines, and more
Projects
None yet
Development

No branches or pull requests

2 participants