33 lines
1.2 KiB
JavaScript
33 lines
1.2 KiB
JavaScript
import DS from 'ember-data';
|
|
import Ember from 'ember';
|
|
|
|
export default DS.Model.extend({
|
|
measurements : DS.hasMany('measurements', { async: true }),
|
|
species : DS.belongsTo('species', { async: true }),
|
|
strainName : DS.attr('string'),
|
|
typeStrain : DS.attr('boolean'),
|
|
accessionNumbers : DS.attr('string'),
|
|
genbank : DS.attr('string'),
|
|
isolatedFrom : DS.attr('string'),
|
|
notes : DS.attr('string'),
|
|
createdAt : DS.attr('date'),
|
|
updatedAt : DS.attr('date'),
|
|
deletedAt : DS.attr('date'),
|
|
createdBy : DS.attr('number'),
|
|
updatedBy : DS.attr('number'),
|
|
deletedBy : DS.attr('number'),
|
|
totalMeasurements: DS.attr('number'),
|
|
|
|
strainNameMU: function() {
|
|
let type = this.get('typeStrain') ? '<sup>T</sup>' : '';
|
|
return `${this.get('strainName')}${type}`;
|
|
}.property('strainName', 'typeStrain').readOnly(),
|
|
|
|
fullName: function() {
|
|
return `${this.get('species.speciesName')} (strain ${this.get('strainName')})`;
|
|
}.property('species', 'strainName').readOnly(),
|
|
|
|
fullNameMU: function() {
|
|
return Ember.String.htmlSafe(`<em>${this.get('species.speciesName')}</em> ${this.get('strainNameMU')}`);
|
|
}.property('species', 'strainNameMU').readOnly(),
|
|
});
|