Tagged Questions
0
votes
1answer
65 views
How to fill the related model on a many 2 many association?
Using ember-data, I have this two models:
App.Post = DS.Model.extend
title: DS.attr "string"
body: DS.attr "string"
categories: DS.hasMany "App.Category"
App.Category = DS.Model.extend
name: ...
1
vote
2answers
230 views
Ember.js current_user - accessing global variable from controller
I am baffled by a seemingly simple ember question. I am using active_model_serializers meta data serialization to serialize my rails current_user method from a rails controller, then extracting and ...
0
votes
1answer
61 views
Multilevel hasMany sideloading
I use ActiveModel::Serializers to get JSON out to an Ember.js application. I use sideloading to maximize the performance.
Can I tell ActiveModel::Serializers to sideload all PhoneNumbers in the ...
0
votes
0answers
77 views
loading embedded associations only works with underscores names
I have a model App.Leg that has many App.LegPlayers:
App.Leg = DS.Model.extend({
match: DS.belongsTo('App.Match'),
legPlayers: DS.hasMany('App.LegPlayer'),
winner: DS.belongsTo('App.Player')
...
5
votes
2answers
259 views
Side-loading objects with non-standard class names in EmberJS with Rails+active_model_serializers
I have a few models in Rails that look something like this:
class Issue < ActiveRecord::Base
belongs_to :reporter, class_name: 'User'
belongs_to :assignee, class_name: 'User'
has_many ...
1
vote
3answers
547 views
Rails + Ember.js + Devise freelance journalist app - data scoping
Apologies, I have been in ember.js-land for so long, I'm fumbling Rails + active_model_serializers JSON api basics.
So let's say I'm a freelance journalist and am building an app where a writer can ...
0
votes
3answers
562 views
has_many configuration for Ember-Data and Active Model Serializers with embedded IDs and sideloading
I know that Ember-Data is supposed to be compatible with Active Model Serializers by design, but they seem to be out of step on serializing has_many relationships with embedded IDs.
For example, the ...
3
votes
1answer
345 views
serialize date attributes
I am using active_model_serializers and ember.js. One of my models has a date attribute. In rails date attributes are serialized in the format of "YYYY-MM-DD".
The problem; when ember-data ...