-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12562 from mixonic/getOwnerDoc
Document getOwner and setOwner
- Loading branch information
Showing
1 changed file
with
55 additions
and
0 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,66 @@ | ||
/** | ||
@module ember | ||
@submodule ember-runtime | ||
*/ | ||
|
||
import { symbol } from 'ember-metal/utils'; | ||
|
||
export const OWNER = symbol('OWNER'); | ||
|
||
|
||
/** | ||
Framework objects in an Ember application (components, services, routes, etc.) | ||
are created via a factory and dependency injection system. Each of these | ||
objects is the responsibility of an "owner", which handled its | ||
instantiation and manages its lifetime. | ||
`getOwner` fetches the owner object responsible for an instance. This can | ||
be used to lookup or resolve other class instances, or register new factories | ||
into the owner. | ||
For example, this component dynamically looks up a service based on the | ||
`audioType` passed as an attribute: | ||
``` | ||
// app/components/play-audio.js | ||
import Ember from 'ember'; | ||
// Usage: | ||
// | ||
// {{play-audio audioType=model.audioType audioFile=model.file}} | ||
// | ||
export default Ember.Component.extend({ | ||
audioService: Ember.computed('audioType', function() { | ||
let owner = Ember.getOwner(this); | ||
return owner.lookup(`service:${this.get('audioType')}`); | ||
}), | ||
click() { | ||
let player = this.get('audioService'); | ||
player.play(this.get('audioFile')); | ||
} | ||
}); | ||
``` | ||
@method getOwner | ||
@param {Object} object A object with an owner. | ||
@return {Object} an owner object. | ||
@for Ember | ||
@public | ||
*/ | ||
export function getOwner(object) { | ||
return object[OWNER]; | ||
} | ||
|
||
/** | ||
`setOwner` forces a new owner on a given object instance. This is primarily | ||
useful in some testing cases. | ||
@method setOwner | ||
@param {Object} object A object with an owner. | ||
@return {Object} an owner object. | ||
@for Ember | ||
@public | ||
*/ | ||
export function setOwner(object, owner) { | ||
object[OWNER] = owner; | ||
} |