This is a temporary README included with the creation of your extension intended to help guide development. Feel free to overrwite with your own changes.
If you chose to install dependencies during setup, you can run npm start
to view the extension in your web browser, other wise run npm install
before npm start
.
To install an extension, add the following to the profile manifest .yml
file intended to be deployed inbuild/platform-install/
, and deploy with ansible-playbook -i inventory/{PROFILE_NAME} deploy-xos-playbook.yml
enabled_gui_extensions: - name: <%= name %> path: orchestration/<%= name %>
NOTE: the name
field must match the subdirectory specified in conf/app/gulp.conf.js
(eg: dist/extensions/<%= name %>
)
Additional necessary files (such as stylesheets or config files) can be added to the profile manifest as follows, with <%= name %>/src/
as the root.
enabled_gui_extensions: - name: <%= name %> path: orchestration/<%= name %> extra_files: - app/style/style.css
During development, you may find it necessary to create separate config files in order to include other files used in your extension (such as images). The path to your extension may vary depending on whether you are running it locally (./xos/extensions/extension-name
) vs. on a container in production (./extensions/extension-name
).
You can create separate customconfig.local.js
and customconfig.production.js
files in the conf/
folder, and then edit the following portion of the appropriate webpack.conf.js
file as follows:
new CopyWebpackPlugin([ { from: `./conf/app/app.config.${env}.js`, to: `app.config.js` }, { from: `./conf/app/style.config.${brand}.js`, to: `style.config.js` }, // add your file here { from: `./conf/app/customconfig.local.js`, to: `customconfig.js`} ])
webpack.conf.js
will be used in a local development environment, such as when running npm start
webpack-dist.conf.js
will be used in a production container after deploying a profile.
Used to create custom navigation links in the left navigation panel.
Provides easy access to model ngResources provided by an XOS service. Can be used as follows:
import {Subscription} from 'rxjs/Subscription'; export class ExampleComponent { static $inject = ['XosModelStore']; public resource; private modelSubscription : Subscription; constructor( private XosModelStore: any, ){} $onInit() { this.modelSubscription = this.XosModelStore.query('SampleModel', '/sampleservice/SampleModels').subscribe( res => { this.resource = res; } ); } } export const exampleComponent : angular.IComponentOptions = { template: require('./example.component.html'), controllerAs: 'vm', controller: ExampleComponent }
Allows for the creation of custom user keyboard shortcuts. See the provided components/demo.ts
as an example.
Allows for the injection of components into the XOS GUI by specifying a target element ID. Useful IDs include:
#dashboard-component-container
: the dashboard as seen on the XOS home#side-panel-container
: a side panel that can slide out from the right. However, there is also a XosSidePanel
service that can make development easier.Makes the injection of a custom side panel somewhat easier (no need to specify a target)
Allows for the creation of confirmation modal dialogs to confirm whether or not to execute a selected action.