-
Notifications
You must be signed in to change notification settings - Fork 66
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
Create the Analysis plugin and implement the new menu app registration method #484
Create the Analysis plugin and implement the new menu app registration method #484
Comments
The dynamically controlled system for hiding/showing subappsLet me explain how the system for hiding/showing subapplications of an application (for example, "Endpoint Security") works. Key Concepts
Subapplication Show/Hide Process Flow
|
What does
|
|
Global SearchBarPeek.2025-01-22.11-54.mp4A SearchCommand is registered using the 1. Search Command Registrationif (this.coreSetup.chrome.navGroup.getNavGroupEnabled()) {
this.coreSetup.chrome.globalSearch.registerSearchCommand({
id,
type: 'PAGES',
run: async (query: string, done?: () => void) =>
searchPages(query, applicationIds, getCore(), done),
});
} Registration Components:
2. Logic of the
|
Below is a simple explanation of each relevant method in the Methods
|
Description
We have to create the plugin "Analysis" which will include all the applications related to data analysis dashboards. The main goal is to register the Analysis plugin and its applications to create the scaffolding which will be used later on to create the dashboards.
Menu structure
Functional requirements
Additional information
The new navigation menu is enabled with the advanced setting
useNewHomePage
. The OpenSearch native plugindev_tools
already has the new navigation menu implementation.This can be used as an example:
src/plugins/dev_tools/public/plugin.ts
The text was updated successfully, but these errors were encountered: