Roughing in measurements again
This commit is contained in:
parent
6f50a381fc
commit
878e8d1b60
12 changed files with 127 additions and 20 deletions
|
@ -3,8 +3,8 @@ import DS from 'ember-data';
|
||||||
export default DS.Model.extend({
|
export default DS.Model.extend({
|
||||||
characteristicName: DS.attr('string'),
|
characteristicName: DS.attr('string'),
|
||||||
characteristicType: DS.attr('string'),
|
characteristicType: DS.attr('string'),
|
||||||
strains: DS.hasMany('strain'),
|
strains: DS.hasMany('strain', { async: true }),
|
||||||
measurements: DS.hasMany('measurements'),
|
measurements: DS.hasMany('measurements', { async: true }),
|
||||||
createdAt: DS.attr('date'),
|
createdAt: DS.attr('date'),
|
||||||
updatedAt: DS.attr('date'),
|
updatedAt: DS.attr('date'),
|
||||||
deletedAt: DS.attr('date'),
|
deletedAt: DS.attr('date'),
|
||||||
|
|
|
@ -2,8 +2,8 @@ import DS from 'ember-data';
|
||||||
import Ember from 'ember';
|
import Ember from 'ember';
|
||||||
|
|
||||||
export default DS.Model.extend({
|
export default DS.Model.extend({
|
||||||
strain: DS.belongsTo('strain'),
|
strain: DS.belongsTo('strain', { async: true }),
|
||||||
characteristic: DS.attr('string'),
|
characteristic: DS.belongsTo('characteristic', { async: true }),
|
||||||
textMeasurementType: DS.attr('string'),
|
textMeasurementType: DS.attr('string'),
|
||||||
txtValue: DS.attr('string'),
|
txtValue: DS.attr('string'),
|
||||||
numValue: DS.attr('number'),
|
numValue: DS.attr('number'),
|
||||||
|
|
|
@ -13,6 +13,9 @@
|
||||||
{{#link-to 'characteristics' tagName='li' href=false}}
|
{{#link-to 'characteristics' tagName='li' href=false}}
|
||||||
{{#link-to 'characteristics'}}Characteristics{{/link-to}}
|
{{#link-to 'characteristics'}}Characteristics{{/link-to}}
|
||||||
{{/link-to}}
|
{{/link-to}}
|
||||||
|
{{#link-to 'measurements' tagName='li' href=false}}
|
||||||
|
{{#link-to 'measurements'}}Measurements{{/link-to}}
|
||||||
|
{{/link-to}}
|
||||||
{{#link-to 'about' tagName='li' href=false}}
|
{{#link-to 'about' tagName='li' href=false}}
|
||||||
{{#link-to 'about'}}About{{/link-to}}
|
{{#link-to 'about'}}About{{/link-to}}
|
||||||
{{/link-to}}
|
{{/link-to}}
|
||||||
|
|
5
app/pods/components/measurement-index-row/component.js
Normal file
5
app/pods/components/measurement-index-row/component.js
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
import Ember from 'ember';
|
||||||
|
|
||||||
|
export default Ember.Component.extend({
|
||||||
|
tagName: 'tr',
|
||||||
|
});
|
11
app/pods/components/measurement-index-row/template.hbs
Normal file
11
app/pods/components/measurement-index-row/template.hbs
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
<td>
|
||||||
|
{{#link-to 'strains.show' data.strain.id}}
|
||||||
|
{{scientific-name strain=data.strain}}
|
||||||
|
{{/link-to}}
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
{{data.characteristic.characteristicName}}
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
{{{data.computedValue}}}
|
||||||
|
</td>
|
21
app/pods/measurements/route.js
Normal file
21
app/pods/measurements/route.js
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
import Ember from 'ember';
|
||||||
|
import AuthenticatedRouteMixin from 'simple-auth/mixins/authenticated-route-mixin';
|
||||||
|
|
||||||
|
export default Ember.Route.extend(AuthenticatedRouteMixin, {
|
||||||
|
model: function() {
|
||||||
|
return Ember.RSVP.hash({
|
||||||
|
measurements: this.store.findAll('measurement'),
|
||||||
|
species: this.store.findAll('species')
|
||||||
|
});
|
||||||
|
},
|
||||||
|
setupController: function(controller, models) {
|
||||||
|
var tableAttrs = [
|
||||||
|
{ name: 'Strain', attr: 'strain.strainName' },
|
||||||
|
{ name: 'Characteristic', attr: 'characteristic.CharacteristicName' },
|
||||||
|
{ name: 'Value', attr: 'computedValue'}
|
||||||
|
];
|
||||||
|
controller.set('model', models);
|
||||||
|
controller.set('tableAttrs', tableAttrs);
|
||||||
|
controller.set('row', 'measurement-index-row');
|
||||||
|
},
|
||||||
|
});
|
11
app/pods/measurements/template.hbs
Normal file
11
app/pods/measurements/template.hbs
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
<h2>{{genus-name}} Measurements</h2>
|
||||||
|
<h3>Total measurements: {{model.length}}</h3>
|
||||||
|
|
||||||
|
{{
|
||||||
|
view "select"
|
||||||
|
content=model.species
|
||||||
|
optionValuePath="content.id"
|
||||||
|
optionLabelPath="content.speciesName"
|
||||||
|
}}
|
||||||
|
|
||||||
|
{{sortable-table content=model.measurements tableAttrs=tableAttrs row=row}}
|
|
@ -20,6 +20,7 @@ Router.map(function() {
|
||||||
this.route('show', { path: ':strain_id' });
|
this.route('show', { path: ':strain_id' });
|
||||||
});
|
});
|
||||||
|
|
||||||
|
this.route('measurements');
|
||||||
});
|
});
|
||||||
|
|
||||||
export default Router;
|
export default Router;
|
||||||
|
|
|
@ -7,8 +7,8 @@ module.exports = function(app) {
|
||||||
id: 1,
|
id: 1,
|
||||||
characteristicName: 'α-fucosidase (API ZYM)',
|
characteristicName: 'α-fucosidase (API ZYM)',
|
||||||
characteristicType: 'Type 1',
|
characteristicType: 'Type 1',
|
||||||
strains: [1],
|
strains: [1,2],
|
||||||
measurements: [1],
|
measurements: [1,6],
|
||||||
createdAt: "0001-01-01T00:00:00Z",
|
createdAt: "0001-01-01T00:00:00Z",
|
||||||
updatedAt: "0001-01-01T00:00:00Z",
|
updatedAt: "0001-01-01T00:00:00Z",
|
||||||
deletedAt: null,
|
deletedAt: null,
|
||||||
|
@ -20,8 +20,8 @@ module.exports = function(app) {
|
||||||
id: 2,
|
id: 2,
|
||||||
characteristicName: 'α-glucosidase',
|
characteristicName: 'α-glucosidase',
|
||||||
characteristicType: 'Type 2',
|
characteristicType: 'Type 2',
|
||||||
strains: [1],
|
strains: [1,2],
|
||||||
measurements: [2],
|
measurements: [2,7],
|
||||||
createdAt: "0001-01-01T00:00:00Z",
|
createdAt: "0001-01-01T00:00:00Z",
|
||||||
updatedAt: "0001-01-01T00:00:00Z",
|
updatedAt: "0001-01-01T00:00:00Z",
|
||||||
deletedAt: null,
|
deletedAt: null,
|
||||||
|
@ -33,8 +33,34 @@ module.exports = function(app) {
|
||||||
id: 3,
|
id: 3,
|
||||||
characteristicName: 'Chloramphenicol',
|
characteristicName: 'Chloramphenicol',
|
||||||
characteristicType: 'Type 3',
|
characteristicType: 'Type 3',
|
||||||
strains: [1],
|
strains: [1,2],
|
||||||
measurements: [3],
|
measurements: [3,8],
|
||||||
|
createdAt: "0001-01-01T00:00:00Z",
|
||||||
|
updatedAt: "0001-01-01T00:00:00Z",
|
||||||
|
deletedAt: null,
|
||||||
|
createdBy: 1,
|
||||||
|
updatedBy: 1,
|
||||||
|
deletedBy: null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 4,
|
||||||
|
characteristicName: 'Bacitracin',
|
||||||
|
characteristicType: 'Type 1',
|
||||||
|
strains: [1,2],
|
||||||
|
measurements: [4,9],
|
||||||
|
createdAt: "0001-01-01T00:00:00Z",
|
||||||
|
updatedAt: "0001-01-01T00:00:00Z",
|
||||||
|
deletedAt: null,
|
||||||
|
createdBy: 1,
|
||||||
|
updatedBy: 1,
|
||||||
|
deletedBy: null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 5,
|
||||||
|
characteristicName: 'Indole',
|
||||||
|
characteristicType: 'Type 2',
|
||||||
|
strains: [1,2],
|
||||||
|
measurements: [5,10],
|
||||||
createdAt: "0001-01-01T00:00:00Z",
|
createdAt: "0001-01-01T00:00:00Z",
|
||||||
updatedAt: "0001-01-01T00:00:00Z",
|
updatedAt: "0001-01-01T00:00:00Z",
|
||||||
deletedAt: null,
|
deletedAt: null,
|
||||||
|
|
|
@ -6,7 +6,7 @@ module.exports = function(app) {
|
||||||
{
|
{
|
||||||
id: 1,
|
id: 1,
|
||||||
strain: 1,
|
strain: 1,
|
||||||
characteristic: 'α-fucosidase (API ZYM)',
|
characteristic: 1,
|
||||||
textMeasurementType: 'Meas. Type 1',
|
textMeasurementType: 'Meas. Type 1',
|
||||||
txtValue: null,
|
txtValue: null,
|
||||||
numValue: null,
|
numValue: null,
|
||||||
|
@ -22,7 +22,7 @@ module.exports = function(app) {
|
||||||
{
|
{
|
||||||
id: 2,
|
id: 2,
|
||||||
strain: 1,
|
strain: 1,
|
||||||
characteristic: 'α-glucosidase',
|
characteristic: 2,
|
||||||
textMeasurementType: 'Meas. Type 1',
|
textMeasurementType: 'Meas. Type 1',
|
||||||
txtValue: null,
|
txtValue: null,
|
||||||
numValue: null,
|
numValue: null,
|
||||||
|
@ -38,7 +38,7 @@ module.exports = function(app) {
|
||||||
{
|
{
|
||||||
id: 3,
|
id: 3,
|
||||||
strain: 1,
|
strain: 1,
|
||||||
characteristic: 'Chloramphenicol',
|
characteristic: 3,
|
||||||
textMeasurementType: null,
|
textMeasurementType: null,
|
||||||
txtValue: "text value",
|
txtValue: "text value",
|
||||||
numValue: null,
|
numValue: null,
|
||||||
|
@ -54,7 +54,7 @@ module.exports = function(app) {
|
||||||
{
|
{
|
||||||
id: 4,
|
id: 4,
|
||||||
strain: 1,
|
strain: 1,
|
||||||
characteristic: 'Bacitracin',
|
characteristic: 4,
|
||||||
textMeasurementType: null,
|
textMeasurementType: null,
|
||||||
txtValue: null,
|
txtValue: null,
|
||||||
numValue: 123.4,
|
numValue: 123.4,
|
||||||
|
@ -70,7 +70,7 @@ module.exports = function(app) {
|
||||||
{
|
{
|
||||||
id: 5,
|
id: 5,
|
||||||
strain: 1,
|
strain: 1,
|
||||||
characteristic: 'Indole',
|
characteristic: 5,
|
||||||
textMeasurementType: null,
|
textMeasurementType: null,
|
||||||
txtValue: null,
|
txtValue: null,
|
||||||
numValue: 567.8,
|
numValue: 567.8,
|
||||||
|
@ -86,7 +86,7 @@ module.exports = function(app) {
|
||||||
{
|
{
|
||||||
id: 6,
|
id: 6,
|
||||||
strain: 2,
|
strain: 2,
|
||||||
characteristic: 'Characteristic 1',
|
characteristic: 1,
|
||||||
textMeasurementType: 'Meas. Type 1',
|
textMeasurementType: 'Meas. Type 1',
|
||||||
txtValue: null,
|
txtValue: null,
|
||||||
numValue: null,
|
numValue: null,
|
||||||
|
@ -102,7 +102,7 @@ module.exports = function(app) {
|
||||||
{
|
{
|
||||||
id: 7,
|
id: 7,
|
||||||
strain: 2,
|
strain: 2,
|
||||||
characteristic: 'Characteristic 2',
|
characteristic: 2,
|
||||||
textMeasurementType: 'Meas. Type 1',
|
textMeasurementType: 'Meas. Type 1',
|
||||||
txtValue: null,
|
txtValue: null,
|
||||||
numValue: null,
|
numValue: null,
|
||||||
|
@ -118,7 +118,7 @@ module.exports = function(app) {
|
||||||
{
|
{
|
||||||
id: 8,
|
id: 8,
|
||||||
strain: 2,
|
strain: 2,
|
||||||
characteristic: 'Characteristic 3',
|
characteristic: 3,
|
||||||
textMeasurementType: null,
|
textMeasurementType: null,
|
||||||
txtValue: "text value",
|
txtValue: "text value",
|
||||||
numValue: null,
|
numValue: null,
|
||||||
|
@ -134,7 +134,7 @@ module.exports = function(app) {
|
||||||
{
|
{
|
||||||
id: 9,
|
id: 9,
|
||||||
strain: 2,
|
strain: 2,
|
||||||
characteristic: 'Characteristic 4',
|
characteristic: 4,
|
||||||
textMeasurementType: null,
|
textMeasurementType: null,
|
||||||
txtValue: null,
|
txtValue: null,
|
||||||
numValue: 123.4,
|
numValue: 123.4,
|
||||||
|
@ -150,7 +150,7 @@ module.exports = function(app) {
|
||||||
{
|
{
|
||||||
id: 10,
|
id: 10,
|
||||||
strain: 2,
|
strain: 2,
|
||||||
characteristic: 'Characteristic 4',
|
characteristic: 5,
|
||||||
textMeasurementType: null,
|
textMeasurementType: null,
|
||||||
txtValue: null,
|
txtValue: null,
|
||||||
numValue: 567.8,
|
numValue: 567.8,
|
||||||
|
|
|
@ -0,0 +1,18 @@
|
||||||
|
import { moduleForComponent, test } from 'ember-qunit';
|
||||||
|
|
||||||
|
moduleForComponent('measurement-index-row', 'Unit | Component | measurement index row', {
|
||||||
|
// Specify the other units that are required for this test
|
||||||
|
// needs: ['component:foo', 'helper:bar']
|
||||||
|
});
|
||||||
|
|
||||||
|
test('it renders', function(assert) {
|
||||||
|
assert.expect(2);
|
||||||
|
|
||||||
|
// Creates the component instance
|
||||||
|
var component = this.subject();
|
||||||
|
assert.equal(component._state, 'preRender');
|
||||||
|
|
||||||
|
// Renders the component to the page
|
||||||
|
this.render();
|
||||||
|
assert.equal(component._state, 'inDOM');
|
||||||
|
});
|
11
tests/unit/pods/measurements/route-test.js
Normal file
11
tests/unit/pods/measurements/route-test.js
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
import { moduleFor, test } from 'ember-qunit';
|
||||||
|
|
||||||
|
moduleFor('route:measurements', 'Unit | 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);
|
||||||
|
});
|
Reference in a new issue