Edit characteristic
This commit is contained in:
parent
24c870353f
commit
f25fae0a83
6 changed files with 65 additions and 6 deletions
|
@ -12,4 +12,5 @@ export default DS.Model.extend({
|
|||
updatedBy : DS.attr('number'),
|
||||
deletedBy : DS.attr('number'),
|
||||
sortOrder : DS.attr('number'),
|
||||
canEdit : DS.attr('boolean'),
|
||||
});
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import Ember from 'ember';
|
||||
|
||||
export default Ember.Controller.extend({
|
||||
sortParams: ['characteristicTypeName', 'sortOrder'],
|
||||
sortParams: ['characteristicTypeName', 'sortOrder', 'characteristicName'],
|
||||
sortedCharacteristics: Ember.computed.sort('model', 'sortParams'),
|
||||
});
|
||||
|
|
28
app/pods/protected/characteristics/editable-row/component.js
Normal file
28
app/pods/protected/characteristics/editable-row/component.js
Normal file
|
@ -0,0 +1,28 @@
|
|||
import Ember from 'ember';
|
||||
|
||||
export default Ember.Component.extend({
|
||||
tagName: 'tr',
|
||||
|
||||
actions: {
|
||||
edit: function() {
|
||||
this.set('characteristicName', this.get('row.characteristicName'));
|
||||
this.set('characteristicTypeName', this.get('row.characteristicTypeName'));
|
||||
this.set('sortOrder', this.get('row.sortOrder'));
|
||||
this.toggleProperty('isEditing');
|
||||
},
|
||||
|
||||
save: function() {
|
||||
if (this.get('characteristicName') !== this.get('row.characteristicName') ||
|
||||
this.get('characteristicTypeName') !== this.get('row.characteristicTypeName') ||
|
||||
this.get('sortOrder') !== this.get('row.sortOrder')) {
|
||||
this.set('row.characteristicName', this.get('characteristicName'));
|
||||
this.set('row.characteristicTypeName', this.get('characteristicTypeName'));
|
||||
this.set('row.sortOrder', this.get('sortOrder'));
|
||||
this.get('row').save();
|
||||
}
|
||||
this.toggleProperty('isEditing');
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
});
|
15
app/pods/protected/characteristics/editable-row/template.hbs
Normal file
15
app/pods/protected/characteristics/editable-row/template.hbs
Normal file
|
@ -0,0 +1,15 @@
|
|||
{{#if isEditing}}
|
||||
<td>{{input value=characteristicName}}</td>
|
||||
<td>{{input value=characteristicTypeName}}</td>
|
||||
<td>{{input value=sortOrder}}</td>
|
||||
<td {{action 'save'}}>Save</td>
|
||||
{{else}}
|
||||
<td>{{row.characteristicName}}</td>
|
||||
<td>{{row.characteristicTypeName}}</td>
|
||||
<td>{{row.sortOrder}}</td>
|
||||
{{#if row.canEdit}}
|
||||
<td {{action 'edit'}}>Edit</td>
|
||||
{{else}}
|
||||
<td></td>
|
||||
{{/if}}
|
||||
{{/if}}
|
|
@ -7,15 +7,12 @@
|
|||
<th>Name</th>
|
||||
<th>Type</th>
|
||||
<th>Sort Order</th>
|
||||
<th></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{{#each sortedCharacteristics as |row|}}
|
||||
<tr>
|
||||
<td>{{row.characteristicName}}</td>
|
||||
<td>{{row.characteristicTypeName}}</td>
|
||||
<td>{{row.sortOrder}}</td>
|
||||
</tr>
|
||||
{{protected/characteristics/editable-row row=row}}
|
||||
{{/each}}
|
||||
</tbody>
|
||||
</table>
|
||||
|
|
18
app/serializers/characteristic.js
Normal file
18
app/serializers/characteristic.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
import DS from 'ember-data';
|
||||
import Ember from 'ember';
|
||||
|
||||
export default DS.RESTSerializer.extend({
|
||||
isNewSerializerAPI: true,
|
||||
|
||||
serializeHasMany: function(snapshot, json, relationship) {
|
||||
var key = relationship.key;
|
||||
var hasMany = snapshot.hasMany(key);
|
||||
key = this.keyForRelationship ? this.keyForRelationship(key, "hasMany", "serialize") : key;
|
||||
|
||||
json[key] = [];
|
||||
hasMany.forEach((item) => {
|
||||
json[key].push(+item.get('id'));
|
||||
});
|
||||
}
|
||||
|
||||
});
|
Reference in a new issue