2017-12-01 17:23:03 -05:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
*/
|
|
|
|
|
2018-02-06 19:11:20 -05:00
|
|
|
import {defineDirective} from '../../src/render3/index';
|
2018-03-13 14:48:09 -04:00
|
|
|
import {bind, elementEnd, elementProperty, elementStart, load} from '../../src/render3/instructions';
|
2017-12-01 17:23:03 -05:00
|
|
|
|
|
|
|
import {renderToHtml} from './render_util';
|
|
|
|
|
|
|
|
describe('directive', () => {
|
|
|
|
|
|
|
|
describe('host', () => {
|
|
|
|
|
|
|
|
it('should support host bindings in directives', () => {
|
|
|
|
let directiveInstance: Directive|undefined;
|
|
|
|
|
|
|
|
class Directive {
|
|
|
|
klass = 'foo';
|
2018-01-09 00:57:50 -05:00
|
|
|
static ngDirectiveDef = defineDirective({
|
2018-01-22 18:27:21 -05:00
|
|
|
type: Directive,
|
2018-01-09 00:57:50 -05:00
|
|
|
factory: () => directiveInstance = new Directive,
|
2018-01-22 22:52:06 -05:00
|
|
|
hostBindings: (directiveIndex: number, elementIndex: number) => {
|
2018-02-16 19:58:07 -05:00
|
|
|
elementProperty(elementIndex, 'className', bind(load<Directive>(directiveIndex).klass));
|
2018-01-09 00:57:50 -05:00
|
|
|
}
|
|
|
|
});
|
2017-12-01 17:23:03 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
function Template(ctx: any, cm: boolean) {
|
|
|
|
if (cm) {
|
2018-02-06 19:11:20 -05:00
|
|
|
elementStart(0, 'span', null, [Directive]);
|
|
|
|
elementEnd();
|
2017-12-01 17:23:03 -05:00
|
|
|
}
|
2018-01-22 22:52:06 -05:00
|
|
|
Directive.ngDirectiveDef.h(1, 0);
|
2017-12-01 17:23:03 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
expect(renderToHtml(Template, {})).toEqual('<span class="foo"></span>');
|
|
|
|
directiveInstance !.klass = 'bar';
|
|
|
|
expect(renderToHtml(Template, {})).toEqual('<span class="bar"></span>');
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
});
|