diff --git a/app/components/ccdb-filter.js b/app/components/ccdb-filter.js new file mode 100644 index 0000000..a6b3c20 --- /dev/null +++ b/app/components/ccdb-filter.js @@ -0,0 +1,5 @@ +import Ember from 'ember'; + +const { Component } = Ember; + +export default Component.extend({ }); diff --git a/app/components/collection/list-container.js b/app/components/collection/list-container.js index e26790e..e9cb377 100644 --- a/app/components/collection/list-container.js +++ b/app/components/collection/list-container.js @@ -8,9 +8,10 @@ export default Component.extend({ columns: [ { label: 'Project', valuePath: 'project.name', }, + { label: 'Region', valuePath: 'studyLocation.site.region.name', }, + { label: 'Site', valuePath: 'studyLocation.site.name', }, { label: 'Study Location', valuePath: 'studyLocation.code', }, - { label: 'Method', valuePath: 'collectionMethod.code', }, - { label: 'Type', valuePath: 'collectionType.name', }, + { label: 'Method', valuePath: 'collectionMethod.name', }, { label: '# of Traps', valuePath: 'numberOfTraps', }, { label: 'Start', valuePath: 'startDateTime', }, { label: 'End', valuePath: 'endDateTime', }, diff --git a/app/controllers/collections/index.js b/app/controllers/collections/index.js index 7a022f4..48482d2 100644 --- a/app/controllers/collections/index.js +++ b/app/controllers/collections/index.js @@ -1,10 +1,36 @@ import Ember from 'ember'; -const { Controller } = Ember; +const { Controller, computed, get, set } = Ember; + export default Controller.extend({ - queryParams: ['page'], + queryParams: ['page', 'project', 'region', 'site', 'study_location', + 'collection_method', 'number_of_traps', 'collection_start_date', + 'collection_end_date'], page: 1, + project: [], + region: [], + site: [], + study_location: [], + collection_method: [], + number_of_traps: '', + collection_start_date: '', + collection_end_date: '', + + options: computed('projectOptions', 'regionOptions', 'siteOptions', + 'studyLocationOptions', 'collectionMethodOptions', function() { + return { + projects: this.get('projectOptions'), + regions: this.get('regionOptions'), + sites: this.get('siteOptions'), + studyLocations: this.get('studyLocationOptions'), + collectionMethods: this.get('collectionMethodOptions'), + }; + }), + + _coerceId(model) { + return +get(model, 'id'); + }, actions: { changePage(page) { @@ -16,5 +42,30 @@ export default Controller.extend({ createCollection() { this.transitionToRoute('collections.create'); }, + changeFilter(filter) { + // Need to reset the page so that things don't get weird + set(this, 'page', 1); + + const filterModelFields = ['project', 'region', 'site', 'study_location', + 'collection_method']; + + filterModelFields.forEach((field) => { + let fields = get(filter, field); + fields = fields.map(this._coerceId); + set(this, field, fields); + }); + + set(this, 'number_of_traps', get(filter, 'number_of_traps')); + + ['collection_start_date', 'collection_end_date'].forEach((field) => { + let value = get(filter, field); + if (value) { + value = value.toJSON().split('T')[0]; + } else { + value = ''; + } + set(this, field, value); + }); + }, }, }); diff --git a/app/models/region.js b/app/models/region.js new file mode 100644 index 0000000..3530700 --- /dev/null +++ b/app/models/region.js @@ -0,0 +1,11 @@ +import DS from 'ember-data'; + +const { Model, attr, hasMany } = DS; + +export default Model.extend({ + name: attr('string'), + code: attr('string'), + sortOrder: attr('number'), + + site: hasMany('site'), +}); diff --git a/app/models/site.js b/app/models/site.js new file mode 100644 index 0000000..04402e7 --- /dev/null +++ b/app/models/site.js @@ -0,0 +1,13 @@ +import DS from 'ember-data'; + +const { Model, attr, hasMany, belongsTo } = DS; + +export default Model.extend({ + name: attr('string'), + code: attr('string'), + description: attr('string'), + sortOrder: attr('number'), + + region: belongsTo('region'), + studyLocation: hasMany('study-location'), +}); diff --git a/app/models/study-location.js b/app/models/study-location.js index 7568218..28969aa 100644 --- a/app/models/study-location.js +++ b/app/models/study-location.js @@ -1,6 +1,6 @@ import DS from 'ember-data'; -const { Model, attr } = DS; +const { Model, attr, belongsTo } = DS; export default Model.extend({ name: attr('string'), @@ -10,4 +10,6 @@ export default Model.extend({ collectingLocation: attr('string'), description: attr('string'), sortOrder: attr('number'), + + site: belongsTo('site'), }); diff --git a/app/routes/collections/index.js b/app/routes/collections/index.js index 08d7b8d..ab1eee6 100644 --- a/app/routes/collections/index.js +++ b/app/routes/collections/index.js @@ -1,14 +1,72 @@ import Ember from 'ember'; -const { Route } = Ember; +const { Route, RSVP } = Ember; export default Route.extend({ queryParams: { + // qps are snake_case for the django api page: { refreshModel: true }, + project: { refreshModel: true }, + region: { refreshModel: true }, + site: { refreshModel: true }, + study_location: { refreshModel: true }, + collection_method: { refreshModel: true }, + number_of_traps: { refreshModel: true }, + collection_start_date: { refreshModel: true }, + collection_end_date: { refreshModel: true }, }, model(params) { - const include = {include: 'project,study-location,collection-method,collection-type'}; - return this.get('store').query('collection', Object.assign(params, include)); + const store = this.get('store'); + const opts = { + include: 'project,study-location,study-location.site,site,collection-method', + }; + + return RSVP.hash({ + projectOptions: store.findAll('project'), + regionOptions: store.findAll('region'), + siteOptions: store.findAll('site'), + studyLocationOptions: store.findAll('study-location'), + collectionMethodOptions: store.findAll('collection-method'), + model: store.query('collection', Object.assign(params, opts)), + }); + }, + + setupController(controller, models) { + this._super(...arguments); + controller.setProperties(models); + + const store = this.get('store'); + + let project = controller.get('project'); + project = project.map(id => store.peekRecord('project', id)); + + let region = controller.get('region'); + region = region.map(id => store.peekRecord('region', id)); + + let site = controller.get('site'); + site = site.map(id => store.peekRecord('site', id)); + + let studyLocation = controller.get('study_location'); + studyLocation = studyLocation.map(id => store.peekRecord('study-location', id)); + + let collectionMethod = controller.get('collection_method'); + collectionMethod = collectionMethod.map(id => store.peekRecord('collection-method', id)); + + const numberOfTraps = controller.get('number_of_traps'); + const collectionStartDate = controller.get('collection_start_date'); + const collectionEndDate = controller.get('collection_end_date'); + + let filter = { + project, + region, + site, + study_location: studyLocation, + collection_method: collectionMethod, + number_of_traps: numberOfTraps, + collection_start_date: collectionStartDate, + collection_end_date: collectionEndDate, + } + controller.set('filters', filter); }, }); diff --git a/app/styles/app.css b/app/styles/app.css index 680bff1..1a2d097 100644 --- a/app/styles/app.css +++ b/app/styles/app.css @@ -50,6 +50,10 @@ border-top-right-radius: 0; } +.top-buffer { + margin-top: 20px; +} + /* Sidebar */ .sidebar { position: fixed; diff --git a/app/templates/collections/index.hbs b/app/templates/collections/index.hbs index 07d407b..ca47c63 100644 --- a/app/templates/collections/index.hbs +++ b/app/templates/collections/index.hbs @@ -1,6 +1,9 @@ {{ collection/list-container model=model + filters=filters + options=options + changeFilter=(action 'changeFilter') changePage=(action 'changePage') onRowClick=(action 'rowClick') createCollection=(action 'createCollection') diff --git a/app/templates/components/ccdb-filter.hbs b/app/templates/components/ccdb-filter.hbs new file mode 100644 index 0000000..889d9ee --- /dev/null +++ b/app/templates/components/ccdb-filter.hbs @@ -0,0 +1 @@ +{{yield}} diff --git a/app/templates/components/collection/list-container.hbs b/app/templates/components/collection/list-container.hbs index 872a0c8..6b7c9c9 100644 --- a/app/templates/components/collection/list-container.hbs +++ b/app/templates/components/collection/list-container.hbs @@ -4,6 +4,119 @@ label='New Collection' onClick=(action createCollection) }} + +