This repository was archived by the owner on Apr 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27.4k
PROOF OF CONCEPT #11775 (show module name for conflicting directives), DO NOT MERGE #11793
Closed
kentcdodds
wants to merge
1
commit into
angular:master
from
kentcdodds:feature/11775-multi-directive-message
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -819,7 +819,7 @@ function $CompileProvider($provide, $$sanitizeUriProvider) { | |
* {@link guide/directive} for more info. | ||
* @returns {ng.$compileProvider} Self for chaining. | ||
*/ | ||
this.directive = function registerDirective(name, directiveFactory) { | ||
this.directive = function registerDirective(name, directiveFactory, ngModule) { | ||
assertNotHasOwnProperty(name, 'directive'); | ||
if (isString(name)) { | ||
assertValidDirectiveName(name); | ||
|
@@ -837,6 +837,7 @@ function $CompileProvider($provide, $$sanitizeUriProvider) { | |
} else if (!directive.compile && directive.link) { | ||
directive.compile = valueFn(directive.link); | ||
} | ||
directive.ngModule = ngModule; | ||
directive.priority = directive.priority || 0; | ||
directive.index = index; | ||
directive.name = directive.name || name; | ||
|
@@ -2299,7 +2300,15 @@ function $CompileProvider($provide, $$sanitizeUriProvider) { | |
function assertNoDuplicate(what, previousDirective, directive, element) { | ||
if (previousDirective) { | ||
throw $compileMinErr('multidir', 'Multiple directives [{0}, {1}] asking for {2} on: {3}', | ||
previousDirective.name, directive.name, what, startingTag(element)); | ||
getDirectiveLabel(previousDirective), getDirectiveLabel(directive), what, startingTag(element)); | ||
} | ||
|
||
function getDirectiveLabel(dir) { | ||
if (dir.ngModule) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Forced to do this check because sometimes the directive function can be called without passing an |
||
return dir.name + ' (module: ' + dir.ngModule.name + ')'; | ||
} else { | ||
return dir.name; | ||
} | ||
} | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2113,6 +2113,7 @@ describe('$compile', function() { | |
var iscope; | ||
|
||
beforeEach(module(function() { | ||
var fakeModule = {name: 'fakeModule'}; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Faking out a module to pass to the directive function so the test will show the result of passing a module. |
||
forEach(['', 'a', 'b'], function(name) { | ||
directive('scope' + uppercase(name), function(log) { | ||
return { | ||
|
@@ -2125,7 +2126,7 @@ describe('$compile', function() { | |
}}; | ||
} | ||
}; | ||
}); | ||
}, fakeModule); | ||
directive('iscope' + uppercase(name), function(log) { | ||
return { | ||
scope: {}, | ||
|
@@ -2138,7 +2139,7 @@ describe('$compile', function() { | |
}; | ||
} | ||
}; | ||
}); | ||
}, fakeModule); | ||
directive('tscope' + uppercase(name), function(log) { | ||
return { | ||
scope: true, | ||
|
@@ -2320,7 +2321,7 @@ describe('$compile', function() { | |
function($rootScope, $compile) { | ||
expect(function() { | ||
$compile('<div class="iscope-a; scope-b"></div>'); | ||
}).toThrowMinErr('$compile', 'multidir', 'Multiple directives [iscopeA, scopeB] asking for new/isolated scope on: ' + | ||
}).toThrowMinErr('$compile', 'multidir', 'Multiple directives [iscopeA (module: fakeModule), scopeB (module: fakeModule)] asking for new/isolated scope on: ' + | ||
'<div class="iscope-a; scope-b">'); | ||
}) | ||
); | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not so sure I like adding another arg... But can't think of another way to do it.