Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

fix($compile): fix ng-attr vs normal attribute ordering #7739

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 9 additions & 5 deletions src/ng/compile.js
Original file line number Diff line number Diff line change
Expand Up @@ -1027,17 +1027,19 @@ function $CompileProvider($provide, $$sanitizeUriProvider) {
directiveNormalize(nodeName_(node).toLowerCase()), 'E', maxPriority, ignoreDirective);

// iterate over the attributes
for (var attr, name, nName, ngAttrName, value, nAttrs = node.attributes,
for (var attr, name, nName, ngAttrName, value, isNgAttr, nAttrs = node.attributes,
j = 0, jj = nAttrs && nAttrs.length; j < jj; j++) {
var attrStartName = false;
var attrEndName = false;

attr = nAttrs[j];
if (!msie || msie >= 8 || attr.specified) {
name = attr.name;
value = trim(attr.value);

// support ngAttr attribute binding
ngAttrName = directiveNormalize(name);
if (NG_ATTR_BINDING.test(ngAttrName)) {
if (isNgAttr = NG_ATTR_BINDING.test(ngAttrName)) {
name = snake_case(ngAttrName.substr(6), '-');
}

Expand All @@ -1050,9 +1052,11 @@ function $CompileProvider($provide, $$sanitizeUriProvider) {

nName = directiveNormalize(name.toLowerCase());
attrsMap[nName] = name;
attrs[nName] = value = trim(attr.value);
if (getBooleanAttrName(node, nName)) {
attrs[nName] = true; // presence means true
if (isNgAttr || !attrs.hasOwnProperty(nName)) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't really like this approach, because the Attributes object will not necessarily reflect the true value of the attribute until digest

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

apparently I'm wrong about that, alright

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

the tests should definitely reflect this though

attrs[nName] = value;
if (getBooleanAttrName(node, nName)) {
attrs[nName] = true; // presence means true
}
}
addAttrInterpolateDirective(node, directives, value, nName);
addDirective(directives, nName, 'A', maxPriority, ignoreDirective, attrStartName,
Expand Down
20 changes: 20 additions & 0 deletions test/ng/compileSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -5117,6 +5117,26 @@ describe('$compile', function() {
expect(element.attr('test')).toBe('Misko');
}));

it('should override the attr on digest', function() {
var attrOnLink = '';
module(function($compileProvider) {
$compileProvider.directive('test', valueFn({
restrict: 'E',
link: function(s, e, attrs) {
attrOnLink += attrs.foo;
}
}));
});

inject(function($compile, $rootScope) {
$rootScope.value = 42;
element = $compile('<test ng-attr-foo="{{value}}" foo="Answer?"></test>')($rootScope);
expect(element.attr('foo')).toBe('Answer?');
expect(attrOnLink).toBe('42');
$rootScope.$digest();
expect(element.attr('foo')).toBe('42');
});
});

it('should work with different prefixes', inject(function($compile, $rootScope) {
$rootScope.name = "Misko";
Expand Down