Refactor characteristics/index
This commit is contained in:
parent
e6c6cac212
commit
9715aac1f5
5 changed files with 44 additions and 40 deletions
|
@ -0,0 +1,12 @@
|
||||||
|
import Ember from 'ember';
|
||||||
|
import SetupMetaData from '../../../../../mixins/setup-metadata';
|
||||||
|
|
||||||
|
const { Component } = Ember;
|
||||||
|
|
||||||
|
export default Component.extend(SetupMetaData, {
|
||||||
|
characteristics: null,
|
||||||
|
|
||||||
|
sortParams: ['characteristicTypeName', 'sortOrder', 'characteristicName'],
|
||||||
|
sortedCharacteristics: Ember.computed.sort('characteristics', 'sortParams'),
|
||||||
|
|
||||||
|
});
|
|
@ -0,0 +1,26 @@
|
||||||
|
<h3 id="total-characteristics">Total characteristics: {{characteristics.length}}</h3>
|
||||||
|
|
||||||
|
{{add-button label="Add Characteristic" link="protected.characteristics.new" canAdd=metaData.canAdd}}
|
||||||
|
|
||||||
|
<table class="flakes-table">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Name</th>
|
||||||
|
<th>Type</th>
|
||||||
|
<th>Sort Order</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
{{#each sortedCharacteristics as |row|}}
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
{{#link-to 'protected.characteristics.show' row}}
|
||||||
|
{{row.characteristicName}}
|
||||||
|
{{/link-to}}
|
||||||
|
</td>
|
||||||
|
<td>{{row.characteristicTypeName}}</td>
|
||||||
|
<td>{{row.sortOrder}}</td>
|
||||||
|
</tr>
|
||||||
|
{{/each}}
|
||||||
|
</tbody>
|
||||||
|
</table>
|
|
@ -1,6 +0,0 @@
|
||||||
import Ember from 'ember';
|
|
||||||
|
|
||||||
export default Ember.Controller.extend({
|
|
||||||
sortParams: ['characteristicTypeName', 'sortOrder', 'characteristicName'],
|
|
||||||
sortedCharacteristics: Ember.computed.sort('model', 'sortParams'),
|
|
||||||
});
|
|
|
@ -1,17 +1,10 @@
|
||||||
import Ember from 'ember';
|
import Ember from 'ember';
|
||||||
|
|
||||||
export default Ember.Route.extend({
|
const { Route } = Ember;
|
||||||
currentUser: Ember.inject.service('session-account'),
|
|
||||||
|
|
||||||
|
export default Route.extend({
|
||||||
model: function() {
|
model: function() {
|
||||||
return this.store.findAll('characteristic');
|
return this.store.findAll('characteristic');
|
||||||
},
|
},
|
||||||
|
|
||||||
setupController: function(controller, model) {
|
|
||||||
controller.set('model', model);
|
|
||||||
this.get('currentUser.account').then((user) => {
|
|
||||||
controller.set('metaData', user.get('metaData'));
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
|
@ -1,27 +1,6 @@
|
||||||
<h2>{{genus-name}} Characteristics</h2>
|
<h2>{{genus-name}} Characteristics</h2>
|
||||||
<h3 id="total-characteristics">Total characteristics: {{model.length}}</h3>
|
|
||||||
|
|
||||||
{{add-button label="Add Characteristic" link="protected.characteristics.new" canAdd=metaData.canAdd}}
|
{{
|
||||||
|
protected/characteristics/index/characteristics-table
|
||||||
<table class="flakes-table">
|
characteristics=model
|
||||||
<thead>
|
}}
|
||||||
<tr>
|
|
||||||
<th>Name</th>
|
|
||||||
<th>Type</th>
|
|
||||||
<th>Sort Order</th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
{{#each sortedCharacteristics as |row|}}
|
|
||||||
<tr>
|
|
||||||
<td>
|
|
||||||
{{#link-to 'protected.characteristics.show' row}}
|
|
||||||
{{row.characteristicName}}
|
|
||||||
{{/link-to}}
|
|
||||||
</td>
|
|
||||||
<td>{{row.characteristicTypeName}}</td>
|
|
||||||
<td>{{row.sortOrder}}</td>
|
|
||||||
</tr>
|
|
||||||
{{/each}}
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
|
|
Reference in a new issue