@hawtio/core v4.16.5
Hawtio Core
This package contains the core parts of the Hawtio web console.
hawtio-core features include:
Plugins
Registering inline plugins
Register any AngularJS modules you want to load using hawtioPluginLoader
in your code. For example:
export const myModule = angular
.module('my-module', [])
.name;
hawtioPluginLoader.addModule(myModule);
By default hawtio-core already adds ng
, ng-route
and ng-sanitize
.
Registering plugins dynamically
Plugins can also be dynamically discovered by registering URLs to check with hawtioPluginLoader.addUrl()
. The URL should return a map of json objects that contain scripts for the plugin loader to load. For example:
{
"some_plugin": {
"Name": "dummy",
"Context": "/hawtio",
"Scripts": [
"test.js"
]
}
}
Where we've the following attributes:
- Name - The name of the plugin
- Scripts - An array of script files that should be loaded
- Context - the top level context under which all scripts reside
Remove any ng-app annotation from your HTML template, hawtio-core manually bootstraps AngularJS.
Routing and navigation
Single page
Configure a single route to your component:
export function configureRoutes($routeProvider: ng.route.IRouteProvider) {
'ngInject';
$routeProvider
.when('/my-plugin', {template: '<my-plugin></my-plugin>'});
}
export const module = angular.module('my-plugin', [])
.config(configureRoutes)
...
.name;
Configure a menu item for your plugin:
export function configureNavigation(mainNavService: Nav.MainNavService) {
'ngInject';
mainNavService.addItem({
title: 'My Plugin',
href: '/my-plugin', // must match configured route
isValid: () => true, // dynamically show/hide menu item (optional)
rank: 1 // change item location in the menu (optional)
});
}
export const module = angular.module('my-plugin', [])
.run(configureNavigation)
...
.name;
Multiple pages
Configure routes to your components:
export function configureRoutes($routeProvider: ng.route.IRouteProvider) {
'ngInject';
$routeProvider
.when('/my-plugin/page1', {template: '<my-plugin-page1></my-plugin-page1>'})
.when('/my-plugin/page2', {template: '<my-plugin-page2></my-plugin-page2>'})
.when('/my-plugin/page2/details', {template: '<my-plugin-page2-details></my-plugin-page2-details>'})
...
}
export const module = angular.module('my-plugin', [])
.config(configureRoutes)
...
.name;
Configure a menu item for your plugin:
export function configureNavigation(mainNavService: Nav.MainNavService) {
'ngInject';
mainNavService.addItem({
title: 'My Plugin',
basePath: '/my-plugin' // must match base path of configured routes
});
}
export const module = angular.module('my-plugin', [])
.run(configureNavigation)
...
.name;
Help documentation
Plugins can register their associated help documentation via the helpRegistry
service. Just inject it into a run block and add your custom documentation written in Markdown. For example:
export function configureHelp(helpRegistry: Help.HelpRegistry) {
'ngInject';
helpRegistry.addUserDoc('my-plugin', 'plugins/my-plugin/help.md');
}
export const module = angular.module('my-plugin', [])
.run(configureHelp)
...
.name;
UI extensions
An extension registration service and a rendering directive are provided to extend the UI. The extension points are named locations in the UI and plugins can register callbacks to produce the HTML that will be added to the DOM.
Register an extension point callback
In your Hawtio plugin you can register an extension point callback like:
var module = angular.module("MyAwesomePlugin", []);
module.config(['HawtioExtension', function(HawtioExtension) {
// Register an extension point callback that returns a string.
// When a string is returned it will NOT be converted to HTML
// but will be added as a text node.
HawtioExtension.add("someExtensionPoint", function(scope){
return "Some important text!";
});
// Register an extension point callback that returns a DOM element
// When a DOM element is returned it will be appended to the containing
// <div> of the extension point
HawtioExtension.add("someExtensionPoint", function(scope){
var div = document.createElement("div");
div.className = "awesome";
div.appendChild(document.createTextNode("I can add stuff!"));
return div;
});
// Register an extension point callback that returns null.
// Use this if you do not need to append something directly to the extension
// point but want to make sure some javascript is run when that extension point
// is rendered.
HawtioExtension.add("someExtensionPoint", function(scope){
// some javascript here that does whatever you want
return null;
});
}]);
hawtioPluginLoader.addModule("MyAwesomePlugin");
It is important to note that currently callbacks are rendered in the order they were registered. In the future we may extend the registration API to include a priority.
Render an extension point
Any plugin can choose to render all the registered callbacks for an extension point.
Using the directive in an angular template (recommended)
<div>
<h1>Some HTML template for my module</h1>
<hawtio-extension name="someExtensionPoint"></hawtio-extension>
</div>
Using the render API
Using the directive method above is recommended in most cases, but does pass down whatever the current scope is into the callbacks so that they have the same data available to them. If you want to restrict the data passed down to the callbacks then you can call the service's render API directly.
// Where element is the DOM node that the results of all the callbacks
// will be appended to, and scope is whatever data you want to make available
// to the callbacks.
HawtioExtension.render(extensionPointName, element, scope);
Template caching
Hawtio Core wraps/extends the existing $templateCache and $templateRequest services from AngularJS. If you embed all of your templates into the $templateCache service, then use this functionality to ensure that $templateRequest doesn't try and fetch templates from your server, especially when you've a lot of plugins and templates.
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
4 years ago
4 years ago
4 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago