This repository has been archived on 2025-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
hymenobacterdotinfo/app/models/measurement.js
2015-03-19 10:02:42 -08:00

35 lines
1 KiB
JavaScript

import DS from 'ember-data';
import Ember from 'ember';
export default DS.Model.extend({
strain: DS.belongsTo('strain'),
characteristic: DS.attr('string'),
textMeasurementType: DS.attr('string'),
txtValue: DS.attr('string'),
numValue: DS.attr('number'),
confidenceInterval: DS.attr('number'),
unitType: DS.attr('string'),
notes: DS.attr('string'),
testMethod: DS.attr('string'),
createdAt: DS.attr('date'),
updatedAt: DS.attr('date'),
computedValue: Ember.computed('textMeasurementType', 'txtValue', 'numValue', function() {
var val;
if (this.get('textMeasurementType')) {
val = this.get('textMeasurementType');
} else if (this.get('txtValue')) {
val = this.get('txtValue');
} else if (this.get('numValue')) {
val = this.get('numValue');
if (this.get('confidenceInterval')) {
val = val + ' ± ' + this.get('confidenceInterval');
}
} else {
val = "error";
}
if (this.get('unitType')) {
val = val + ' ' + this.get('unitType');
}
return val;
})
});