Contains a mixin that allows definition of instance specific properties within extend (which adds to the prototype by default) through a custom instanceScope property
Useful for properties that wouldnt be passed to the component instances in the template directly but may still need to be instance specific.
This can be done currently by setting these properties up in the init method but this provides a more declarative approach.
export default Ember.Component.extend(instanceScope,{ title: "Mr", // Added to prototype instanceScope: { //Properties in this are made instance specific by the mixin firstName: "Deepan", lastName: "Aiyasamy", testArray: [1,2,3], testObj: { prop1: "hello", testObjArray: ["a","b","c"] } }, fullName: function(){ return this.get("firstName") + " " + this.get("lastName") }.property("firstName", "lastName") });
Quick demo at http://development.instance-scope-demo.divshot.io/
You will need the following things properly installed on your computer.
git clone <repository-url>
this repository- change into the new directory
npm install
bower install
ember server
- Visit your app at http://localhost:4200.
Make use of the many generators for code, try ember help generate
for more details
ember test
ember test --server
ember build
(development)ember build --environment production
(production)
Specify what it takes to deploy your app.