Skip to content

Commit 3011cd8

Browse files
pkozlowski-opensourcemhevery
authored andcommittedMay 18, 2015
feat(compiler): special-case class attribute in hostAttributes
Closes #1774 Closes #1841
1 parent cfba38b commit 3011cd8

File tree

2 files changed

+22
-4
lines changed

2 files changed

+22
-4
lines changed
 

‎modules/angular2/src/render/dom/compiler/directive_parser.js

+11-3
Original file line numberDiff line numberDiff line change
@@ -100,9 +100,7 @@ export class DirectiveParser extends CompileStep {
100100
}
101101
if (isPresent(directive.hostAttributes)) {
102102
MapWrapper.forEach(directive.hostAttributes, (hostAttrValue, hostAttrName) => {
103-
if (!DOM.hasAttribute(current.element, hostAttrName)) {
104-
DOM.setAttribute(current.element, hostAttrName, hostAttrValue);
105-
}
103+
this._addHostAttribute(hostAttrName, hostAttrValue, current);
106104
});
107105
}
108106
if (isPresent(directive.readAttributes)) {
@@ -162,6 +160,16 @@ export class DirectiveParser extends CompileStep {
162160
directiveBinderBuilder.bindHostProperty(hostPropertyName, ast);
163161
}
164162

163+
_addHostAttribute(attrName, attrValue, compileElement) {
164+
if (StringWrapper.equals(attrName, 'class')) {
165+
ListWrapper.forEach(attrValue.split(' '), (className) => {
166+
DOM.addClass(compileElement.element, className);
167+
});
168+
} else if (!DOM.hasAttribute(compileElement.element, attrName)) {
169+
DOM.setAttribute(compileElement.element, attrName, attrValue);
170+
}
171+
}
172+
165173
_splitBindConfig(bindConfig:string) {
166174
return ListWrapper.map(bindConfig.split('|'), (s) => s.trim());
167175
}

‎modules/angular2/test/render/dom/compiler/directive_parser_spec.js

+11-1
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,15 @@ export function main() {
144144
expect(DOM.getAttribute(results[0].element, 'attr_name')).toEqual('attr_val');
145145
});
146146

147+
it('should add CSS classes if "class" specified in host element attributes', () => {
148+
var element = el('<input class="foo baz" some-decor-with-host-attrs>');
149+
var results = process(element);
150+
151+
expect(DOM.hasClass(results[0].element, 'foo')).toBeTruthy();
152+
expect(DOM.hasClass(results[0].element, 'bar')).toBeTruthy();
153+
expect(DOM.hasClass(results[0].element, 'baz')).toBeTruthy();
154+
});
155+
147156
it('should read attribute values', () => {
148157
var element = el('<input some-decor-props some-attr="someValue">');
149158
var results = process(element);
@@ -283,7 +292,8 @@ var someDirectiveWithHostProperties = new DirectiveMetadata({
283292
var someDirectiveWithHostAttributes = new DirectiveMetadata({
284293
selector: '[some-decor-with-host-attrs]',
285294
hostAttributes: MapWrapper.createFromStringMap({
286-
'attr_name': 'attr_val'
295+
'attr_name': 'attr_val',
296+
'class': 'foo bar'
287297
})
288298
});
289299

0 commit comments

Comments
 (0)