Created
November 21, 2016 01:32
-
-
Save bfitch/3bb755fcdf978eadfaa498acb5e777ca to your computer and use it in GitHub Desktop.
Rollback Changeset hasMany
This file contains 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'; | |
import Changeset from 'ember-changeset'; | |
export default Ember.Controller.extend({ | |
init() { | |
this._super(...arguments); | |
this.get('store').createRecord('foo', { | |
users: [ | |
this.get('store').createRecord('user', {name: 'bob'}), | |
this.get('store').createRecord('user', {name: 'bill'}) | |
] | |
}); | |
const foo = this.get('store').peekAll('foo').get('firstObject'); | |
const changeset = new Changeset(foo); | |
this.set('foo', changeset); | |
}, | |
appName: 'Ember Twiddle', | |
fooChanges: Ember.computed('foo.changes', function() { | |
return JSON.stringify(this.get('foo.changes'),null,2); | |
}), | |
actions: { | |
titleChanged(event) { | |
if (event.code === 'Enter') { | |
this.set('foo.title', event.target.value); | |
event.target.value = ''; | |
} | |
}, | |
changeUsers() { | |
this.get('foo.users').setObjects([ | |
this.get('store').createRecord('user', {name: 'janet'}), | |
this.get('store').createRecord('user', {name: 'rhonda'}) | |
]); | |
}, | |
rollbackUsers() { | |
console.log(this.get('foo.changes')); | |
this.get('foo').rollback(); | |
} | |
} | |
}); |
This file contains 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 Model from "ember-data/model"; | |
import attr from "ember-data/attr"; | |
import { belongsTo, hasMany } from "ember-data/relationships"; | |
export default Model.extend({ | |
title: attr('string'), | |
users: DS.hasMany('user', { async: true }) | |
}); |
This file contains 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 Model from "ember-data/model"; | |
import attr from "ember-data/attr"; | |
import { belongsTo, hasMany } from "ember-data/relationships"; | |
export default Model.extend({ | |
name: attr('string') | |
}); |
This file contains 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.10.6", | |
"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.9.0", | |
"ember-data": "2.9.0", | |
"ember-template-compiler": "2.9.0", | |
"ember-testing": "2.9.0" | |
}, | |
"addons": { | |
"ember-changeset": "1.2.0" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment