Has anybody come up with an answer for polymorphic associations and ember-data?
We would need some way of being able to query the type at the other end of the relationship from what I can tell.
Anybody any thoughts on this?
|
Has anybody come up with an answer for polymorphic associations and ember-data? We would need some way of being able to query the type at the other end of the relationship from what I can tell. Anybody any thoughts on this? |
|||||
|
|
So I have something. It's not finished, or entirely clean, but it works. Basically, I use a mixin to bypass the Ember associations entirely. I'm sure that this could be rolled into the adapter or the store, but for now this works. Polymorphic models come through the the JSON with an itemId and itemType:
I add a mixin to the models that are associated with it :
The mixin implements three methods, one that updates the changeCount, one that returns the model's type and the polymorphicFilter method that filters a model by itemType and id:
The controller layer is protected from all this jankyness, except for having to call updatePolymorphicRelationship to make sure the bindings fire:
That's what I have so far. I'm trying to keep things in the model layer as it's just one step removed from the adapter layer. If it looks like Ember Data is not going to look at polymorphics at all in future, then it would make sense to pull this all up to a higher level, but for now, this works and leaves my controllers (relatively) clean. |
|||
|
|
|
Polymorphic associations are now supported in ember data https://github.com/emberjs/data/commit/e4f7c3707217c6ccc0453deee9ecb34bd65c28b9 |
|||
|
|
|
With the latest ember-data build you can now use polymorphic associations: You need to configure your Models to make it polymorphic:
You also need to configure
The result expected from your server should be like this:
More information in this github thread |
|||
|
|