For now just use ember-table (revisit this)

This commit is contained in:
Matthew Dillon 2015-06-15 15:24:37 -08:00
parent 97394d337e
commit 8276f8df57
6 changed files with 55 additions and 20 deletions

View file

@ -1,4 +1,5 @@
import DS from 'ember-data'; import DS from 'ember-data';
import Ember from 'ember';
export default DS.Model.extend({ export default DS.Model.extend({
measurements : DS.hasMany('measurements', { async: true }), measurements : DS.hasMany('measurements', { async: true }),
@ -27,6 +28,6 @@ export default DS.Model.extend({
}.property('species', 'strainName').readOnly(), }.property('species', 'strainName').readOnly(),
fullNameMU: function() { fullNameMU: function() {
return `<em>${this.get('species.speciesName')}</em> ${this.get('strainNameMU')}`; return Ember.String.htmlSafe(`<em>${this.get('species.speciesName')}</em> ${this.get('strainNameMU')}`);
}.property('species', 'strainNameMU').readOnly(), }.property('species', 'strainNameMU').readOnly(),
}); });

View file

@ -1,4 +1,5 @@
import Ember from 'ember'; import Ember from 'ember';
/* global FlakesFrame */
export default Ember.View.extend({ export default Ember.View.extend({
classNames: ['flakes-frame'], classNames: ['flakes-frame'],

View file

@ -1,6 +1,42 @@
import Ember from 'ember'; import Ember from 'ember';
import ColumnDefinition from 'ember-table/models/column-definition';
export default Ember.Controller.extend({ export default Ember.Controller.extend({
measurements: [],
measurementsEmpty: function() {
return this.get('measurements').length === 0;
}.property('measurements'),
tableColumns: Ember.computed(function() {
let strainCol = ColumnDefinition.create({
savedWidth: 200,
textAlign: 'text-align-left',
headerCellName: 'Strain',
contentPath: 'strain.fullNameMU',
});
let charCol = ColumnDefinition.create({
savedWidth: 200,
textAlign: 'text-align-left',
headerCellName: 'Characteristic',
contentPath: 'characteristic.characteristicName',
});
let valCol = ColumnDefinition.create({
savedWidth: 150,
textAlign: 'text-align-left',
headerCellName: 'Value',
contentPath: 'value',
});
return [strainCol, charCol, valCol];
}),
tableContent: Ember.computed('measurements', function() {
return this.get('measurements');
}),
actions: { actions: {
search: function() { search: function() {
this.store.find('measurement', { this.store.find('measurement', {

View file

@ -41,21 +41,14 @@
</div> </div>
</div> </div>
<table class="flakes-table"> {{#if measurementsEmpty}}
<thead> <span>No results</span>
<tr> {{else}}
<th>Strain</th> {{
<th>Characteristic</th> ember-table
<th>Value</th> columns=tableColumns
</tr> content=tableContent
</thead> columnMode='fluid'
<tbody> hasFooter=false
{{#each measurements as |measurement|}} }}
<tr> {{/if}}
<td>{{{measurement.strain.fullNameMU}}}</td>
<td>{{measurement.characteristic.characteristicName}}</td>
<td>{{{measurement.value}}}</td>
</tr>
{{/each}}
</tbody>
</table>

View file

@ -15,6 +15,9 @@
"flakes": "~1.0.0", "flakes": "~1.0.0",
"ember-simple-auth": "~0.8.0-beta.3", "ember-simple-auth": "~0.8.0-beta.3",
"moment": "~2.9.0", "moment": "~2.9.0",
"select2": "3.5.2" "select2": "3.5.2",
"antiscroll": "git://github.com/azirbel/antiscroll.git#90391fb371c7be769bc32e7287c5271981428356",
"jquery-mousewheel": "~3.1.4",
"jquery-ui": "~1.11.4"
} }
} }

View file

@ -38,6 +38,7 @@
"ember-disable-proxy-controllers": "^1.0.0", "ember-disable-proxy-controllers": "^1.0.0",
"ember-export-application-global": "^1.0.2", "ember-export-application-global": "^1.0.2",
"ember-select-2": "1.3.0", "ember-select-2": "1.3.0",
"ember-table": "0.5.0",
"express": "^4.12.4", "express": "^4.12.4",
"glob": "^4.5.3", "glob": "^4.5.3",
"jsonwebtoken": "^5.0.0", "jsonwebtoken": "^5.0.0",