[Graph] Migrate client side plugin #56290
Labels
Feature:Graph
Graph application feature
Feature:NP Migration
Team:Visualizations
Visualization editors, elastic-charts and infrastructure
The client side Graph app should get migrated with angular used locally within the plugin.
Currently it still uses several legacy imports that should either get cleaned up or moved to the NP together with the plugin:
export { SavedObject, SavedObjectKibanaServices } from 'ui/saved_objects/types';
- wait for Move saved object modal into new platform #55423export { configureAppAngularModule } from 'ui/legacy_compat';
- pick out relevant pieces and migrate just them - try to avoid moving the wholelegacy_compat
module as it depends on a lot of other thingsexport { createTopNavDirective, createTopNavHelper } from 'ui/kbn_top_nav/kbn_top_nav';
- Move over intokibana_legacy
export { confirmModalFactory } from 'ui/modals/confirm_modal';
- wait for Remove usages of confirmModal #55428export { addAppRedirectMessageToUrl } from 'ui/notify';
- Move intokibana_legacy
and make it part of the local application serviceexport { SaveResult } from 'ui/saved_objects/show_saved_object_save_modal';
- wait for Move saved object modal into new platform #55423export { createSavedObjectClass } from 'ui/saved_objects/saved_object';
- move over in separate PRexport { showSaveModal } from 'ui/saved_objects/show_saved_object_save_modal';
- wait for Move saved object modal into new platform #55423Cleaning up the dependencies can also happen in separate PRs. Migrations and styling can be left behind for now.
The text was updated successfully, but these errors were encountered: