Strain name markup

This commit is contained in:
Matthew Dillon 2015-06-11 14:05:13 -08:00
parent e4f01246c2
commit f7c39a50f3
9 changed files with 35 additions and 6 deletions

View file

@ -1 +1 @@
<em>{{strain.species.speciesName}}</em> (strain {{strain.strainName}})
<em>{{strain.species.speciesName}}</em> (strain {{strain-name strain=strain}})

View file

@ -5,7 +5,7 @@
{{#if isEditing}}
{{input value=species.speciesName}}
{{else}}
{{species.speciesName}}
<em>{{species.speciesName}}</em>
{{/if}}
{{display-errors a=species.errors.speciesName}}
</legend>
@ -18,7 +18,7 @@
{{#each species.strains as |strain index|}}
{{if index ","}}
{{#link-to 'strains.show' strain.id}}
{{strain.strainName}}
{{strain-name strain=strain}}
{{/link-to}}
{{/each}}
{{#unless species.isNew}}

View file

@ -9,7 +9,7 @@
{{#each data.strains as |strain index|}}
{{if index ","}}
{{#link-to 'strains.show' strain.id}}
{{strain.strainName}}
{{strain-name strain=strain}}
{{/link-to}}
{{/each}}
</td>

View file

@ -5,7 +5,7 @@
{{#if isEditing}}
{{input value=strain.strainName}}
{{else}}
{{strain.strainName}}
<em>{{strain.strainName}}</em>
{{/if}}
{{display-errors a=strain.errors.strainName}}
</legend>

View file

@ -1,5 +1,5 @@
<td>
{{#link-to 'strains.show' data.id}}
{{#link-to 'strains.show' data.id classBinding="data.typeStrain:type-strain"}}
{{scientific-name strain=data}}
{{/link-to}}
</td>

View file

@ -0,0 +1,5 @@
import Ember from 'ember';
export default Ember.Component.extend({
tagName: 'span',
});

View file

@ -0,0 +1 @@
{{strain.strainName}}{{{if strain.typeStrain '<sup>T</sup>'}}}

View file

@ -10,6 +10,10 @@
background-color: #FFFCE2;
}
.type-strain {
color: #5CA934;
}
/* BEGIN https://github.com/tobiasahlin/SpinKit */
.spinner {
width: 40px;

View file

@ -0,0 +1,19 @@
import { moduleForComponent, test } from 'ember-qunit';
moduleForComponent('strain-name', 'Unit | Component | strain name', {
// Specify the other units that are required for this test
// needs: ['component:foo', 'helper:bar'],
unit: true
});
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');
});