-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[DOC] Improve register/inject documentation #4577
Conversation
|
||
Ember-Data instantiates its models in a unique manner, and consequently | ||
injections onto models (or all models) will not work as expected. Injections | ||
on models can be enabled by setting `Ember.MODEL_FACTORY_INJECTIONS` |
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.
I'm not sure if this is actually true, ember-data bypasses the normally factory stuff still.
(this is likely not hard to address though)
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.
Pretty sure it is still true- with the flag set this branch runs:
ember.js/packages_es6/container/lib/container.js
Lines 701 to 714 in a6cd763
} else { | |
var injections = injectionsFor(container, fullName); | |
var factoryInjections = factoryInjectionsFor(container, fullName); | |
factoryInjections._toString = container.makeToString(factory, fullName); | |
injectedFactory = factory.extend(injections); | |
injectedFactory.reopenClass(factoryInjections); | |
cache.set(fullName, injectedFactory); | |
return injectedFactory; | |
} |
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.
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.
i am wrong, modelFor
does the lookupFactory
This is pretty embarrassing because I wrote parts of these code paths.
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.
lol
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.
i think my maxmem is set to low, causing the LRU to evict important information.
[DOC] Improve register/inject documentation
Improve the rather slim
App.register
andApp.inject
documentation. Clear up the initializers section of the application docs./cc @ebryn