single-spa-angular1
v2.7.0
Published
the logic needed to register angular 1 apps with single-spa
Downloads
452
Maintainers
Readme
single-spa-angular1
Generic lifecycle hooks for angular 1 applications that are registered as child applications of single-spa.
Examples
In addition to this Readme, example usage of single-spa-angular1 can be found in the single-spa-examples project.
Quickstart
First, in the child application, run npm install --save single-spa-angular1
(or jspm install npm:single-spa-angular1
if your child application is managed by jspm). Then, in your child app's entry file, do the following:
import singleSpaAngular1 from 'single-spa-angular1';
import angular from 'angular';
const ng1Lifecycles = singleSpaAngular1({
angular: angular,
domElementGetter: () => document.getElementById('main-content'),
mainAngularModule: 'app',
uiRouter: true,
preserveGlobal: false,
template: '<my-component />',
});
export const bootstrap = [
ng1Lifecycles.bootstrap,
];
export const mount = [
ng1Lifecycles.mount,
];
export const unmount = [
ng1Lifecycles.unmount,
];
Options
All options are passed to single-spa-angular1 via the opts
parameter when calling singleSpaAngular1(opts)
. The following options are available:
angular
: (required) The main angular object, which is generally either exposed onto the window or is available viarequire('angular')
orimport angular from 'angular'
.domElementGetter
: (required) A function that takes in no arguments and returns a DOMElement. This dom element is where the angular application will be bootstrapped, mounted, and unmounted.mainAngularModule
: (required) A string that is the name of the angular module that will be bootstrapped by angular. See angular docs forangular.bootstrap()
.uiRouter
: (optional) If you are using angular-ui-router, set this option to eithertrue
or to a string value. The string value will be the value of the ui-view html attribute. For example,uiRouter: 'core'
will be<div ui-view="core" />
whereasuiRouter: true
turns into<div ui-view />
.preserveGlobal
: (optional) A boolean that defaults to false. Set if you want to keep angular on the global even after an app unmounts.elementId
: (optional) A string which will be used to identify the element appended to the DOM and bootstrapped by Angular.strictDi
: (optional - part of the bootstrap config object) A boolean that defaults to fase. Set if you want to enable StrictDi modetemplate
: (optional) An html string that will be inserted into the DOM when the app is mounted. The template goes inside of the element returned by domElementGetter. If not provided, no template will be inserted. When using angular-ui-router, you often do not need to use this since ui-router will be putting a template onto the dom for you.