Application service
editApplication service
editKibana has migrated to be a Single Page Application. Plugins should use Application service
API to instruct Kibana that an application should be loaded and rendered in the UI in response to user interactions. The service also provides utilities for controlling the navigation link state, seamlessly integrating routing between applications, and loading async chunks on demand.
The Application service is only available client side.
import { AppMountParameters, CoreSetup, Plugin, DEFAULT_APP_CATEGORIES } from '@kbn/core/public'; export class MyPlugin implements Plugin { public setup(core: CoreSetup) { core.application.register({ category: DEFAULT_APP_CATEGORIES.kibana, id: 'my-plugin', title: 'my plugin title', euiIconType: '/path/to/some.svg', order: 100, appRoute: '/app/my_plugin', async mount(params: AppMountParameters) { // Load application bundle const { renderApp } = await import('./application'); // Get start services const [coreStart, depsStart] = await core.getStartServices(); // Render the application return renderApp(coreStart, depsStart, params); }, }); } }
Application specific URL. |
|
|
|
|
|
|
you are free to use any UI library to render a plugin application in DOM. However, we recommend using React and EUI for all your basic UI components to create a consistent UI experience.