Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save veberle-CSD/86b2e578225309dc8c70a8b00fc8e79a to your computer and use it in GitHub Desktop.
Save veberle-CSD/86b2e578225309dc8c70a8b00fc8e79a to your computer and use it in GitHub Desktop.
Flatten CP
import Ember from 'ember';
const A = Ember.A;
const O = Ember.Object.create.bind(Ember.Object);
export default Ember.Controller.extend({
appName: 'Ember Twiddle',
parents: A([
O({ children: [ O({name: "Alpha"}), O({name: "Bravo"}) ] }),
O({ children: [ O({name: "Charlie"}) ] }),
]),
// First, we need an array of arrays
childArrays: Ember.computed.mapBy("parents.@each.children", "children"),
// Then we flatten it
children: Ember.computed("{childArrays.@each.[],childArrays.[]}", function () {
return this
.get("childArrays")
.reduce((a, b) => a.concat(b), A());
}),
actions: {
addChild () {
this
.get("parents.lastObject.children")
.pushObject(O({ name: Math.random().toString(36) }));
},
addParent () {
this.get("parents")
.pushObject(O({ children: [ O({name: "Delta"}), O({name: "Echo"}) ] }));
}
}
});
<h1>Welcome to {{appName}}</h1>
<br>
<br>
{{outlet}}
<br>
<br>
<h2>Parents:</h2>
{{#each parents as |parent i|}}
<p>
{{i}}:
{{#each parent.children as |child|}}
{{child.name}}
{{/each}}
</p>
{{/each}}
<h2>All children:</h2>
<p>
{{#each children as |child|}}
{{child.name}}
{{/each}}
</p>
<p>
<button {{action "addChild"}}>Add child</button>
</p>
<p>
<button {{action "addParent"}}>Add parent</button>
</p>
{
"version": "0.13.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.16.2",
"ember-template-compiler": "2.16.2",
"ember-testing": "2.16.2"
},
"addons": {
"ember-data": "2.16.3"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment