Strain name markup
This commit is contained in:
parent
e4f01246c2
commit
f7c39a50f3
9 changed files with 35 additions and 6 deletions
|
@ -1 +1 @@
|
||||||
<em>{{strain.species.speciesName}}</em> (strain {{strain.strainName}})
|
<em>{{strain.species.speciesName}}</em> (strain {{strain-name strain=strain}})
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
{{#if isEditing}}
|
{{#if isEditing}}
|
||||||
{{input value=species.speciesName}}
|
{{input value=species.speciesName}}
|
||||||
{{else}}
|
{{else}}
|
||||||
{{species.speciesName}}
|
<em>{{species.speciesName}}</em>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{display-errors a=species.errors.speciesName}}
|
{{display-errors a=species.errors.speciesName}}
|
||||||
</legend>
|
</legend>
|
||||||
|
@ -18,7 +18,7 @@
|
||||||
{{#each species.strains as |strain index|}}
|
{{#each species.strains as |strain index|}}
|
||||||
{{if index ","}}
|
{{if index ","}}
|
||||||
{{#link-to 'strains.show' strain.id}}
|
{{#link-to 'strains.show' strain.id}}
|
||||||
{{strain.strainName}}
|
{{strain-name strain=strain}}
|
||||||
{{/link-to}}
|
{{/link-to}}
|
||||||
{{/each}}
|
{{/each}}
|
||||||
{{#unless species.isNew}}
|
{{#unless species.isNew}}
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
{{#each data.strains as |strain index|}}
|
{{#each data.strains as |strain index|}}
|
||||||
{{if index ","}}
|
{{if index ","}}
|
||||||
{{#link-to 'strains.show' strain.id}}
|
{{#link-to 'strains.show' strain.id}}
|
||||||
{{strain.strainName}}
|
{{strain-name strain=strain}}
|
||||||
{{/link-to}}
|
{{/link-to}}
|
||||||
{{/each}}
|
{{/each}}
|
||||||
</td>
|
</td>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
{{#if isEditing}}
|
{{#if isEditing}}
|
||||||
{{input value=strain.strainName}}
|
{{input value=strain.strainName}}
|
||||||
{{else}}
|
{{else}}
|
||||||
{{strain.strainName}}
|
<em>{{strain.strainName}}</em>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{display-errors a=strain.errors.strainName}}
|
{{display-errors a=strain.errors.strainName}}
|
||||||
</legend>
|
</legend>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<td>
|
<td>
|
||||||
{{#link-to 'strains.show' data.id}}
|
{{#link-to 'strains.show' data.id classBinding="data.typeStrain:type-strain"}}
|
||||||
{{scientific-name strain=data}}
|
{{scientific-name strain=data}}
|
||||||
{{/link-to}}
|
{{/link-to}}
|
||||||
</td>
|
</td>
|
||||||
|
|
5
app/pods/components/strain-name/component.js
Normal file
5
app/pods/components/strain-name/component.js
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
import Ember from 'ember';
|
||||||
|
|
||||||
|
export default Ember.Component.extend({
|
||||||
|
tagName: 'span',
|
||||||
|
});
|
1
app/pods/components/strain-name/template.hbs
Normal file
1
app/pods/components/strain-name/template.hbs
Normal file
|
@ -0,0 +1 @@
|
||||||
|
{{strain.strainName}}{{{if strain.typeStrain '<sup>T</sup>'}}}
|
|
@ -10,6 +10,10 @@
|
||||||
background-color: #FFFCE2;
|
background-color: #FFFCE2;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.type-strain {
|
||||||
|
color: #5CA934;
|
||||||
|
}
|
||||||
|
|
||||||
/* BEGIN https://github.com/tobiasahlin/SpinKit */
|
/* BEGIN https://github.com/tobiasahlin/SpinKit */
|
||||||
.spinner {
|
.spinner {
|
||||||
width: 40px;
|
width: 40px;
|
||||||
|
|
19
tests/unit/pods/components/strain-name/component-test.js
Normal file
19
tests/unit/pods/components/strain-name/component-test.js
Normal 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');
|
||||||
|
});
|
Reference in a new issue