Merge branch 'master' into clostridium
* master: Fix up full name, again Force sort order for compare
This commit is contained in:
commit
7c503876ac
6 changed files with 13 additions and 12 deletions
|
@ -23,12 +23,8 @@ export default Model.extend({
|
||||||
sortOrder : attr('number'),
|
sortOrder : attr('number'),
|
||||||
canEdit : attr('boolean'),
|
canEdit : attr('boolean'),
|
||||||
|
|
||||||
// Used internally for sorting
|
|
||||||
fullName: computed('species', 'strainName', function() {
|
|
||||||
return `${this.get('species.speciesName')} ${this.get('strainNameMU')}`;
|
|
||||||
}),
|
|
||||||
|
|
||||||
fullNameMU: computed('species', 'strainName', function() {
|
fullNameMU: computed('species', 'strainName', function() {
|
||||||
return htmlSafe(`<em>${this.get('species.speciesName')}</em> ${this.get('strainName')}`);
|
const type = this.get('typeStrain') ? '<sup>T</sup>' : '';
|
||||||
|
return htmlSafe(`<em>${this.get('species.speciesName')}</em> ${this.get('strainName')}${type}`);
|
||||||
}),
|
}),
|
||||||
});
|
});
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
{{strain.fullNameMU}}{{{if strain.typeStrain '<sup>T</sup>' ''}}}
|
|
|
@ -1,6 +1,6 @@
|
||||||
import Ember from 'ember';
|
import Ember from 'ember';
|
||||||
|
|
||||||
const { Component } = Ember;
|
const { Component, computed: { sort } } = Ember;
|
||||||
|
|
||||||
export default Component.extend({
|
export default Component.extend({
|
||||||
characteristics: null,
|
characteristics: null,
|
||||||
|
@ -10,6 +10,12 @@ export default Component.extend({
|
||||||
"update-strains": null,
|
"update-strains": null,
|
||||||
"update-characteristics": null,
|
"update-characteristics": null,
|
||||||
|
|
||||||
|
|
||||||
|
charSortParams: ['characteristicTypeName', 'sortOrder', 'characteristicName'],
|
||||||
|
sortedCharacteristics: sort('characteristics', 'charSortParams'),
|
||||||
|
strainSortParams: ['sortOrder'],
|
||||||
|
sortedStrains: sort('strains', 'sortParams'),
|
||||||
|
|
||||||
selectedStrains: [],
|
selectedStrains: [],
|
||||||
selectedCharacteristics: [],
|
selectedCharacteristics: [],
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
<label>Strains</label>
|
<label>Strains</label>
|
||||||
{{
|
{{
|
||||||
x-select
|
x-select
|
||||||
options=strains
|
options=sortedStrains
|
||||||
nameAttr='fullNameMU'
|
nameAttr='fullNameMU'
|
||||||
multiple=true
|
multiple=true
|
||||||
selected=selectedStrains
|
selected=selectedStrains
|
||||||
|
@ -26,7 +26,7 @@
|
||||||
<label>Characteristics</label>
|
<label>Characteristics</label>
|
||||||
{{
|
{{
|
||||||
x-select
|
x-select
|
||||||
options=characteristics
|
options=sortedCharacteristics
|
||||||
nameAttr='characteristicName'
|
nameAttr='characteristicName'
|
||||||
multiple=true
|
multiple=true
|
||||||
selected=selectedCharacteristics
|
selected=selectedCharacteristics
|
||||||
|
|
|
@ -6,7 +6,7 @@ const { Component, computed: { sort } } = Ember;
|
||||||
export default Component.extend(SetupMetaData, {
|
export default Component.extend(SetupMetaData, {
|
||||||
strains: null,
|
strains: null,
|
||||||
|
|
||||||
sortParams: ['fullName'],
|
sortParams: ['sortOrder'],
|
||||||
sortedStrains: sort('strains', 'sortParams'),
|
sortedStrains: sort('strains', 'sortParams'),
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
{{#link-to 'protected.strains.show' strain classBinding="strain.typeStrain:type-strain"}}
|
{{#link-to 'protected.strains.show' strain classBinding="strain.typeStrain:type-strain"}}
|
||||||
{{full-strain-name strain=strain}}
|
{{strain.fullNameMU}}
|
||||||
{{/link-to}}
|
{{/link-to}}
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
|
|
Reference in a new issue