Last active
October 25, 2017 01:17
-
-
Save CharlesKozel/dbafc2d4498767a6655a328216d1d6b4 to your computer and use it in GitHub Desktop.
Nested Computed Properties Bug
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
import Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
init() { | |
this.set('firstSubObject', this.get('dummy.tiers.firstObject.subObject')); | |
console.log(this.get('dummy.tiers.firstObject.subObject')); | |
}, | |
dummy: Ember.Object.create({ | |
tiers: [ | |
Ember.Object.create({ | |
subObject: Ember.Object.create({ | |
value: 3 | |
}) | |
}), | |
Ember.Object.create({ | |
subObject: Ember.Object.create({ | |
value: 5 | |
}) | |
}), | |
Ember.Object.create({ | |
subObject: Ember.Object.create({ | |
value: 7 | |
}) | |
}) | |
] | |
}), | |
tierSubObjects: Ember.computed('[email protected]', function () { | |
return this.get('dummy.tiers').map(tier => { | |
return tier.get('subObject'); | |
}); | |
}), | |
subObjectValuesList: Ember.computed('[email protected]', '[email protected]', function () { | |
this.get('tierSubObjects');//get dependany computed property to make sure it is accessed | |
return this.get('dummy.tiers').map(tier => { | |
return tier.get('subObject.value'); | |
}); | |
}), | |
listToDisplay: Ember.computed('subObjectValuesList', function() { | |
return this.get('subObjectValuesList'); | |
}), | |
actions: { | |
incrementFirstValue() { | |
let subObject = this.get('firstSubObject'); | |
subObject.set('value', subObject.get('value') + 1); | |
}, | |
addNewTier() { | |
this.get('dummy.tiers').addObject( | |
Ember.Object.create({ | |
subObject: Ember.Object.create({ | |
value: 9 | |
}) | |
}), | |
); | |
} | |
} | |
}); |
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
{ | |
"version": "0.12.1", | |
"EmberENV": { | |
"FEATURES": {} | |
}, | |
"options": { | |
"use_pods": false, | |
"enable-testing": false | |
}, | |
"dependencies": { | |
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.js", | |
"ember": "2.12.0", | |
"ember-template-compiler": "2.12.0", | |
"ember-testing": "2.12.0" | |
}, | |
"addons": { | |
"ember-data": "2.12.1" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment