-
-
Save lifeart/8f24b407b7d3ee4983689f6062f58483 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); | |
const getCpO = function(data) { | |
return Ember.Object.extend({ | |
childKey: Ember.computed('children.[]', function(){ | |
return (this.get('children')||A()).map(e=>e.toString()).join('-'); | |
}) | |
}).create(data); | |
} | |
export default Ember.Controller.extend({ | |
appName: 'Ember Twiddle', | |
parents: A([ | |
getCpO({ children: [ O({name: "Alpha", id: 1}), O({name: "Bravo"}) ] }), | |
getCpO({ children: [ O({name: "Charlie"}) ] }), | |
]), | |
// First, we need an array of arrays | |
childArrays: Ember.computed("[email protected]", function(){ | |
console.log('childKey', this.get('parents').mapBy('childKey')); | |
return this.get('parents').mapBy('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