feat(bootstraping): application bootstrapping implementation.

Entry-point to bootstrapping is a rootComponent. The bootstrapping
method, uses the component's selector to find the insertion element in
the DOM, and attaches the component in its ShadowRoot.
This commit is contained in:
Rado Kirov
2014-11-07 14:30:04 -08:00
parent f0d6464856
commit 1221857d17
8 changed files with 271 additions and 7 deletions

View File

@ -0,0 +1,97 @@
import {describe, ddescribe, it, iit, xit, xdescribe, expect, beforeEach} from 'test_lib/test_lib';
import {bootstrap, appDocumentToken, appElementToken, documentDependentBindings}
from 'core/application';
import {Component} from 'core/annotations/component';
import {DOM} from 'facade/dom';
import {ListWrapper} from 'facade/collection';
import {PromiseWrapper} from 'facade/async';
import {bind} from 'di/di';
import {TemplateConfig} from 'core/annotations/template_config';
@Component({
selector: 'hello-app',
template: new TemplateConfig({
inline: '{{greeting}} world!',
directives: []
})
})
class HelloRootCmp {
constructor() {
this.greeting = 'hello';
}
}
@Component({
selector: 'hello-app-2',
template: new TemplateConfig({
inline: '{{greeting}} world, again!',
directives: []
})
})
class HelloRootCmp2 {
constructor() {
this.greeting = 'hello';
}
}
export function main() {
var fakeDoc, el, el2;
beforeEach(() => {
fakeDoc = DOM.createHtmlDocument();
el = DOM.createElement('hello-app', fakeDoc);
el2 = DOM.createElement('hello-app-2', fakeDoc);
DOM.appendChild(fakeDoc.body, el);
DOM.appendChild(fakeDoc.body, el2);
});
function testBindings(appComponentType) {
return ListWrapper.concat([bind(appDocumentToken).toValue(fakeDoc),
], documentDependentBindings(appComponentType));
}
describe('bootstrap factory method', () => {
it('should throw if no element is found', (done) => {
var injectorPromise = bootstrap(HelloRootCmp);
PromiseWrapper.then(injectorPromise, null, (reason) => {
expect(reason.message).toContain(
'The app selector "hello-app" did not match any elements');
done();
});
});
it('should create an injector promise', () => {
var injectorPromise = bootstrap(HelloRootCmp, testBindings(HelloRootCmp));
expect(injectorPromise).not.toBe(null);
});
it('should resolve an injector promise and contain bindings', (done) => {
var injectorPromise = bootstrap(HelloRootCmp, testBindings(HelloRootCmp));
injectorPromise.then((injector) => {
expect(injector.get(appElementToken)).toBe(el);
done();
});
});
it('should display hello world', (done) => {
var injectorPromise = bootstrap(HelloRootCmp, testBindings(HelloRootCmp));
injectorPromise.then((injector) => {
expect(injector.get(appElementToken)
.shadowRoot.childNodes[0].nodeValue).toEqual('hello world!');
done();
});
});
it('should support multiple calls to bootstrap', (done) => {
var injectorPromise1 = bootstrap(HelloRootCmp, testBindings(HelloRootCmp));
var injectorPromise2 = bootstrap(HelloRootCmp2, testBindings(HelloRootCmp2));
PromiseWrapper.all([injectorPromise1, injectorPromise2]).then((injectors) => {
expect(injectors[0].get(appElementToken)
.shadowRoot.childNodes[0].nodeValue).toEqual('hello world!');
expect(injectors[1].get(appElementToken)
.shadowRoot.childNodes[0].nodeValue).toEqual('hello world, again!');
done();
});
});
});
}

View File

@ -17,13 +17,15 @@ import {View} from 'core/compiler/view';
export function main() {
describe('view', function() {
var parser, closureMap;
var parser, closureMap, someComponentDirective;
beforeEach( () => {
beforeEach(() => {
closureMap = new ClosureMap();
parser = new Parser(new Lexer(), closureMap);
someComponentDirective = new Reflector().annotatedType(SomeComponent);
});
describe('ProtoView.instantiate', function() {
function createCollectDomNodesTestCases(useTemplateElement:boolean) {
@ -92,6 +94,22 @@ export function main() {
});
}
describe('inplace instantiation', () => {
it('should be supported.', () => {
var template = createElement('<div></div>')
var view = new ProtoView(template, new ProtoWatchGroup())
.instantiate(null, null, null, true);
expect(view.nodes[0]).toBe(template);
});
it('should be off by default.', () => {
var template = createElement('<div></div>')
var view = new ProtoView(template, new ProtoWatchGroup())
.instantiate(null, null, null);
expect(view.nodes[0]).not.toBe(template);
});
});
describe('collect dom nodes with a regular element as root', () => {
createCollectDomNodesTestCases(false);
});
@ -158,7 +176,7 @@ export function main() {
function createComponentWithSubPV(subProtoView) {
var pv = new ProtoView(createElement('<cmp class="ng-binding"></cmp>'), new ProtoWatchGroup());
var binder = pv.bindElement(new ProtoElementInjector(null, 0, [SomeComponent], true));
binder.componentDirective = new Reflector().annotatedType(SomeComponent);
binder.componentDirective = someComponentDirective;
binder.nestedProtoView = subProtoView;
return pv;
}
@ -253,7 +271,26 @@ export function main() {
expect(view.elementInjectors[0].get(SomeDirective).prop).toEqual('buz');
});
});
});
describe('protoView createRootProtoView', () => {
var el, pv;
beforeEach(() => {
el = DOM.createElement('div');
pv = new ProtoView(createElement('<div>hi</div>'), new ProtoWatchGroup());
});
it('should create the root component when instantiated', () => {
var rootProtoView = ProtoView.createRootProtoView(pv, el, someComponentDirective);
var view = rootProtoView.instantiate(null, new Injector([]), null, true);
expect(view.rootElementInjectors[0].get(SomeComponent)).not.toBe(null);
});
it('should inject the protoView into the shadowDom', () => {
var rootProtoView = ProtoView.createRootProtoView(pv, el, someComponentDirective);
var view = rootProtoView.instantiate(null, new Injector([]), null, true);
expect(el.shadowRoot.childNodes[0].childNodes[0].nodeValue).toEqual('hi');
});
});
});
}