Roughing in measurements

This commit is contained in:
Matthew Dillon 2015-03-18 16:20:22 -08:00
parent ced3f7d2d2
commit 4f96f4dc07
13 changed files with 109 additions and 2 deletions

15
app/models/measurement.js Normal file
View file

@ -0,0 +1,15 @@
import DS from 'ember-data';
export default DS.Model.extend({
strain: DS.belongsTo('strain'),
characteristic: DS.attr('string'),
textMeasurementType: DS.attr('string'),
txtValue: DS.attr('string'),
numValue: DS.attr('number'),
confidenceInterval: DS.attr('number'),
unitType: DS.attr('string'),
notes: DS.attr('string'),
testMethod: DS.attr('string'),
createdAt: DS.attr('date'),
updatedAt: DS.attr('date')
});

View file

@ -1,6 +1,7 @@
import DS from 'ember-data';
export default DS.Model.extend({
measurements: DS.hasMany('measurements', { async: true }),
strainName: DS.attr('string'),
strainType: DS.attr('string'),
etymology: DS.attr('string'),

View file

@ -9,7 +9,9 @@ Router.map(function() {
this.route('login');
this.route('about');
this.resource('strains', function() {
this.route('show', { path: ':strain_id' });
this.route('show', { path: ':strain_id' }, function() {
this.resource('measurements', function() {});
});
});
});

View file

@ -0,0 +1,4 @@
import Ember from 'ember';
export default Ember.Route.extend({
});

View file

@ -0,0 +1,7 @@
import Ember from 'ember';
export default Ember.Route.extend({
model: function() {
return this.modelFor('strains/show').get('measurements');
}
});

View file

@ -0,0 +1,3 @@
.measurements-container {
padding: 2em 0em 0em 0em;
}

View file

@ -0,0 +1 @@
{{outlet}}

View file

@ -0,0 +1,28 @@
<table class="flakes-table">
<thead>
<tr>
<th>Characteristic</th>
<th>Text Meas. Type</th>
<th>Text Value</th>
<th>Num. Value</th>
<th>Confidence Int.</th>
<th>Unit</th>
<th>Notes</th>
<th>Test Method</th>
</tr>
</thead>
<tbody>
{{#each measurement in model}}
<tr>
<td>{{measurement.characteristic}}</td>
<td>{{measurement.textMeasurementType}}</td>
<td>{{measurement.txtValue}}</td>
<td>{{measurement.numValue}}</td>
<td>{{measurement.confidenceInterval}}</td>
<td>{{measurement.unitType}}</td>
<td>{{measurement.notes}}</td>
<td>{{measurement.testMethod}}</td>
</tr>
{{/each}}
</tbody>
</table>

View file

@ -11,7 +11,7 @@
<tbody>
{{#each strain in model}}
<tr>
<td>{{link-to strain.strainName 'strains.show' strain}}</td>
<td>{{link-to strain.strainName 'measurements' strain}}</td>
<td></td>
</tr>
{{/each}}

View file

@ -38,3 +38,6 @@
</fieldset>
</div>
</div>
<div class="measurements-container">
{{outlet}}
</div>

View file

@ -0,0 +1,15 @@
import {
moduleForModel,
test
} from 'ember-qunit';
moduleForModel('measurement', {
// Specify the other units that are required for this test.
needs: []
});
test('it exists', function(assert) {
var model = this.subject();
// var store = this.store();
assert.ok(!!model);
});

View file

@ -0,0 +1,14 @@
import {
moduleFor,
test
} from 'ember-qunit';
moduleFor('route:measurements', {
// Specify the other units that are required for this test.
// needs: ['controller:foo']
});
test('it exists', function(assert) {
var route = this.subject();
assert.ok(route);
});

View file

@ -0,0 +1,14 @@
import {
moduleFor,
test
} from 'ember-qunit';
moduleFor('route:measurements/index', {
// Specify the other units that are required for this test.
// needs: ['controller:foo']
});
test('it exists', function(assert) {
var route = this.subject();
assert.ok(route);
});