ember-buffered-proxy icon indicating copy to clipboard operation
ember-buffered-proxy copied to clipboard

Provide example of using bufferedProxy on records with relationships

Open lolmaus opened this issue 10 years ago • 6 comments

Hi! Thank you for you your awesome project.

I wonder whether i can use ember-buffered-proxy on Ember Data records.

My use case:

  1. A record is created clientside when a user visits the route. The record will eventually be persisted to the backend, but during this use case it does not.
  2. The user opens a modal dialog with an edit form, edits the record and presses OK in the form to close the dialog. From the user perspective, he has kinda saved his edits, and the record is now in state A.
  3. The user can open the form and edit the record again. The record is now is in state B. If he messes up, he should be able to discard his edits by pressing Cancel instead of OK. I cannot use .rollback() because it will revert the unsaved record to a tabula rasa state, while the user expects it to be reverted to state A.

My problem is that the record in question does not store much data itself: all its data comes from related child and grandchild records.

Does this mean that i have to apply discardBufferedChanges recursively? Is there a simpler way?

lolmaus avatar Jan 21 '15 10:01 lolmaus

I think the best way to model this would probably be to have a bufferedProxy per record, and apply or discard accordingly.

lukemelia avatar Apr 17 '15 15:04 lukemelia

I struggle to figure out how to do that. Can you please provide an example?

I think using bufferedProxy on records is a popular use case and a publicly available example will be very useful.

lolmaus avatar Apr 17 '15 16:04 lolmaus

@lolmaus See also discussion in #9. I don't have time at the moment to create an example, but I'll reopen this to track that.

lukemelia avatar Apr 17 '15 16:04 lukemelia

This would be super helpful to have documentation on the preferred way to buffer changes to hasMany relationships.

blimmer avatar Sep 21 '15 19:09 blimmer

I am struggling to rollback a model (post), whit has many (comments) , where comment belongs to (author). An example would be great.

BenjaminHorn avatar Jan 27 '16 00:01 BenjaminHorn

Having an example on how to use this on a model would be great. I'm also struggling with this issue.

remino avatar Jan 31 '16 06:01 remino