-
Notifications
You must be signed in to change notification settings - Fork 27.4k
$provide.value() to support functions #12365
Comments
To follow up with more information, this change will allow me the benefit of the following: http://jsfiddle.net/langdonx/tm5azpLa/ I often find myself using locally scoped (read private) arrays as data stores for a services/factories with exposed methods to access them. It's always troublesome to unit test them, because it requires I call the add and get methods to test the remove method. This seems like a pretty generic non-ugly approach for day-to-day use, and will allow me the benefit of injecting these private arrays for testing. I'll probably modify the fiddle tomorrow to demonstrate unit testing (and to prove that I've not missed something). |
I don't quite understand how what you describe will help in testing. A few thoughts:
BTW, the example you mentioned from the docs is supposed to do the following (and that is indeed what it does): $provide.value('halfOf', function halfOf(value) { return value / 2; });
...
.service('Something', function SomethingService(halfOf) {
var halfOfTwo = halfOf(2);
...
}); Basically, it provides the specified function whenever you inject |
As @gkalpak I'm not entirelly sure what is the real issue here... |
There's no real issue given that as @gkalpak mentioned I could use a generator service (http://jsfiddle.net/langdonx/tm5azpLa/7/). Having spent a lot of time with D3js where this is a common pattern, and I guess I just expected it to work in Angular out of the gate. My suggested change would break the I would argue though that halfOf's use case is more appropriate for My suggestion, for the most part, is syntax sugar (sorry) and cuts down on boiler plate code (compare the above fiddle against http://jsfiddle.net/langdonx/tm5azpLa/). It's a breaking change, but one I think might be worth it for a larger milestone release. It's something I could further flesh out with tests and a pull request were it considered worthy. Thanks! |
Hm, I don't think I "buy" the idea of a function registered via |
That's fair. To me, a standalone |
I love the idea of |
@sonicblis and what should happen if you return a function from a |
Agreed, but the word "value" is an indication of intent in this case I'd say. It almost implies the idea of a constant. I might get that constant by executing a function, but it's still a constant. |
Don't forget that the concept of a service in Angular is one. It shouldn't (and doesn't) matter if you use That said, I would definitely be opposed to changing the implementation of |
That's fair and I'd say it makes sense to value consistency over common sense. =] Totally kidding, I get your point and can get behind it. I like the idea of Thanks for taking the time to talk it through. You guys are part of what makes the angular world awesome. |
It looks like there is nothing actionable here. There are more than enough mechanisms to define providers, factories, services and values. Each worn in different ways and all of them should cover all possible variations needed. |
Previously, we would check if an attribute indicates a multi-element directive, now we only do this check if the attribute name actually matches the multi-element name pattern. Closes #12365
Previously, we would check if an attribute indicates a multi-element directive, now we only do this check if the attribute name actually matches the multi-element name pattern. Closes #12365
Previously, we would check if an attribute indicates a multi-element directive, now we only do this check if the attribute name actually matches the multi-element name pattern. Closes angular#12365
I came across this in the ngDoc comments:
But it doesn't seem to be implemented? I'm not entirely sure how it would accept the value argument anyway, but I wanted it specifically to provide my controllers with a non-singleton value to aid (what I think is tremendously) in unit testing by providing a new value to each component that requests the dependency.
Edit: I've made the necessary changes by keeping track of the provider type in
providerCache
and modifyingcreateInternalInjector::invoke
to get the result of the function if the provider type is'value'
. It seemed almost too easily and makes me think there's a reason this wasn't implemented already. Is there something I'm not aware of?The text was updated successfully, but these errors were encountered: