29 lines
1.1 KiB
JavaScript
29 lines
1.1 KiB
JavaScript
import DS from 'ember-data';
|
|
|
|
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 `<em>${this.get('species.speciesName')}</em> ${this.get('strainNameMU')}`;
|
|
}.property('species', 'strainNameMU').readOnly(),
|
|
});
|