Rest of strain MU

#55
This commit is contained in:
Matthew Dillon 2015-11-13 14:27:08 -07:00
parent 81b6b9aee4
commit 075ef0aaa1

View file

@ -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(),