Skip to content

Instantly share code, notes, and snippets.

@allthesignals
Last active September 18, 2018 18:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save allthesignals/7428e06f9c24986d1559f620931b694c to your computer and use it in GitHub Desktop.
Save allthesignals/7428e06f9c24986d1559f620931b694c to your computer and use it in GitHub Desktop.
Computed Keyed on Nested Pojo Array
import Ember from 'ember';
import { computed } from '@ember/object';
export default Ember.Controller.extend({
init() {
this._super(...arguments);
this.pojoProp = {
features: [],
};
},
appName: 'Ember Twiddle',
computedFromNested: computed('pojoProp.features.[]', function() {
console.log('recomputes');
return this.get('pojoProp.features.length');
}),
actions: {
pushToNestedProp() {
this.get('pojoProp.features').push('grape');
}
},
});
<h1>Welcome to {{appName}}</h1>
<br>
<br>
Why doesn't "0" this recompute? ->
{{computedFromNested}}
<button onclick={{action 'pushToNestedProp'}}>
Add
</button>
{{outlet}}
<br>
<br>
{
"version": "0.15.0",
"EmberENV": {
"FEATURES": {}
},
"options": {
"use_pods": false,
"enable-testing": false
},
"dependencies": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.js",
"ember": "3.2.2",
"ember-template-compiler": "3.2.2",
"ember-testing": "3.2.2"
},
"addons": {
"ember-data": "3.2.0"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment