31 lines
1.1 KiB
JavaScript
31 lines
1.1 KiB
JavaScript
import Ember from 'ember';
|
|
import DS from 'ember-data';
|
|
|
|
const { computed } = Ember;
|
|
const { Model, attr, belongsTo } = DS;
|
|
|
|
export default Model.extend({
|
|
displayName: attr('string'),
|
|
numberOfTraps: attr('number'),
|
|
collectionStartDate: attr('string-null-to-empty'),
|
|
collectionStartTime: attr('string-null-to-empty'),
|
|
collectionEndDate: attr('string-null-to-empty'),
|
|
collectionEndTime: attr('string-null-to-empty'),
|
|
|
|
project: belongsTo('project'),
|
|
studyLocation: belongsTo('study-location'),
|
|
collectionMethod: belongsTo('collection-method'),
|
|
collectionType: belongsTo('collection-type'),
|
|
|
|
startDateTime: computed('collectionStartDate', 'collectionStartTime',
|
|
function() { return this._mergeDateTime('Start'); }),
|
|
|
|
endDateTime: computed('collectionEndDate', 'collectionEndTime',
|
|
function() { return this._mergeDateTime('End'); }),
|
|
|
|
_mergeDateTime(timepoint) {
|
|
const date = this.get(`collection${timepoint}Date`);
|
|
const time = this.get(`collection${timepoint}Time`);
|
|
return `${date} ${time}`.trim();
|
|
},
|
|
});
|