Skip to content

Instantly share code, notes, and snippets.

@e00dan
Created September 23, 2015 12:18
Show Gist options
  • Save e00dan/343e1735e034091f5bde to your computer and use it in GitHub Desktop.
Save e00dan/343e1735e034091f5bde to your computer and use it in GitHub Desktop.
New Twiddle
import Ember from 'ember';
export default Ember.Controller.extend({
appName:'Ember Twiddle'
});
import Ember from 'ember';
export default Ember.Route.extend({
mockData: Ember.on('init', function() {
this.store.push({
data: {
id: '1',
type: 'person',
attributes: {
firstName: 'Tom',
lastName: 'Dale'
},
relationships: {
children: {
data: [
{
id: '2',
type: 'person'
},
{
id: '3',
type: 'person'
},
{
id: '4',
type: 'person'
}
]
}
}
},
included: [
{
id: '2',
type: 'person',
attributes: {
firstName: 'Child 1'
}
},
{
id: '3',
type: 'person',
attributes: {
firstName: 'Child 2'
}
},
{
id: '4',
type: 'person',
attributes: {
firstName: 'Child 3'
}
}
]
});
}),
model() {
return this.store.peekRecord('person', 1);
}
});
<h1>People</h1>
<ol>
{{#with model as |person|}}
<li>Person: {{person.firstName}} {{person.lastName}}
<br/>
Children:
<ul>
{{#each person.children key='id' as |child|}}
<li>{{child.firstName}}</li>
{{/each}}
</ul>
</li>
{{/with}}
</ol>
<br>
<br>
import DS from 'ember-data';
export default DS.Model.extend({
firstName: DS.attr('string'),
lastName: DS.attr('string'),
children: DS.hasMany('person')
});
{
"version": "0.4.10",
"dependencies": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.js",
"ember": "https://cdnjs.cloudflare.com/ajax/libs/ember.js/1.13.9/ember.debug.js",
"ember-data": "https://cdnjs.cloudflare.com/ajax/libs/ember-data.js/1.13.11/ember-data.js",
"ember-template-compiler": "https://cdnjs.cloudflare.com/ajax/libs/ember.js/1.13.9/ember-template-compiler.js"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment