Created
October 30, 2012 17:50
-
-
Save niklas/3981832 to your computer and use it in GitHub Desktop.
HowTo create a DS.Model from ember-data, handling server-side validation errors
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
# If we save a record using ember-data's RESTadapter, and it fails, Rails | |
# returns the validation errors of the model as JSON hash: | |
# | |
# {"errors":{"name":["may not be blank"]}} | |
# | |
# This patches the RESTadapter to add these errors to the invalid record. It | |
# can be removed when the following Pull Request was merged into ember-data: | |
# https://github.com/emberjs/data/pull/376 | |
DS.RESTAdapter.reopen | |
createRecord: (store, type, record) -> | |
root = this.rootForType(type) | |
data = {} | |
data[root] = record.toJSON(record, includeId: true) | |
@ajax @buildURL(root), "POST", | |
data: data, | |
context: this, | |
success: (json) -> | |
@didCreateRecord(store, type, record, json) | |
error: (xhr) -> | |
if xhr.status == 422 | |
data = Ember.$.parseJSON xhr.responseText | |
# we don't materialize the errors, so we cannot use them in a view :( | |
store.recordWasInvalid record, data.errors | |
# TODO naive, does not consider translating the fields | |
DS.Model.reopen | |
toJSONwithErrors: -> | |
jQuery.extend @toJSON(), errors: @get('errors') | |
# options: error, success (both functions) | |
observeSaveOnce: (options) -> | |
callback = -> | |
outcome = 'success' | |
if @get('isDirty') | |
return if @get('isValid') # not submitted yet | |
outcome = 'error' | |
(options[outcome] || Ember.K).call(this) | |
@removeObserver('isDirty', callback) | |
@removeObserver('isValid', callback) | |
@addObserver('isDirty', callback) | |
@addObserver('isValid', callback) | |
errors: null | |
errorMessages: (-> | |
messages = '' | |
if @get('errors')? | |
for field, errors of @get('errors') | |
if errors | |
for error in errors | |
messages += "#{field} #{error} " | |
messages | |
).property('isValid', 'errors', 'data') | |
hasErrors: (-> | |
@get('errorMessages').match /\w+/ | |
).property('errorMessages') |
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
App.Router = Ember.Router.extend | |
enableLogging: true | |
location: 'hash' | |
openModal: (opts...) -> | |
# The used View must mixin App.ModalMixin | |
@get('applicationController').connectOutlet 'modal', opts... | |
closeModal: -> | |
@get('applicationController').disconnectOutlet 'modal' | |
root: Ember.Route.extend | |
index: Ember.Route.extend | |
route: '/' | |
connectOutlets: -> # nuffin | |
openMilestones: Ember.Router.transitionTo('milestones') | |
newMilestone: Ember.Router.transitionTo 'milestones.new' | |
milestones: Ember.Route.extend | |
route: '/milestones' | |
connectOutlets: (router) -> | |
router.get('applicationController').connectOutlet 'milestones', App.Milestone.find() | |
new: Ember.Route.extend | |
route: '/new' | |
connectOutlets: (router) -> | |
transaction = App.store.transaction() | |
milestone = transaction.createRecord App.Milestone | |
router.set 'currentTransaction', transaction | |
router.openModal 'newMilestone', milestone | |
save: (router) -> | |
if milestone = router.get('newMilestoneController.content') | |
transaction = router.get('currentTransaction') | |
milestone.observeSaveOnce | |
success: -> router.transitionTo('milestones') | |
error: -> | |
newTransaction = App.store.transaction() | |
newMilestone = newTransaction.createRecord App.Milestone, milestone.toJSON() | |
newMilestone.set 'errors', milestone.get('errors') # set by custom hook | |
router.set 'currentTransaction', newTransaction | |
router.set 'newMilestoneController.content', newMilestone | |
transaction.rollback() | |
transaction.commit() | |
cancel: Ember.Route.transitionTo('milestones') | |
exit: (router) -> router.closeModal() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment