Skip to content
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

Merged
merged 1 commit into from
Mar 22, 2014

Conversation

mixonic
Copy link
Member

@mixonic mixonic commented Mar 21, 2014

Improve the rather slim App.register and App.inject documentation. Clear up the initializers section of the application docs.

/cc @ebryn


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`
Copy link
Member

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.

https://github.com/emberjs/data/blob/master/packages/ember-data/lib/system/store.js#L1331-L1337

(this is likely not hard to address though)

Copy link
Member Author

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:

} 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;
}

Copy link
Member

Choose a reason for hiding this comment

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

Copy link
Member

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.

Copy link
Member Author

Choose a reason for hiding this comment

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

lol

Copy link
Member

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.

stefanpenner added a commit that referenced this pull request Mar 22, 2014
[DOC] Improve register/inject documentation
@stefanpenner stefanpenner merged commit 55761e7 into emberjs:master Mar 22, 2014
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants