ビューでは、sortedItems
次のように定義された計算プロパティを使用します。
JS
App.Item = DS.Model.extend({
name: DS.attr('string'),
index: DS.attr('number'),
items: DS.hasMany('App.Item', {key: 'itemIds'} ),
item: DS.belongsTo('App.Item'),
product: DS.belongsTo('App.Product'),
sortedItems: function () {
var items = this.get('items').toArray();
return items.sort(function (lhs, rhs) {
return lhs.get('index') - rhs.get('index');
});
}.property('items.@each.isLoaded')
});
ここで完全に機能するソリューションを参照してください: http://jsfiddle.net/MikeAski/K286Q/3/
編集
あなたの要求によると、ソートされたIDを親内に保持する別の解決策があります(更新とインデックスの管理を最小限に抑えるため):http://jsfiddle.net/MikeAski/K286Q/12/
JS
App.Item = DS.Model.extend({
name: DS.attr('string'),
items: DS.hasMany('App.Item', {key: 'itemIds'} ),
sortedIds: DS.attr('string', { key: 'sortedIds' }),
item: DS.belongsTo('App.Item'),
product: DS.belongsTo('App.Product'),
sortedChildren: function () {
if (!this.get('isLoaded')) {
return [];
}
var sortedIds = this.get('sortedIds').split(','),
items = this.get('items').toArray();
return sortedIds.map(function (id) {
if (id === '') {
return null;
}
return items.find(function (item) {
return item.get('id') == id;
});
}).filter(function(item) {
return !!item;
});
}.property('isLoaded', 'sortedIds', 'items.@each.isLoaded')
});
もう少し複雑ですが...