Cleaned up scientific naming.

This commit is contained in:
Matthew Dillon 2015-03-27 14:04:38 -08:00
parent d587f14af4
commit fdc29a6baa
9 changed files with 49 additions and 12 deletions

View file

@ -0,0 +1,8 @@
import Ember from 'ember';
import layout from '../templates/components/scientific-name';
export default Ember.Component.extend({
layout: layout,
tagName: 'span',
strain: null, // passed in
});

View file

@ -1,5 +1,5 @@
import SortableController from '../sortable';
export default SortableController.extend({
sortBy: 'strainName',
sortBy: 'fullName',
});

View file

@ -12,5 +12,8 @@ export default DS.Model.extend({
createdAt: DS.attr('date'),
updatedAt: DS.attr('date'),
deletedAt: DS.attr('date'),
totalMeasurements: DS.attr('number')
totalMeasurements: DS.attr('number'),
fullName: Ember.computed('speciesName', 'strainName', function() {
return this.get('speciesName') + ' (' + this.get('strainName') + ')';
})
});

View file

@ -1,4 +1,4 @@
<h2>Hymenobacter Characteristics</h2>
<h2><em>Hymenobacter</em> Characteristics</h2>
<h3>Total characteristics: {{controller.length}}</h3>
<table class="flakes-table">

View file

@ -0,0 +1 @@
<em>{{strain.speciesName}}</em> (strain {{strain.strainName}})

View file

@ -1,17 +1,21 @@
<h2>Hymenobacter Strains</h2>
<h2><em>Hymenobacter</em> Strains</h2>
<h3>Total strains: {{controller.length}}</h3>
<table class="flakes-table">
<thead>
<tr>
<th {{action "setSortBy" "strainName"}}>Name</th>
<th {{action "setSortBy" "fullName"}}>Name</th>
<th {{action "setSortBy" "totalMeasurements"}}>Measurements</th>
</tr>
</thead>
<tbody>
{{#each strain in controller}}
<tr>
<td>{{link-to strain.strainName 'measurements' strain}}</td>
<td>
{{#link-to 'measurements' strain}}
{{scientific-name strain=strain}}
{{/link-to}}
</td>
<td>{{strain.totalMeasurements}}</td>
</tr>
{{/each}}

View file

@ -1,12 +1,12 @@
<div class="grid-1">
<div class="span-1">
<fieldset class="flakes-information-box">
<legend>{{model.strainName}}</legend>
<legend>Strain {{model.strainName}}</legend>
{{! ROW 1 }}
<div class="grid-4">
<dl class="span-2">
<dt>Species</dt>
<dd>{{model.speciesName}}</dd>
<dd><em>{{model.speciesName}}</em></dd>
</dl>
<dl class="span-2">
<dt>Type</dt>

View file

@ -6,7 +6,7 @@ module.exports = function(app) {
{
id: 1,
speciesName: "Species One",
strainName: "Strain 1",
strainName: "ABC",
strainType: "Test Type",
etymology: "Test Etymology",
accessionBanks: "Test Accession",
@ -21,7 +21,7 @@ module.exports = function(app) {
{
id: 2,
speciesName: "Species Two",
strainName: "Strain 2",
strainName: "XYZ",
strainType: "Test Type",
etymology: "Test Etymology",
accessionBanks: "Test Accession",
@ -36,7 +36,7 @@ module.exports = function(app) {
{
id: 3,
speciesName: "Species Three",
strainName: "Strain 3",
strainName: "QRS",
strainType: "Test Type",
etymology: "Test Etymology",
accessionBanks: "Test Accession",
@ -51,7 +51,7 @@ module.exports = function(app) {
{
id: 4,
speciesName: "Species Four",
strainName: "Strain 4",
strainName: "LMN",
strainType: "Test Type",
etymology: "Test Etymology",
accessionBanks: "Test Accession",

View file

@ -0,0 +1,21 @@
import {
moduleForComponent,
test
} from 'ember-qunit';
moduleForComponent('scientific-name', {
// 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');
});