strain.strainNameMU to component

Part of #55
This commit is contained in:
Matthew Dillon 2015-11-13 14:24:26 -07:00
parent 20a6707144
commit 81b6b9aee4
7 changed files with 6 additions and 11 deletions

View file

@ -22,12 +22,6 @@ export default Model.extend({
sortOrder : attr('number'),
canEdit : attr('boolean'),
// TODO: move this to component/helper
strainNameMU: function() {
let type = this.get('typeStrain') ? '<sup>T</sup>' : '';
return Ember.String.htmlSafe(`${this.get('strainName')}${type}`);
}.property('strainName', 'typeStrain').readOnly(),
// TODO: move this to component/helper
fullName: Ember.computed('species', 'strainName', function() {
return `${this.get('species.speciesName')} ${this.get('strainNameMU')}`;

View file

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

View file

@ -17,7 +17,7 @@
<tr>
<td>
{{#link-to 'protected.strains.show' row.strain.id}}
{{{row.strain.strainNameMU}}}
{{strain-name strain=row.strain}}
{{/link-to}}
</td>
<td>

View file

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

View file

@ -14,7 +14,7 @@
{{#each species.strains as |strain index|}}
<li>
{{#link-to 'protected.strains.show' strain.id}}
{{{strain.strainNameMU}}}
{{strain-name strain=strain}}
{{/link-to}}
</li>
{{/each}}

View file

@ -19,7 +19,7 @@
{{#each strains as |strain index|}}
{{if index ","}}
{{#link-to 'protected.strains.show' strain.id}}
{{{strain.strainNameMU}}}
{{strain-name strain=strain}}
{{/link-to}}
{{/each}}
{{add-button label="Add Strain" link="protected.strains.new" canAdd=metaData.canAdd}}

View file

@ -1,7 +1,7 @@
<div class="span-1">
<fieldset class="flakes-information-box">
<legend>
{{strain.strainNameMU}}
{{strain-name strain=strain}}
</legend>
{{! ROW 1 }}