Last active
June 1, 2018 19:04
-
-
Save lolmaus/4bbc1808aa9e9e48c5aec3747b7f8684 to your computer and use it in GitHub Desktop.
Flatten CP
This file contains hidden or 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'; | |
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("[email protected]", "children"), | |
// Then we flatten it | |
children: Ember.computed("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) })); | |
} | |
} | |
}); | |
This file contains hidden or 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.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