parent
81b6b9aee4
commit
075ef0aaa1
1 changed files with 4 additions and 2 deletions
|
@ -2,6 +2,7 @@ import DS from 'ember-data';
|
||||||
import Ember from 'ember';
|
import Ember from 'ember';
|
||||||
|
|
||||||
const { Model, hasMany, belongsTo, attr } = DS;
|
const { Model, hasMany, belongsTo, attr } = DS;
|
||||||
|
const { computed } = Ember;
|
||||||
|
|
||||||
export default Model.extend({
|
export default Model.extend({
|
||||||
measurements : hasMany('measurements', { async: false }),
|
measurements : hasMany('measurements', { async: false }),
|
||||||
|
@ -22,12 +23,13 @@ export default Model.extend({
|
||||||
sortOrder : attr('number'),
|
sortOrder : attr('number'),
|
||||||
canEdit : attr('boolean'),
|
canEdit : attr('boolean'),
|
||||||
|
|
||||||
// TODO: move this to component/helper
|
// Used internally for sorting
|
||||||
fullName: Ember.computed('species', 'strainName', function() {
|
fullName: computed('species', 'strainName', function() {
|
||||||
return `${this.get('species.speciesName')} ${this.get('strainNameMU')}`;
|
return `${this.get('species.speciesName')} ${this.get('strainNameMU')}`;
|
||||||
}),
|
}),
|
||||||
|
|
||||||
// TODO: move this to component/helper
|
// TODO: move this to component/helper
|
||||||
|
// Can't move until Select2 refactor
|
||||||
fullNameMU: function() {
|
fullNameMU: function() {
|
||||||
return Ember.String.htmlSafe(`<em>${this.get('species.speciesName')}</em> ${this.get('strainNameMU')}`);
|
return Ember.String.htmlSafe(`<em>${this.get('species.speciesName')}</em> ${this.get('strainNameMU')}`);
|
||||||
}.property('species', 'strainNameMU').readOnly(),
|
}.property('species', 'strainNameMU').readOnly(),
|
||||||
|
|
Reference in a new issue