parent
93d70d3c95
commit
bfae4422f4
8 changed files with 78 additions and 17 deletions
|
@ -9,6 +9,7 @@ export default Component.extend({
|
||||||
columns: [
|
columns: [
|
||||||
{ label: 'Project', valuePath: 'project.name', },
|
{ label: 'Project', valuePath: 'project.name', },
|
||||||
{ label: 'IACUC', valuePath: 'project.iacucNumber', },
|
{ label: 'IACUC', valuePath: 'project.iacucNumber', },
|
||||||
|
{ label: 'Species', valuePath: 'speciesAndCounts', },
|
||||||
{ label: 'Region', valuePath: 'studyLocation.site.region.name', },
|
{ label: 'Region', valuePath: 'studyLocation.site.region.name', },
|
||||||
{ label: 'Site', valuePath: 'studyLocation.site.name', },
|
{ label: 'Site', valuePath: 'studyLocation.site.name', },
|
||||||
{ label: 'Study Location', valuePath: 'studyLocation.code', },
|
{ label: 'Study Location', valuePath: 'studyLocation.code', },
|
||||||
|
|
|
@ -6,7 +6,7 @@ const { Controller, computed, get, set } = Ember;
|
||||||
export default Controller.extend({
|
export default Controller.extend({
|
||||||
queryParams: ['page', 'project', 'region', 'site', 'study_location',
|
queryParams: ['page', 'project', 'region', 'site', 'study_location',
|
||||||
'collection_method', 'number_of_traps', 'collection_start_date',
|
'collection_method', 'number_of_traps', 'collection_start_date',
|
||||||
'collection_end_date', 'adfg_permit'],
|
'collection_end_date', 'adfg_permit', 'species'],
|
||||||
page: 1,
|
page: 1,
|
||||||
project: [],
|
project: [],
|
||||||
region: [],
|
region: [],
|
||||||
|
@ -14,13 +14,14 @@ export default Controller.extend({
|
||||||
study_location: [],
|
study_location: [],
|
||||||
collection_method: [],
|
collection_method: [],
|
||||||
adfg_permit: [],
|
adfg_permit: [],
|
||||||
|
species: [],
|
||||||
number_of_traps: '',
|
number_of_traps: '',
|
||||||
collection_start_date: '',
|
collection_start_date: '',
|
||||||
collection_end_date: '',
|
collection_end_date: '',
|
||||||
|
|
||||||
options: computed('projectOptions', 'regionOptions', 'siteOptions',
|
options: computed('projectOptions', 'regionOptions', 'siteOptions',
|
||||||
'studyLocationOptions', 'collectionMethodOptions',
|
'studyLocationOptions', 'collectionMethodOptions',
|
||||||
'adfgPermitOptions', function() {
|
'adfgPermitOptions', 'speciesOptions', function() {
|
||||||
return {
|
return {
|
||||||
projects: this.get('projectOptions'),
|
projects: this.get('projectOptions'),
|
||||||
regions: this.get('regionOptions'),
|
regions: this.get('regionOptions'),
|
||||||
|
@ -28,6 +29,7 @@ export default Controller.extend({
|
||||||
studyLocations: this.get('studyLocationOptions'),
|
studyLocations: this.get('studyLocationOptions'),
|
||||||
collectionMethods: this.get('collectionMethodOptions'),
|
collectionMethods: this.get('collectionMethodOptions'),
|
||||||
adfgPermits: this.get('adfgPermitOptions'),
|
adfgPermits: this.get('adfgPermitOptions'),
|
||||||
|
species: this.get('speciesOptions'),
|
||||||
};
|
};
|
||||||
}),
|
}),
|
||||||
|
|
||||||
|
@ -47,7 +49,8 @@ export default Controller.extend({
|
||||||
},
|
},
|
||||||
resetFilter() {
|
resetFilter() {
|
||||||
set(this, 'page', 1);
|
set(this, 'page', 1);
|
||||||
['project', 'region', 'site', 'study_location', 'collection_method', 'adfg_permit'].forEach((field) => {
|
['project', 'region', 'site', 'study_location', 'collection_method',
|
||||||
|
'adfg_permit', 'species'].forEach((field) => {
|
||||||
set(this, field, []);
|
set(this, field, []);
|
||||||
});
|
});
|
||||||
['number_of_traps', 'collection_start_date', 'collection_end_date'].forEach((field) => {
|
['number_of_traps', 'collection_start_date', 'collection_end_date'].forEach((field) => {
|
||||||
|
@ -59,7 +62,7 @@ export default Controller.extend({
|
||||||
set(this, 'page', 1);
|
set(this, 'page', 1);
|
||||||
|
|
||||||
const filterModelFields = ['project', 'region', 'site', 'study_location',
|
const filterModelFields = ['project', 'region', 'site', 'study_location',
|
||||||
'collection_method', 'adfg_permit'];
|
'collection_method', 'adfg_permit', 'species'];
|
||||||
|
|
||||||
filterModelFields.forEach((field) => {
|
filterModelFields.forEach((field) => {
|
||||||
let fields = get(filter, field);
|
let fields = get(filter, field);
|
||||||
|
|
12
app/models/collection-species.js
Normal file
12
app/models/collection-species.js
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
import DS from 'ember-data';
|
||||||
|
|
||||||
|
const { Model, attr, belongsTo } = DS;
|
||||||
|
|
||||||
|
export default Model.extend({
|
||||||
|
sex: attr('string'),
|
||||||
|
count: attr('number'),
|
||||||
|
countEstimated: attr('boolean'),
|
||||||
|
|
||||||
|
collection: belongsTo('collection'),
|
||||||
|
species: belongsTo('species'),
|
||||||
|
});
|
|
@ -2,7 +2,7 @@ import Ember from 'ember';
|
||||||
import DS from 'ember-data';
|
import DS from 'ember-data';
|
||||||
|
|
||||||
const { computed } = Ember;
|
const { computed } = Ember;
|
||||||
const { Model, attr, belongsTo } = DS;
|
const { Model, attr, belongsTo, hasMany } = DS;
|
||||||
|
|
||||||
export const schema = {
|
export const schema = {
|
||||||
displayName: attr('string'),
|
displayName: attr('string'),
|
||||||
|
@ -12,11 +12,23 @@ export const schema = {
|
||||||
collectionEndDate: attr('string-null-to-empty'),
|
collectionEndDate: attr('string-null-to-empty'),
|
||||||
collectionEndTime: attr('string-null-to-empty'),
|
collectionEndTime: attr('string-null-to-empty'),
|
||||||
|
|
||||||
project: belongsTo('project'),
|
project: belongsTo('project'),
|
||||||
studyLocation: belongsTo('study-location'),
|
studyLocation: belongsTo('study-location'),
|
||||||
collectionMethod: belongsTo('collection-method'),
|
collectionMethod: belongsTo('collection-method'),
|
||||||
collectionType: belongsTo('collection-type'),
|
collectionType: belongsTo('collection-type'),
|
||||||
adfgPermit: belongsTo('adfg-permit'),
|
adfgPermit: belongsTo('adfg-permit'),
|
||||||
|
|
||||||
|
collectionSpecies: hasMany('collection-species', { async: false }),
|
||||||
|
|
||||||
|
species: computed.mapBy('collectionSpecies', 'species'),
|
||||||
|
speciesNames: computed.mapBy('species', 'commonName'),
|
||||||
|
counts: computed.mapBy('collectionSpecies', 'count'),
|
||||||
|
speciesAndCounts: computed('speciesNames', 'counts', function() {
|
||||||
|
const speciesNames = this.get('speciesNames');
|
||||||
|
let counts = this.get('counts');
|
||||||
|
counts = counts.map(c => c !== null ? c : 'No Count');
|
||||||
|
return speciesNames.map((n, i) => `${n} (${counts[i]})`).join(', ');
|
||||||
|
}),
|
||||||
};
|
};
|
||||||
|
|
||||||
export default Model.extend(Object.assign({}, schema, {
|
export default Model.extend(Object.assign({}, schema, {
|
||||||
|
|
11
app/models/species.js
Normal file
11
app/models/species.js
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
import DS from 'ember-data';
|
||||||
|
|
||||||
|
const { Model, attr } = DS;
|
||||||
|
|
||||||
|
export default Model.extend({
|
||||||
|
commonName: attr('string'),
|
||||||
|
genus: attr('string'),
|
||||||
|
species: attr('string'),
|
||||||
|
parasite: attr('boolean'),
|
||||||
|
sortOrder: attr('number'),
|
||||||
|
});
|
|
@ -15,12 +15,15 @@ export default Route.extend({
|
||||||
collection_start_date: { refreshModel: true },
|
collection_start_date: { refreshModel: true },
|
||||||
collection_end_date: { refreshModel: true },
|
collection_end_date: { refreshModel: true },
|
||||||
adfg_permit: { refreshModel: true },
|
adfg_permit: { refreshModel: true },
|
||||||
|
species: { refreshModel: true },
|
||||||
},
|
},
|
||||||
|
|
||||||
model(params) {
|
model(params) {
|
||||||
const store = this.get('store');
|
const store = this.get('store');
|
||||||
|
const includes = ['project', 'study-location', 'study-location.site', 'site',
|
||||||
|
'collection-method', 'adfg-permit', 'collection-species', 'collection-species.species'];
|
||||||
const opts = {
|
const opts = {
|
||||||
include: 'project,study-location,study-location.site,site,collection-method,adfg-permit',
|
include: includes.join(','),
|
||||||
};
|
};
|
||||||
|
|
||||||
return RSVP.hash({
|
return RSVP.hash({
|
||||||
|
@ -30,6 +33,7 @@ export default Route.extend({
|
||||||
studyLocationOptions: store.findAll('study-location'),
|
studyLocationOptions: store.findAll('study-location'),
|
||||||
collectionMethodOptions: store.findAll('collection-method'),
|
collectionMethodOptions: store.findAll('collection-method'),
|
||||||
adfgPermitOptions: store.findAll('adfg-permit'),
|
adfgPermitOptions: store.findAll('adfg-permit'),
|
||||||
|
speciesOptions: store.findAll('species'),
|
||||||
model: store.query('collection', Object.assign(params, opts)),
|
model: store.query('collection', Object.assign(params, opts)),
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
@ -58,6 +62,9 @@ export default Route.extend({
|
||||||
let adfgPermit = controller.get('adfg_permit');
|
let adfgPermit = controller.get('adfg_permit');
|
||||||
adfgPermit = adfgPermit.map(id => store.peekRecord('adfg-permit', id));
|
adfgPermit = adfgPermit.map(id => store.peekRecord('adfg-permit', id));
|
||||||
|
|
||||||
|
let species = controller.get('species');
|
||||||
|
species = species.map(id => store.peekRecord('species', id));
|
||||||
|
|
||||||
const numberOfTraps = controller.get('number_of_traps');
|
const numberOfTraps = controller.get('number_of_traps');
|
||||||
const collectionStartDate = controller.get('collection_start_date');
|
const collectionStartDate = controller.get('collection_start_date');
|
||||||
const collectionEndDate = controller.get('collection_end_date');
|
const collectionEndDate = controller.get('collection_end_date');
|
||||||
|
@ -72,6 +79,7 @@ export default Route.extend({
|
||||||
collection_start_date: collectionStartDate,
|
collection_start_date: collectionStartDate,
|
||||||
collection_end_date: collectionEndDate,
|
collection_end_date: collectionEndDate,
|
||||||
adfg_permit: adfgPermit,
|
adfg_permit: adfgPermit,
|
||||||
|
species,
|
||||||
}
|
}
|
||||||
controller.set('filters', filter);
|
controller.set('filters', filter);
|
||||||
},
|
},
|
||||||
|
|
|
@ -5,8 +5,10 @@
|
||||||
)}}
|
)}}
|
||||||
{{else}}
|
{{else}}
|
||||||
{{ccdb-pagination model=model changePage=(action (optional changePage))}}
|
{{ccdb-pagination model=model changePage=(action (optional changePage))}}
|
||||||
{{#light-table table tableClassNames="table table-striped" as |t|}}
|
<div class="table-responsive">
|
||||||
{{t.head}}
|
{{#light-table table tableClassNames="table table-striped" as |t|}}
|
||||||
{{t.body onRowClick=(action (optional onRowClick))}}
|
{{t.head}}
|
||||||
{{/light-table}}
|
{{t.body onRowClick=(action (optional onRowClick))}}
|
||||||
|
{{/light-table}}
|
||||||
|
</div>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
|
@ -95,7 +95,7 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-md-6">
|
<div class="col-md-4">
|
||||||
<label>Start Date</label>
|
<label>Start Date</label>
|
||||||
{{
|
{{
|
||||||
pikaday-input
|
pikaday-input
|
||||||
|
@ -106,7 +106,7 @@
|
||||||
class='form-control'
|
class='form-control'
|
||||||
}}
|
}}
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-6">
|
<div class="col-md-4">
|
||||||
<label>End Date</label>
|
<label>End Date</label>
|
||||||
{{
|
{{
|
||||||
pikaday-input
|
pikaday-input
|
||||||
|
@ -117,6 +117,18 @@
|
||||||
class='form-control'
|
class='form-control'
|
||||||
}}
|
}}
|
||||||
</div>
|
</div>
|
||||||
|
<div class="col-md-4">
|
||||||
|
<label>Species</label>
|
||||||
|
{{#power-select-multiple
|
||||||
|
options=options.species
|
||||||
|
selected=filters.species
|
||||||
|
onchange=(action (mut filters.species))
|
||||||
|
searchField='commonName'
|
||||||
|
as |species|
|
||||||
|
}}
|
||||||
|
{{species.commonName}}
|
||||||
|
{{/power-select-multiple}}
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="row top-buffer">
|
<div class="row top-buffer">
|
||||||
|
|
Loading…
Add table
Reference in a new issue