diff --git a/app/initializers/component-store.js b/app/initializers/component-store.js index 0556ebf..54a3064 100644 --- a/app/initializers/component-store.js +++ b/app/initializers/component-store.js @@ -1,5 +1,5 @@ export function initialize(container, application) { - application.inject('component', 'store', 'store:main'); + application.inject('component', 'store', 'service:store'); } export default { diff --git a/app/initializers/custom-session.js b/app/initializers/custom-session.js new file mode 100644 index 0000000..c6a230a --- /dev/null +++ b/app/initializers/custom-session.js @@ -0,0 +1,25 @@ +import Session from 'simple-auth/session'; +import parseBase64 from '../utils/parse-base64'; +import Ember from 'ember'; + +var CustomSession = Session.extend({ + currentUser: function() { + let token = this.get('secure.token'); + if (!Ember.isEmpty(token)) { + let t = parseBase64(token); + return this.container.lookup('store:main').find('user', t['sub']); + } + return null; + }.property('secure.token'), + +}); + +export function initialize(container, application) { + application.register('session:custom', CustomSession); +} + +export default { + name: 'custom-session', + before: 'simple-auth', + initialize: initialize +}; diff --git a/app/initializers/global-variables.js b/app/initializers/global-variables.js index 4ed58e6..7090375 100644 --- a/app/initializers/global-variables.js +++ b/app/initializers/global-variables.js @@ -7,10 +7,10 @@ var globals = Ember.Object.extend({ }); export function initialize(container, application) { - application.register('global:variables', globals, {singleton: true}); - application.inject('controller', 'globals', 'global:variables'); - application.inject('component', 'globals', 'global:variables'); - application.inject('adapter', 'globals', 'global:variables'); + application.register('service:globals', globals, {singleton: true}); + application.inject('controller', 'globals', 'service:globals'); + application.inject('component', 'globals', 'service:globals'); + application.inject('adapter', 'globals', 'service:globals'); } export default { diff --git a/app/models/characteristic-type.js b/app/models/characteristic-type.js deleted file mode 100644 index 284486e..0000000 --- a/app/models/characteristic-type.js +++ /dev/null @@ -1,13 +0,0 @@ -import DS from 'ember-data'; - -export default DS.Model.extend({ - characteristicTypeName: DS.attr('string'), - characteristics: DS.hasMany('characteristic', { async: true }), - createdAt: DS.attr('date'), - updatedAt: DS.attr('date'), - deletedAt: DS.attr('date'), - createdBy: DS.attr('number'), - updatedBy: DS.attr('number'), - deletedBy: DS.attr('number'), - sortOrder: DS.attr('number'), -}); diff --git a/app/models/characteristic.js b/app/models/characteristic.js index 9f33d7b..d896ca1 100644 --- a/app/models/characteristic.js +++ b/app/models/characteristic.js @@ -1,15 +1,15 @@ import DS from 'ember-data'; export default DS.Model.extend({ - characteristicName: DS.attr('string'), - characteristicType: DS.belongsTo('characteristicType', { async: true }), - strains : DS.hasMany('strain', { async: true }), - measurements : DS.hasMany('measurements', { async: true }), - createdAt : DS.attr('date'), - updatedAt : DS.attr('date'), - deletedAt : DS.attr('date'), - createdBy : DS.attr('number'), - updatedBy : DS.attr('number'), - deletedBy : DS.attr('number'), - sortOrder : DS.attr('number'), + characteristicName : DS.attr('string'), + characteristicTypeName: DS.attr('string'), + strains : DS.hasMany('strain', { async: true }), + measurements : DS.hasMany('measurements', { async: true }), + createdAt : DS.attr('date'), + updatedAt : DS.attr('date'), + deletedAt : DS.attr('date'), + createdBy : DS.attr('number'), + updatedBy : DS.attr('number'), + deletedBy : DS.attr('number'), + sortOrder : DS.attr('number'), }); diff --git a/app/models/species.js b/app/models/species.js index b6d509a..c8746bd 100644 --- a/app/models/species.js +++ b/app/models/species.js @@ -16,6 +16,7 @@ export default DS.Model.extend({ updatedBy : DS.attr('number'), deletedBy : DS.attr('number'), sortOrder : DS.attr('number'), + canEdit : DS.attr('boolean'), speciesNameMU: function() { return Ember.String.htmlSafe(`${this.get('speciesName')}`); diff --git a/app/models/strain.js b/app/models/strain.js index 49344cf..1f54647 100644 --- a/app/models/strain.js +++ b/app/models/strain.js @@ -19,6 +19,7 @@ export default DS.Model.extend({ deletedBy : DS.attr('number'), totalMeasurements : DS.attr('number'), sortOrder : DS.attr('number'), + canEdit : DS.attr('boolean'), strainNameMU: function() { let type = this.get('typeStrain') ? 'T' : ''; diff --git a/app/pods/application/adapter.js b/app/pods/application/adapter.js index bb89c25..a2c9722 100644 --- a/app/pods/application/adapter.js +++ b/app/pods/application/adapter.js @@ -20,7 +20,7 @@ export default DS.RESTAdapter.extend({ errors = {}; if (response.errors !== undefined) { var jsonErrors = response.errors; - Ember.EnumerableUtils.forEach(Ember.keys(jsonErrors), function(key) { + Ember.EnumerableUtils.forEach(Object.keys(jsonErrors), function(key) { errors[Ember.String.camelize(key)] = jsonErrors[key]; }); } diff --git a/app/pods/application/template.hbs b/app/pods/application/template.hbs deleted file mode 100644 index 6e52a50..0000000 --- a/app/pods/application/template.hbs +++ /dev/null @@ -1,51 +0,0 @@ -
- {{site-logo}} - {{#if session.isAuthenticated}} - -

- {{session.currentUser.name}}
- Logout -

- {{else}} -

- {{link-to 'Login' 'login'}} -
- {{link-to 'Sign Up' 'users.new'}} -

- {{/if}} -
- -
-
- {{site-logo}} - - - -
- -
- {{#each flashMessages.queue as |flash|}} - {{custom-flash-message flash=flash}} - {{/each}} - {{outlet}} -
-
diff --git a/app/pods/application/view.js b/app/pods/application/view.js deleted file mode 100644 index 7da9eeb..0000000 --- a/app/pods/application/view.js +++ /dev/null @@ -1,9 +0,0 @@ -import Ember from 'ember'; -/* global FlakesFrame */ - -export default Ember.View.extend({ - classNames: ['flakes-frame'], - didInsertElement: function() { - FlakesFrame.init(); - } -}); diff --git a/app/pods/characteristics/controller.js b/app/pods/characteristics/controller.js deleted file mode 100644 index ae686a9..0000000 --- a/app/pods/characteristics/controller.js +++ /dev/null @@ -1,6 +0,0 @@ -import Ember from 'ember'; - -export default Ember.Controller.extend({ - sortParams: ['characteristicType.characteristicTypeName', 'characteristicName'], - sortedCharacteristics: Ember.computed.sort('characteristics', 'sortParams'), -}); diff --git a/app/pods/characteristics/route.js b/app/pods/characteristics/route.js deleted file mode 100644 index 6fc0c60..0000000 --- a/app/pods/characteristics/route.js +++ /dev/null @@ -1,15 +0,0 @@ -import Ember from 'ember'; -import AuthenticatedRouteMixin from 'simple-auth/mixins/authenticated-route-mixin'; - -export default Ember.Route.extend(AuthenticatedRouteMixin, { - model: function() { - return Ember.RSVP.hash({ - characteristicTypes: this.store.findAll('characteristic-type'), - characteristics: this.store.findAll('characteristic'), - }); - }, - - setupController: function(controller, models) { - controller.setProperties(models); - }, -}); diff --git a/app/pods/compare/controller.js b/app/pods/compare/controller.js deleted file mode 100644 index c867880..0000000 --- a/app/pods/compare/controller.js +++ /dev/null @@ -1,47 +0,0 @@ -import Ember from 'ember'; - -export default Ember.Controller.extend({ - strains: [], - dataEmpty: true, - - actions: { - search: function(selectedStrains, selectedCharacteristics) { - if (Ember.isEmpty(selectedStrains) || Ember.isEmpty(selectedCharacteristics)) { - this.set('dataEmpty', true); - return false; - } - - let data = Ember.A(); - let strains = []; - selectedStrains.forEach((strain) => { - let s = this.store.getById('strain', strain); - strains.pushObject(s); - }); - this.set('strains', strains); - - this.store.find('measurement', { - strain: selectedStrains, - characteristic: selectedCharacteristics, - }).then((measurements) => { - selectedCharacteristics.forEach((characteristic) => { - let char = this.store.getById('characteristic', characteristic); - let row = { - characteristic: char.get('characteristicName'), - }; - selectedStrains.forEach((strain) => { - let meas = measurements.filterBy('strain.id', strain) - .filterBy('characteristic.id', characteristic); - if (!Ember.isEmpty(meas)) { - row[strain] = meas[0].get('value'); - } else { - row[strain] = ''; - } - }); - data.pushObject(row); - }); - this.set('data', data); - this.set('dataEmpty', false); - }); - } - }, -}); diff --git a/app/pods/compare/route.js b/app/pods/compare/route.js deleted file mode 100644 index b53f980..0000000 --- a/app/pods/compare/route.js +++ /dev/null @@ -1,12 +0,0 @@ -import Ember from 'ember'; -import AuthenticatedRouteMixin from 'simple-auth/mixins/authenticated-route-mixin'; - -export default Ember.Route.extend(AuthenticatedRouteMixin, { - resetController: function(controller, isExiting /*, transition*/) { - if (isExiting) { - controller.set('data', null); - controller.set('strains', null); - controller.set('dataEmpty', true); - } - } -}); diff --git a/app/pods/components/display-errors/template.hbs b/app/pods/components/display-errors/template.hbs deleted file mode 100644 index 6a74209..0000000 --- a/app/pods/components/display-errors/template.hbs +++ /dev/null @@ -1,3 +0,0 @@ -{{#each a as |error|}} -
{{error.message}}
-{{/each}} diff --git a/app/pods/components/forms/species-form/component.js b/app/pods/components/forms/species-form/component.js index 0e5912c..a53a469 100644 --- a/app/pods/components/forms/species-form/component.js +++ b/app/pods/components/forms/species-form/component.js @@ -5,6 +5,7 @@ export default Ember.Component.extend({ save: function() { this.sendAction('save'); }, + cancel: function() { this.sendAction('cancel'); }, diff --git a/app/pods/components/forms/species-form/template.hbs b/app/pods/components/forms/species-form/template.hbs index fda54bc..a523838 100644 --- a/app/pods/components/forms/species-form/template.hbs +++ b/app/pods/components/forms/species-form/template.hbs @@ -16,11 +16,11 @@ {{#each species.strains as |strain index|}} {{if index ","}} - {{#link-to 'strains.show' strain.id}} + {{#link-to 'protected.strains.show' strain.id}} {{{strain.strainNameMU}}} {{/link-to}} {{/each}} - {{add-button label="Add Strain" link="strains.new"}} + {{add-button label="Add Strain" link="protected.strains.new"}}
@@ -32,11 +32,11 @@
-{{#if species.isDirty}} + + Cancel + +{{#if species.hasDirtyAttributes}} Save {{/if}} - - Cancel - diff --git a/app/pods/components/forms/strain-form/component.js b/app/pods/components/forms/strain-form/component.js new file mode 100644 index 0000000..3888156 --- /dev/null +++ b/app/pods/components/forms/strain-form/component.js @@ -0,0 +1,17 @@ +import Ember from 'ember'; + +export default Ember.Component.extend({ + actions: { + save: function() { + // Need to override the string id for some reason + let strain = this.get('strain'); + let id = strain.get('species.id'); + strain.set('species.id', +id); + this.sendAction('save'); + }, + + cancel: function() { + this.sendAction('cancel'); + }, + } +}); diff --git a/app/pods/components/forms/strain-form/template.hbs b/app/pods/components/forms/strain-form/template.hbs new file mode 100644 index 0000000..b2f5582 --- /dev/null +++ b/app/pods/components/forms/strain-form/template.hbs @@ -0,0 +1,61 @@ +
+
+ {{strain.strainName}} +
+
+ + {{input value=strain.strainName}} +
+
+ + {{input type="checkbox" checked=strain.typeStrain}} {{if strain.typeStrain 'Yes' 'No'}} +
+
+
+
+ + {{ + select-2 + content=species + optionLabelPath="speciesName" + value=strain.species + }} +
+
+
+
+ + {{textarea value=strain.isolatedFrom cols="70" rows="5"}} +
+
+
+
+ + {{input value=strain.accessionNumbers}} +
+
+ + {{input value=strain.genbank}} +
+
+ + {{input value=strain.wholeGenomeSequence}} +
+
+
+
+ + {{textarea value=strain.notes cols="70" rows="5"}} +
+
+
+
+
+ + Cancel + +{{#if strain.hasDirtyAttributes}} + + Save + +{{/if}} diff --git a/app/pods/components/measurement-search-panel/component.js b/app/pods/components/measurement-search-panel/component.js deleted file mode 100644 index b9e9749..0000000 --- a/app/pods/components/measurement-search-panel/component.js +++ /dev/null @@ -1,50 +0,0 @@ -import Ember from 'ember'; - -export default Ember.Component.extend({ - classNames: ["grid-1", "gutter-50"], - - setup: function() { - Ember.RSVP.hash({ - species: this.store.findAll('species'), - strains: this.store.findAll('strain'), - characteristicTypes: this.store.findAll('characteristic-type'), - characteristics: this.store.findAll('characteristic'), - }).then((models) => { - // Set up search parameters - // Clean up sort order - let selects = [ - { model: 'species', id: 'id', text: 'speciesNameMU', - children: 'strains', cid: 'id', ctext: 'strainNameMU' }, - { model: 'characteristicTypes', id: 'id', text: 'characteristicTypeName', - children: 'characteristics', cid: 'id', ctext: 'characteristicName' }, - ]; - - selects.forEach((item /*, index, enumerable*/) => { - models[item.model] = models[item.model].filter((i) => { - if (!Ember.isEmpty(i.get(item.children))) { return true; } - }); - models[item.model] = models[item.model].sortBy('sortOrder'); - let temp = models[item.model].map((data) => { - let temp_children = []; - let sorted_children = data.get(item.children).sortBy('sortOrder'); - sorted_children.forEach((child) => { - temp_children.push({id: child.get(item.cid), text: child.get(item.ctext)}); - }); - return { - text: data.get(item.text), - children: temp_children, - }; - }); - this.set(item.model, temp); - }); - }); - }.on('init'), - - actions: { - search: function() { - let strains = this.get('selectedStrains'), - characteristics = this.get('selectedCharacteristics'); - this.sendAction('search', strains, characteristics); - }, - }, -}); diff --git a/app/pods/components/search-button/component.js b/app/pods/components/search-button/component.js deleted file mode 100644 index e37949d..0000000 --- a/app/pods/components/search-button/component.js +++ /dev/null @@ -1,13 +0,0 @@ -import Ember from 'ember'; - -export default Ember.Component.extend({ - isLoading: false, - buttonText: 'Search', - actions: { - showLoading: function() { - if (!this.get('isLoading')) { - this.sendAction('action'); - } - } - } -}); diff --git a/app/pods/components/search-button/template.hbs b/app/pods/components/search-button/template.hbs deleted file mode 100644 index 4bd6134..0000000 --- a/app/pods/components/search-button/template.hbs +++ /dev/null @@ -1,7 +0,0 @@ - - {{#if isLoading}} - LOADING - {{else}} - {{buttonText}} - {{/if}} - diff --git a/app/pods/components/site-logo/component.js b/app/pods/components/site-logo/component.js new file mode 100644 index 0000000..6e705e6 --- /dev/null +++ b/app/pods/components/site-logo/component.js @@ -0,0 +1,3 @@ +import Ember from 'ember'; + +export default Ember.Component.extend({}); diff --git a/app/pods/components/site-logo/template.hbs b/app/pods/components/site-logo/template.hbs index 4219c12..72e4d5d 100644 --- a/app/pods/components/site-logo/template.hbs +++ b/app/pods/components/site-logo/template.hbs @@ -1,3 +1,3 @@ -{{#link-to 'index' class='logo'}} +{{#link-to 'protected.index' class='logo'}}

{{globals.genus}}.info

{{/link-to}} diff --git a/app/pods/components/strain-details/component.js b/app/pods/components/strain-details/component.js deleted file mode 100644 index b483565..0000000 --- a/app/pods/components/strain-details/component.js +++ /dev/null @@ -1,20 +0,0 @@ -import Ember from 'ember'; -import userCanEdit from '../../../utils/user-can-edit'; - -export default Ember.Component.extend({ - classNames: ['grid-1'], - isEditing: false, - - canEdit: function() { - return userCanEdit(this.get('session.currentUser'), this.get('strain.createdBy')); - }.property('session.currentUser', 'strain.createdBy').readOnly(), - - actions: { - save: function() { - this.sendAction('save'); - }, - cancel: function() { - this.sendAction('cancel'); - }, - } -}); diff --git a/app/pods/components/strain-details/template.hbs b/app/pods/components/strain-details/template.hbs deleted file mode 100644 index 4f98ea7..0000000 --- a/app/pods/components/strain-details/template.hbs +++ /dev/null @@ -1,145 +0,0 @@ -
-
- - Strain - {{#if isEditing}} - {{input value=strain.strainName}} - {{else}} - {{strain.strainNameMU}} - {{/if}} - {{display-errors a=strain.errors.strainName}} - - - {{! ROW 1 }} -
-
-
Species
-
- {{#if isEditing}} - {{ - select-2 - content=species - optionLabelPath="speciesName" - value=strain.species - }} - {{else}} - {{#link-to 'species.show' strain.species}} - {{strain.species.speciesName}} - {{/link-to}} - {{/if}} -
-
-
-
Type Strain?
-
- {{#if isEditing}} - {{input type="checkbox" checked=strain.typeStrain}} - {{/if}} - {{if strain.typeStrain 'Yes' 'No'}} - {{display-errors a=strain.errors.typeStrain}} -
-
-
- - {{! ROW 2 }} -
-
-
Accession Numbers
-
- {{#if isEditing}} - {{input value=strain.accessionNumbers}} - {{else}} - {{strain.accessionNumbers}} - {{/if}} - {{display-errors a=strain.errors.accessionNumbers}} -
-
-
-
Genbank
-
- {{#if isEditing}} - {{input value=strain.genbank}} - {{else}} - {{genbank-url genbank=strain.genbank}} - {{/if}} - {{display-errors a=strain.errors.genbank}} -
-
-
-
Whole Genome Sequence
-
- {{#if isEditing}} - {{input value=strain.wholeGenomeSequence}} - {{else}} - {{strain.wholeGenomeSequence}} - {{/if}} - {{display-errors a=strain.errors.wholeGenomeSequence}} -
-
-
- - {{! ROW 3 }} -
-
-
Isolated From
-
- {{#if isEditing}} - {{textarea value=strain.isolatedFrom cols="70" rows="3"}} - {{else}} - {{strain.isolatedFrom}} - {{/if}} - {{display-errors a=strain.errors.isolatedFrom}} -
-
-
- - {{! ROW 4 }} -
-
-
Notes
-
- {{#if isEditing}} - {{textarea value=strain.notes cols="70" rows="3"}} - {{else}} - {{strain.notes}} - {{/if}} - {{display-errors a=strain.errors.notes}} -
-
-
- - {{! ROW 5 }} -
-
-
Record Created
-
{{null-time strain.createdAt 'LL'}}
-
-
-
Record Updated
-
{{null-time strain.updatedAt 'LL'}}
-
-
-
Record Deleted
-
{{null-time strain.deletedAt 'LL'}}
-
-
-
- - {{! ROW 6 }} - {{#if canEdit}} -
-
- {{! Does nothing ATM }} - - {{#if isEditing}}Cancel{{else}}Edit{{/if}} - - {{#if isEditing}} - - Save - - {{/if}} -
-
- {{/if}} -
-
diff --git a/app/pods/components/x-application/component.js b/app/pods/components/x-application/component.js new file mode 100644 index 0000000..27c8d25 --- /dev/null +++ b/app/pods/components/x-application/component.js @@ -0,0 +1,17 @@ +import Ember from 'ember'; + +export default Ember.Component.extend({ + classNames: ["flakes-frame"], + + didInsertElement: function() { + FlakesFrame.init(); + }, + + actions: { + invalidateSession: function() { + this.sendAction('invalidateSession'); + }, + + }, + +}); diff --git a/app/pods/components/x-application/template.hbs b/app/pods/components/x-application/template.hbs new file mode 100644 index 0000000..7fd81aa --- /dev/null +++ b/app/pods/components/x-application/template.hbs @@ -0,0 +1,51 @@ +
+ {{site-logo}} + {{#if session.isAuthenticated}} + +

+ {{session.currentUser.name}}
+ Logout +

+ {{else}} +

+ {{link-to 'Login' 'login'}} +
+ {{link-to 'Sign Up' 'users.new'}} +

+ {{/if}} +
+ +
+
+ {{site-logo}} + + + +
+ +
+ {{#each flashMessages.queue as |flash|}} + {{custom-flash-message flash=flash}} + {{/each}} + {{yield}} +
+
diff --git a/app/pods/login/controller.js b/app/pods/login/controller.js index c622ec8..70eca2b 100644 --- a/app/pods/login/controller.js +++ b/app/pods/login/controller.js @@ -1,5 +1,4 @@ import Ember from 'ember'; -import parseBase64 from '../../utils/parse-base64'; export default Ember.Controller.extend({ actions: { @@ -11,13 +10,7 @@ export default Ember.Controller.extend({ this.set('loading', true); // Manually clean up because there might not be a transition this.get('flashMessages').clearMessages(); - session.authenticate(authenticator, credentials).then(()=>{ - this.set('loading', false); - let t = parseBase64(session.get('secure.token')); - this.store.find('user', t['sub']).then((user) => { - session.set('currentUser', user); - }); - }, (error)=> { + session.authenticate(authenticator, credentials).then(null, (error)=> { this.set('loading', false); this.get('flashMessages').error(error.error); }); diff --git a/app/pods/login/template.hbs b/app/pods/login/template.hbs index c851114..8f07896 100644 --- a/app/pods/login/template.hbs +++ b/app/pods/login/template.hbs @@ -1,6 +1,4 @@ -{{#if loggedIn}} -

You are already logged in!

-{{else}} +{{#x-application invalidateSession="invalidateSession"}} {{#if loading}} {{loading-panel}} {{else}} @@ -11,4 +9,4 @@ {{input class="button-gray" type="submit" value="Log In"}} {{/if}} -{{/if}} +{{/x-application}} diff --git a/app/pods/measurements/controller.js b/app/pods/measurements/controller.js deleted file mode 100644 index f71a66f..0000000 --- a/app/pods/measurements/controller.js +++ /dev/null @@ -1,50 +0,0 @@ -import Ember from 'ember'; -import ColumnDefinition from 'ember-table/models/column-definition'; - -export default Ember.Controller.extend({ - measurements: [], - - measurementsEmpty: function() { - return this.get('measurements').length === 0; - }.property('measurements'), - - tableColumns: Ember.computed(function() { - let strainCol = ColumnDefinition.create({ - savedWidth: 200, - textAlign: 'text-align-left', - headerCellName: 'Strain', - contentPath: 'strain.fullNameMU', - }); - - let charCol = ColumnDefinition.create({ - savedWidth: 200, - textAlign: 'text-align-left', - headerCellName: 'Characteristic', - contentPath: 'characteristic.characteristicName', - }); - - let valCol = ColumnDefinition.create({ - savedWidth: 150, - textAlign: 'text-align-left', - headerCellName: 'Value', - contentPath: 'value', - }); - - return [strainCol, charCol, valCol]; - }), - - tableContent: Ember.computed('measurements', function() { - return this.get('measurements'); - }), - - actions: { - search: function(selectedStrains, selectedCharacteristics) { - this.store.find('measurement', { - strain: selectedStrains, - characteristic: selectedCharacteristics, - }).then((measurements)=>{ - this.set('measurements', measurements); - }); - } - }, -}); diff --git a/app/pods/measurements/template.hbs b/app/pods/measurements/template.hbs deleted file mode 100644 index 6ddf84e..0000000 --- a/app/pods/measurements/template.hbs +++ /dev/null @@ -1,21 +0,0 @@ -

{{genus-name}} Measurements

- -{{measurement-search-panel search='search' strainLabel='All strains' charLabel='All characteristics'}} - -
-
-

Total matching measurements: {{measurements.length}}

-
-
- -{{#if measurementsEmpty}} - No results -{{else}} - {{ - ember-table - columns=tableColumns - content=tableContent - columnMode='fluid' - hasFooter=false - }} -{{/if}} diff --git a/app/pods/about/route.js b/app/pods/protected/about/route.js similarity index 100% rename from app/pods/about/route.js rename to app/pods/protected/about/route.js diff --git a/app/pods/about/template.hbs b/app/pods/protected/about/template.hbs similarity index 100% rename from app/pods/about/template.hbs rename to app/pods/protected/about/template.hbs diff --git a/app/pods/protected/characteristics/controller.js b/app/pods/protected/characteristics/controller.js new file mode 100644 index 0000000..be9f042 --- /dev/null +++ b/app/pods/protected/characteristics/controller.js @@ -0,0 +1,6 @@ +import Ember from 'ember'; + +export default Ember.Controller.extend({ + sortParams: ['characteristicTypeName', 'sortOrder'], + sortedCharacteristics: Ember.computed.sort('model', 'sortParams'), +}); diff --git a/app/pods/species/new/route.js b/app/pods/protected/characteristics/route.js similarity index 80% rename from app/pods/species/new/route.js rename to app/pods/protected/characteristics/route.js index 98741c6..77c7739 100644 --- a/app/pods/species/new/route.js +++ b/app/pods/protected/characteristics/route.js @@ -3,7 +3,7 @@ import AuthenticatedRouteMixin from 'simple-auth/mixins/authenticated-route-mixi export default Ember.Route.extend(AuthenticatedRouteMixin, { model: function() { - return this.store.createRecord('species'); + return this.store.findAll('characteristic'); }, }); diff --git a/app/pods/characteristics/template.hbs b/app/pods/protected/characteristics/template.hbs similarity index 65% rename from app/pods/characteristics/template.hbs rename to app/pods/protected/characteristics/template.hbs index 63f40a4..a599cbd 100644 --- a/app/pods/characteristics/template.hbs +++ b/app/pods/protected/characteristics/template.hbs @@ -1,18 +1,20 @@

{{genus-name}} Characteristics

-

Total characteristics: {{characteristics.length}}

+

Total characteristics: {{model.length}}

+ {{#each sortedCharacteristics as |row|}} - + + {{/each}} diff --git a/app/pods/protected/compare/controller.js b/app/pods/protected/compare/controller.js new file mode 100644 index 0000000..da7295b --- /dev/null +++ b/app/pods/protected/compare/controller.js @@ -0,0 +1,14 @@ +import Ember from 'ember'; + +export default Ember.Controller.extend({ + actions: { + search: function() { + let query = { + strain_ids: this.get('selectedStrains'), + characteristic_ids: this.get('selectedCharacteristics'), + }; + + this.transitionToRoute('protected.compare.results', {queryParams: query}); + } + } +}); diff --git a/app/pods/protected/compare/results/controller.js b/app/pods/protected/compare/results/controller.js new file mode 100644 index 0000000..24fd5e7 --- /dev/null +++ b/app/pods/protected/compare/results/controller.js @@ -0,0 +1,50 @@ +import Ember from 'ember'; + +export default Ember.Controller.extend({ + queryParams: ['strain_ids', 'characteristic_ids'], + + strains: function() { + let strains = []; + let strain_ids = this.get('strain_ids').split(','); + strain_ids.forEach((id) => { + strains.push(this.store.peekRecord('strain', id)); + }) + return strains; + }.property('strain_ids'), + + characteristics: function() { + let characteristics = []; + let characteristic_ids = this.get('characteristic_ids').split(','); + characteristic_ids.forEach((id) => { + characteristics.push(this.store.peekRecord('characteristic', id)); + }) + return characteristics; + }.property('characteristic_ids'), + + // Set up data table matrix + data: function() { + let characteristics = this.get('characteristics'); + let strains = this.get('strains'); + let measurements = this.get('model'); + let data = Ember.A(); + + characteristics.forEach((characteristic) => { + let row = { + characteristic: characteristic.get('characteristicName'), + }; + + strains.forEach((strain) => { + let meas = measurements.filterBy('strain.id', strain.get('id')) + .filterBy('characteristic.id', characteristic.get('id')); + if (!Ember.isEmpty(meas)) { + row[strain.get('id')] = meas[0].get('value'); + } else { + row[strain.get('id')] = ''; + } + }); + data.pushObject(row); + }); + return data; + }.property('characteristics', 'strains'), + +}); diff --git a/app/pods/protected/compare/results/route.js b/app/pods/protected/compare/results/route.js new file mode 100644 index 0000000..757d14d --- /dev/null +++ b/app/pods/protected/compare/results/route.js @@ -0,0 +1,11 @@ +import Ember from 'ember'; + +export default Ember.Route.extend({ + model: function(params) { + let compare = this.controllerFor('protected.compare'); + compare.set('selectedStrains', params.strain_ids); + compare.set('selectedCharacteristics', params.characteristic_ids); + return this.store.query('measurement', params); + }, + +}); diff --git a/app/pods/compare/template.hbs b/app/pods/protected/compare/results/template.hbs similarity index 55% rename from app/pods/compare/template.hbs rename to app/pods/protected/compare/results/template.hbs index a4466f4..dbed78d 100644 --- a/app/pods/compare/template.hbs +++ b/app/pods/protected/compare/results/template.hbs @@ -1,17 +1,3 @@ -

{{genus-name}} - Compare Strains

- -{{ - measurement-search-panel - search='search' - strainLabel='Select one or more strains' - charLabel='Select one or more characteristics' -}} - -{{#if dataEmpty}} -
- Please select one or more strains and one or more characteristics. -
-{{else}}
Name TypeSort Order
{{row.characteristicName}}{{row.characteristicType.characteristicTypeName}}{{row.characteristicTypeName}}{{row.sortOrder}}
@@ -19,7 +5,7 @@ {{#each strains as |strain|}} @@ -38,4 +24,3 @@
Characteristic - {{#link-to 'strains.show' strain.id classBinding="data.typeStrain:type-strain"}} + {{#link-to 'protected.strains.show' strain.id classBinding="data.typeStrain:type-strain"}} {{strain.fullNameMU}} {{/link-to}}
-{{/if}} diff --git a/app/pods/protected/compare/route.js b/app/pods/protected/compare/route.js new file mode 100644 index 0000000..e8a8576 --- /dev/null +++ b/app/pods/protected/compare/route.js @@ -0,0 +1,13 @@ +import Ember from 'ember'; + +export default Ember.Route.extend({ + model: function() { + return this.store.findAll('characteristic'); + }, + + setupController: function(controller, model) { + controller.set('characteristics', this.store.peekAll('characteristic')); + controller.set('strains', this.store.peekAll('strain')); + }, + +}); diff --git a/app/pods/components/measurement-search-panel/template.hbs b/app/pods/protected/compare/template.hbs similarity index 55% rename from app/pods/components/measurement-search-panel/template.hbs rename to app/pods/protected/compare/template.hbs index 0376f8a..f075a52 100644 --- a/app/pods/components/measurement-search-panel/template.hbs +++ b/app/pods/protected/compare/template.hbs @@ -1,3 +1,5 @@ +

{{genus-name}} - Compare Strains

+
@@ -7,10 +9,11 @@ {{ select-2 multiple=true - content=species + content=strains value=selectedStrains optionValuePath="id" - placeholder=strainLabel + optionLabelPath="fullNameMU" + placeholder="Select one or more strains" }}
  • @@ -18,16 +21,21 @@ {{ select-2 multiple=true - content=characteristicTypes + content=characteristics value=selectedCharacteristics optionValuePath="id" - placeholder=charLabel + optionLabelPath="characteristicName" + placeholder="Select one or more characteristics" }}
  • - {{search-button isLoading=isLoading action='search'}} + + Search +
  • + +{{outlet}} diff --git a/app/pods/index/route.js b/app/pods/protected/index/route.js similarity index 61% rename from app/pods/index/route.js rename to app/pods/protected/index/route.js index d38ae27..6fc51ce 100644 --- a/app/pods/index/route.js +++ b/app/pods/protected/index/route.js @@ -2,7 +2,8 @@ import Ember from 'ember'; import AuthenticatedRouteMixin from 'simple-auth/mixins/authenticated-route-mixin'; export default Ember.Route.extend(AuthenticatedRouteMixin, { - beforeModel: function() { - this.transitionTo('compare'); + beforeModel: function(transition) { + this._super(transition); + this.transitionTo('protected.compare'); } }); diff --git a/app/pods/index/template.hbs b/app/pods/protected/index/template.hbs similarity index 100% rename from app/pods/index/template.hbs rename to app/pods/protected/index/template.hbs diff --git a/app/pods/species/show/route.js b/app/pods/protected/measurements/route.js similarity index 100% rename from app/pods/species/show/route.js rename to app/pods/protected/measurements/route.js diff --git a/app/pods/protected/measurements/template.hbs b/app/pods/protected/measurements/template.hbs new file mode 100644 index 0000000..bc4b4ec --- /dev/null +++ b/app/pods/protected/measurements/template.hbs @@ -0,0 +1,3 @@ +

    {{genus-name}} Measurements

    + +Be back soon diff --git a/app/pods/strains/index/route.js b/app/pods/protected/route.js similarity index 52% rename from app/pods/strains/index/route.js rename to app/pods/protected/route.js index 034c403..a665e94 100644 --- a/app/pods/strains/index/route.js +++ b/app/pods/protected/route.js @@ -1,14 +1,12 @@ import Ember from 'ember'; import AuthenticatedRouteMixin from 'simple-auth/mixins/authenticated-route-mixin'; +import parseBase64 from '../../utils/parse-base64'; export default Ember.Route.extend(AuthenticatedRouteMixin, { model: function() { - return Ember.RSVP.hash({ - strains: this.store.findAll('strain'), - }); + let token = this.get('session.secure.token'); + let user = parseBase64(token); + return this.store.find('user', user.sub); }, - setupController: function(controller, model) { - controller.setProperties(model); - }, }); diff --git a/app/pods/protected/species/edit/controller.js b/app/pods/protected/species/edit/controller.js new file mode 100644 index 0000000..d8fae89 --- /dev/null +++ b/app/pods/protected/species/edit/controller.js @@ -0,0 +1,29 @@ +import Ember from 'ember'; + +export default Ember.Controller.extend({ + actions: { + save: function() { + let species = this.get('model'); + + if (species.get('isDirty')) { + species.save().then((species) => { + this.transitionToRoute('protected.species.show', species); + }, (err) => { + this.get('flashMessages').error(err.responseJSON.error); + }); + } else { + this.transitionToRoute('protected.species.show', species); + } + }, + + cancel: function() { + let species = this.get('model'); + + species.get('errors').clear(); + species.rollback(); + + this.transitionToRoute('protected.species.show', species); + }, + + }, +}); diff --git a/app/pods/protected/species/edit/route.js b/app/pods/protected/species/edit/route.js new file mode 100644 index 0000000..6c264c2 --- /dev/null +++ b/app/pods/protected/species/edit/route.js @@ -0,0 +1,11 @@ +import Ember from 'ember'; +import AuthenticatedRouteMixin from 'simple-auth/mixins/authenticated-route-mixin'; + +export default Ember.Route.extend(AuthenticatedRouteMixin, { + afterModel: function(species) { + if (!species.get('canEdit')) { + this.transitionTo('species.show', species.get('id')); + } + }, + +}); diff --git a/app/pods/species/new/template.hbs b/app/pods/protected/species/edit/template.hbs similarity index 100% rename from app/pods/species/new/template.hbs rename to app/pods/protected/species/edit/template.hbs diff --git a/app/pods/protected/species/index/controller.js b/app/pods/protected/species/index/controller.js new file mode 100644 index 0000000..00f9448 --- /dev/null +++ b/app/pods/protected/species/index/controller.js @@ -0,0 +1,11 @@ +import Ember from 'ember'; + +export default Ember.Controller.extend({ + sortParams: ['speciesName', 'strainCount'], + sortedSpecies: Ember.computed.sort('model', 'sortParams'), + + metaData: function() { + return Ember.copy(this.store.metadataFor('species')); + }.property('model.isLoaded').readOnly(), + +}); diff --git a/app/pods/protected/species/index/route.js b/app/pods/protected/species/index/route.js new file mode 100644 index 0000000..8f05241 --- /dev/null +++ b/app/pods/protected/species/index/route.js @@ -0,0 +1,7 @@ +import Ember from 'ember'; + +export default Ember.Route.extend({ + model: function() { + return this.store.findAll('species'); + } +}); diff --git a/app/pods/species/index/template.hbs b/app/pods/protected/species/index/template.hbs similarity index 74% rename from app/pods/species/index/template.hbs rename to app/pods/protected/species/index/template.hbs index 6fc2993..0774bb3 100644 --- a/app/pods/species/index/template.hbs +++ b/app/pods/protected/species/index/template.hbs @@ -1,7 +1,7 @@

    {{genus-name}} Species

    Total species: {{model.length}}

    -{{add-button label="Add Species" link="species.new" canAdd=metaData.canAdd}} +{{add-button label="Add Species" link="protected.species.new" canAdd=metaData.canAdd}} @@ -15,7 +15,7 @@
    - {{#link-to 'species.show' species}} + {{#link-to 'protected.species.show' species}} {{species.speciesName}} {{/link-to}} @@ -23,7 +23,7 @@ {{#each species.strains as |strain index|}} {{if index ","}} - {{#link-to 'strains.show' strain.id}} + {{#link-to 'protected.strains.show' strain.id}} {{{strain.strainNameMU}}} {{/link-to}} {{/each}} diff --git a/app/pods/protected/species/new/controller.js b/app/pods/protected/species/new/controller.js new file mode 100644 index 0000000..dfe5127 --- /dev/null +++ b/app/pods/protected/species/new/controller.js @@ -0,0 +1,25 @@ +import Ember from 'ember'; + +export default Ember.Controller.extend({ + actions: { + save: function() { + let species = this.get('model'); + + if (species.get('isDirty')) { + species.save().then((species) => { + this.transitionToRoute('protected.species.show', species.get('id')); + }, (err) => { + this.get('flashMessages').error(err.responseJSON.error); + }); + } else { + species.deleteRecord(); + this.transitionToRoute('protected.species.index'); + } + }, + + cancel: function() { + this.transitionToRoute('protected.species.index'); + }, + + }, +}); diff --git a/app/pods/protected/species/new/route.js b/app/pods/protected/species/new/route.js new file mode 100644 index 0000000..8c9caf9 --- /dev/null +++ b/app/pods/protected/species/new/route.js @@ -0,0 +1,27 @@ +import Ember from 'ember'; +import AuthenticatedRouteMixin from 'simple-auth/mixins/authenticated-route-mixin'; + +export default Ember.Route.extend(AuthenticatedRouteMixin, { + beforeModel: function(transition) { + this._super(transition); + if (this.get('session.currentUser.role') === 'R') { + this.transitionTo('species.index'); + } + }, + + model: function() { + return this.store.createRecord('species'); + }, + + actions: { + willTransition: function(/*transition*/) { + let controller = this.get('controller'); + let species = controller.get('model'); + + if (species.get('isNew')) { + species.deleteRecord(); + } + }, + }, + +}); diff --git a/app/pods/protected/species/new/template.hbs b/app/pods/protected/species/new/template.hbs new file mode 100644 index 0000000..5c6c82f --- /dev/null +++ b/app/pods/protected/species/new/template.hbs @@ -0,0 +1,6 @@ +{{ + forms/species-form + species=model + save="save" + cancel="cancel" +}} diff --git a/app/pods/protected/species/show/route.js b/app/pods/protected/species/show/route.js new file mode 100644 index 0000000..da42b03 --- /dev/null +++ b/app/pods/protected/species/show/route.js @@ -0,0 +1,9 @@ +import Ember from 'ember'; +import AuthenticatedRouteMixin from 'simple-auth/mixins/authenticated-route-mixin'; + +export default Ember.Route.extend(AuthenticatedRouteMixin, { + model: function(params) { + return this.store.findRecord('species', params.species_id, { reload: true }); + }, + +}); diff --git a/app/pods/species/show/template.hbs b/app/pods/protected/species/show/template.hbs similarity index 64% rename from app/pods/species/show/template.hbs rename to app/pods/protected/species/show/template.hbs index e892234..fac3273 100644 --- a/app/pods/species/show/template.hbs +++ b/app/pods/protected/species/show/template.hbs @@ -6,19 +6,22 @@ {{! ROW 1 }} -
    -
    +
    +
    Strains
    - {{#each model.strains as |strain index|}} - {{if index ","}} - {{#link-to 'strains.show' strain.id}} - {{{strain.strainNameMU}}} - {{/link-to}} - {{/each}} +
      + {{#each model.strains as |strain index|}} +
    • + {{#link-to 'protected.strains.show' strain.id}} + {{{strain.strainNameMU}}} + {{/link-to}} +
    • + {{/each}} +
    -
    +
    Type Species?
    {{if model.typeSpecies 'Yes' 'No'}} @@ -27,8 +30,8 @@
    {{! ROW 2 }} -
    -
    +
    +
    Etymology
    {{model.etymology}} @@ -37,7 +40,7 @@
    {{! ROW 3 }} -
    +
    Record Created
    {{null-time model.createdAt 'LL'}}
    @@ -50,14 +53,13 @@
    Record Deleted
    {{null-time model.deletedAt 'LL'}}
    -
    -{{#if userCanEdit}} +{{#if model.canEdit}}
    - {{#link-to 'species.edit' model class="button-gray smaller"}} + {{#link-to 'protected.species.edit' model class="button-gray smaller"}} Edit {{/link-to}} {{/if}} diff --git a/app/pods/protected/strains/edit/controller.js b/app/pods/protected/strains/edit/controller.js new file mode 100644 index 0000000..0b26876 --- /dev/null +++ b/app/pods/protected/strains/edit/controller.js @@ -0,0 +1,30 @@ +import Ember from 'ember'; + +export default Ember.Controller.extend({ + actions: { + save: function() { + let strain = this.get('strain'); + + if (strain.get('isDirty')) { + strain.save().then((strain) => { + this.transitionToRoute('protected.strains.show', strain); + }, (err) => { + this.get('flashMessages').error(err.responseJSON.error); + }); + } else { + strain.deleteRecord(); + this.transitionToRoute('protected.strains.show', strain); + } + }, + + cancel: function() { + let strain = this.get('protected.strain'); + + strain.get('errors').clear(); + strain.rollback(); + + this.transitionToRoute('protected.strains.show', strain); + }, + + }, +}); diff --git a/app/pods/strains/show/route.js b/app/pods/protected/strains/edit/route.js similarity index 64% rename from app/pods/strains/show/route.js rename to app/pods/protected/strains/edit/route.js index 6a5555b..94a7710 100644 --- a/app/pods/strains/show/route.js +++ b/app/pods/protected/strains/edit/route.js @@ -5,10 +5,18 @@ export default Ember.Route.extend(AuthenticatedRouteMixin, { model: function(params) { return Ember.RSVP.hash({ strain: this.store.find('strain', params.strain_id), - species: this.store.findAll('species') + species: this.store.findAll('species'), // Need for dropdown }); }, + + afterModel: function(models) { + if (!models.strain.get('canEdit')) { + this.transitionTo('strains.show', models.strain.get('id')); + } + }, + setupController: function(controller, models) { controller.setProperties(models); }, + }); diff --git a/app/pods/strains/new/template.hbs b/app/pods/protected/strains/edit/template.hbs similarity index 67% rename from app/pods/strains/new/template.hbs rename to app/pods/protected/strains/edit/template.hbs index bd22b30..e15fec0 100644 --- a/app/pods/strains/new/template.hbs +++ b/app/pods/protected/strains/edit/template.hbs @@ -1,8 +1,7 @@ {{ - strain-details + forms/strain-form strain=strain species=species - isEditing=true save="save" cancel="cancel" }} diff --git a/app/pods/protected/strains/index/controller.js b/app/pods/protected/strains/index/controller.js new file mode 100644 index 0000000..07954e7 --- /dev/null +++ b/app/pods/protected/strains/index/controller.js @@ -0,0 +1,11 @@ +import Ember from 'ember'; + +export default Ember.Controller.extend({ + sortParams: ['fullNameMU', 'totalMeasurements'], + sortedStrains: Ember.computed.sort('model', 'sortParams'), + + metaData: function() { + return Ember.copy(this.store.metadataFor('strain')); + }.property('model.isLoaded').readOnly(), + +}); diff --git a/app/pods/measurements/route.js b/app/pods/protected/strains/index/route.js similarity index 81% rename from app/pods/measurements/route.js rename to app/pods/protected/strains/index/route.js index 4219aea..9456dfc 100644 --- a/app/pods/measurements/route.js +++ b/app/pods/protected/strains/index/route.js @@ -3,6 +3,6 @@ import AuthenticatedRouteMixin from 'simple-auth/mixins/authenticated-route-mixi export default Ember.Route.extend(AuthenticatedRouteMixin, { model: function() { - return this.store.findAll('measurement'); + return this.store.findAll('strain'); }, }); diff --git a/app/pods/strains/index/template.hbs b/app/pods/protected/strains/index/template.hbs similarity index 64% rename from app/pods/strains/index/template.hbs rename to app/pods/protected/strains/index/template.hbs index 9ac0600..2d40098 100644 --- a/app/pods/strains/index/template.hbs +++ b/app/pods/protected/strains/index/template.hbs @@ -1,7 +1,7 @@

    {{genus-name}} Strains

    -

    Total strains: {{strains.length}}

    +

    Total strains: {{model.length}}

    -{{add-button label="Add Strain" link="strains.new"}} +{{add-button label="Add Strain" link="protected.strains.new" canAdd=metaData.canAdd}} @@ -14,7 +14,7 @@ {{#each sortedStrains as |row|}} diff --git a/app/pods/protected/strains/new/controller.js b/app/pods/protected/strains/new/controller.js new file mode 100644 index 0000000..3041572 --- /dev/null +++ b/app/pods/protected/strains/new/controller.js @@ -0,0 +1,24 @@ +import Ember from 'ember'; + +export default Ember.Controller.extend({ + actions: { + save: function() { + let strain = this.get('strain'); + + if (strain.get('isDirty')) { + strain.save().then((strain) => { + this.transitionToRoute('protected.strains.show', strain); + }, (err) => { + this.get('flashMessages').error(err.responseJSON.error); + }); + } else { + this.transitionToRoute('protected.strains.index'); + } + }, + + cancel: function() { + this.transitionToRoute('protected.strains.index'); + }, + + }, +}); diff --git a/app/pods/protected/strains/new/route.js b/app/pods/protected/strains/new/route.js new file mode 100644 index 0000000..cb601a3 --- /dev/null +++ b/app/pods/protected/strains/new/route.js @@ -0,0 +1,34 @@ +import Ember from 'ember'; +import AuthenticatedRouteMixin from 'simple-auth/mixins/authenticated-route-mixin'; + +export default Ember.Route.extend(AuthenticatedRouteMixin, { + beforeModel: function(transition) { + this._super(transition); + if (this.get('session.currentUser.role') === 'R') { + this.transitionTo('strains.index'); + } + }, + + model: function() { + return Ember.RSVP.hash({ + strain: this.store.createRecord('strain'), + species: this.store.findAll('species'), // Need for dropdown + }); + }, + + setupController: function(controller, models) { + controller.setProperties(models); + }, + + actions: { + willTransition: function(/*transition*/) { + let controller = this.get('controller'); + let strain = controller.get('strain'); + + if (strain.get('isNew')) { + strain.deleteRecord(); + } + }, + }, + +}); diff --git a/app/pods/strains/show/template.hbs b/app/pods/protected/strains/new/template.hbs similarity index 64% rename from app/pods/strains/show/template.hbs rename to app/pods/protected/strains/new/template.hbs index 16a7df0..e15fec0 100644 --- a/app/pods/strains/show/template.hbs +++ b/app/pods/protected/strains/new/template.hbs @@ -1,8 +1,7 @@ {{ - strain-details + forms/strain-form strain=strain species=species - isEditing=isEditing save="save" cancel="cancel" }} diff --git a/app/pods/protected/strains/show/route.js b/app/pods/protected/strains/show/route.js new file mode 100644 index 0000000..4c9634b --- /dev/null +++ b/app/pods/protected/strains/show/route.js @@ -0,0 +1,9 @@ +import Ember from 'ember'; +import AuthenticatedRouteMixin from 'simple-auth/mixins/authenticated-route-mixin'; + +export default Ember.Route.extend(AuthenticatedRouteMixin, { + model: function(params) { + return this.store.findRecord('strain', params.strain_id, { reload: true }); + }, + +}); diff --git a/app/pods/protected/strains/show/template.hbs b/app/pods/protected/strains/show/template.hbs new file mode 100644 index 0000000..1ba5fe6 --- /dev/null +++ b/app/pods/protected/strains/show/template.hbs @@ -0,0 +1,89 @@ +
    +
    + + Strain {{model.strainNameMU}} + + + {{! ROW 1 }} +
    +
    +
    Species
    +
    + {{#link-to 'protected.species.show' model.species.id}} + {{model.species.speciesNameMU}} + {{/link-to}} +
    +
    +
    +
    Type Strain?
    +
    + {{if model.typeStrain 'Yes' 'No'}} +
    +
    +
    + + {{! ROW 2 }} +
    +
    +
    Accession Numbers
    +
    + {{model.accessionNumbers}} +
    +
    +
    +
    Genbank
    +
    + {{genbank-url genbank=model.genbank}} +
    +
    +
    +
    Whole Genome Sequence
    +
    + {{model.wholeGenomeSequence}} +
    +
    +
    + + {{! ROW 3 }} +
    +
    +
    Isolated From
    +
    + {{model.isolatedFrom}} +
    +
    +
    + + {{! ROW 4 }} +
    +
    +
    Notes
    +
    + {{model.notes}} +
    +
    +
    + + {{! ROW 5 }} +
    +
    +
    Record Created
    +
    {{null-time model.createdAt 'LL'}}
    +
    +
    +
    Record Updated
    +
    {{null-time model.updatedAt 'LL'}}
    +
    +
    +
    Record Deleted
    +
    {{null-time model.deletedAt 'LL'}}
    +
    +
    +
    +
    +{{#if model.canEdit}} +
    + {{#link-to 'protected.strains.edit' model.id class="button-gray smaller"}} + Edit + {{/link-to}} +{{/if}} diff --git a/app/pods/protected/template.hbs b/app/pods/protected/template.hbs new file mode 100644 index 0000000..dd9b46a --- /dev/null +++ b/app/pods/protected/template.hbs @@ -0,0 +1,3 @@ +{{#x-application invalidateSession="invalidateSession"}} + {{outlet}} +{{/x-application}} diff --git a/app/pods/strains/index/controller.js b/app/pods/strains/index/controller.js deleted file mode 100644 index 25e4db1..0000000 --- a/app/pods/strains/index/controller.js +++ /dev/null @@ -1,6 +0,0 @@ -import Ember from 'ember'; - -export default Ember.Controller.extend({ - sortParams: ['fullNameMU', 'totalMeasurements'], - sortedStrains: Ember.computed.sort('strains', 'sortParams'), -}); diff --git a/app/pods/strains/new/controller.js b/app/pods/strains/new/controller.js deleted file mode 100644 index 1bd3e90..0000000 --- a/app/pods/strains/new/controller.js +++ /dev/null @@ -1,21 +0,0 @@ -import Ember from 'ember'; - -export default Ember.Controller.extend({ - isEditing: true, - actions: { - save: function() { - var strain = this.get('strain'); - if (strain.get('isDirty')) { - strain.save(); - } - this.transitionToRoute('strains.index'); - }, - cancel: function() { - var strain = this.get('strain'); - if (strain.get('isNew')) { - strain.deleteRecord(); - } - this.transitionToRoute('strains.index'); - } - } -}); diff --git a/app/pods/strains/new/route.js b/app/pods/strains/new/route.js deleted file mode 100644 index 318dad2..0000000 --- a/app/pods/strains/new/route.js +++ /dev/null @@ -1,14 +0,0 @@ -import Ember from 'ember'; -import AuthenticatedRouteMixin from 'simple-auth/mixins/authenticated-route-mixin'; - -export default Ember.Route.extend(AuthenticatedRouteMixin, { - model: function() { - return Ember.RSVP.hash({ - strain: this.store.createRecord('strain'), - species: this.store.findAll('species') - }); - }, - setupController: function(controller, models) { - controller.setProperties(models); - }, -}); diff --git a/app/pods/strains/show/controller.js b/app/pods/strains/show/controller.js deleted file mode 100644 index 1055631..0000000 --- a/app/pods/strains/show/controller.js +++ /dev/null @@ -1,19 +0,0 @@ -import Ember from 'ember'; - -export default Ember.Controller.extend({ - isEditing: false, - actions: { - save: function() { - var strain = this.get('strain'); - if (strain.get('isDirty')) { - strain.save(); - } - this.toggleProperty('isEditing'); - }, - cancel: function() { - this.get('strain').get('errors').clear(); - this.get('strain').rollback(); - this.toggleProperty('isEditing'); - } - } -}); diff --git a/app/pods/users/template.hbs b/app/pods/users/template.hbs new file mode 100644 index 0000000..dd9b46a --- /dev/null +++ b/app/pods/users/template.hbs @@ -0,0 +1,3 @@ +{{#x-application invalidateSession="invalidateSession"}} + {{outlet}} +{{/x-application}} diff --git a/app/router.js b/app/router.js index 6f43b21..5fb53e3 100644 --- a/app/router.js +++ b/app/router.js @@ -7,20 +7,7 @@ var Router = Ember.Router.extend({ Router.map(function() { this.route('login'); - this.route('about'); - this.route('characteristics'); - this.route('measurements'); - this.route('compare'); - this.route('species', function() { - this.route('new'); - this.route('show', { path: ':species_id' }); - this.route('edit', { path: ':species_id/edit' }); - }); - this.route('strains', function() { - this.route('new'); - this.route('show', { path: ':strain_id' }); - }); this.route('users', function() { this.route('new', function() { this.route('fail'); @@ -28,6 +15,30 @@ Router.map(function() { this.route('verify', { path: ':nonce' }); }); }); + + this.route('protected', { path: '/' }, function() { + this.route('about'); + this.route('characteristics'); + this.route('measurements'); + + this.route('compare', function() { + this.route('results'); + }); + + this.route('species', function() { + this.route('new'); + this.route('show', { path: ':species_id' }); + this.route('edit', { path: ':species_id/edit' }); + }); + + this.route('strains', function() { + this.route('new'); + this.route('show', { path: ':strain_id' }); + this.route('edit', { path: ':strain_id/edit' }); + }); + + }); + }); export default Router; diff --git a/app/serializers/strain.js b/app/serializers/strain.js new file mode 100644 index 0000000..ddadf39 --- /dev/null +++ b/app/serializers/strain.js @@ -0,0 +1,14 @@ +import DS from 'ember-data'; +import Ember from 'ember'; + +export default DS.RESTSerializer.extend({ + isNewSerializerAPI: true, + + serializeBelongsTo: function(snapshot, json, relationship) { + var key = relationship.key; + var belongsTo = snapshot.belongsTo(key); + key = this.keyForRelationship ? this.keyForRelationship(key, "belongsTo", "serialize") : key; + json[key] = Ember.isNone(belongsTo) ? belongsTo : +belongsTo.record.id; + } + +}); diff --git a/app/utils/user-can-add.js b/app/utils/user-can-add.js deleted file mode 100644 index 68a135b..0000000 --- a/app/utils/user-can-add.js +++ /dev/null @@ -1,3 +0,0 @@ -export default function userCanAdd(role) { - return (role === 'W') || (role === 'A'); -} diff --git a/app/utils/user-can-edit.js b/app/utils/user-can-edit.js deleted file mode 100644 index 20146d5..0000000 --- a/app/utils/user-can-edit.js +++ /dev/null @@ -1,5 +0,0 @@ -export default function userCanEdit(currentUser, author) { - let id = currentUser.id; - let role = currentUser.role; - return (role === 'W' && (+id === author)) || (role === 'A'); -} diff --git a/bower.json b/bower.json index f163a83..14bce88 100644 --- a/bower.json +++ b/bower.json @@ -2,14 +2,14 @@ "name": "clostridiumdotinfo", "dependencies": { "jquery": "~2.1.1", - "ember": "1.12.0", + "ember": "1.13.3", "ember-cli-shims": "ember-cli/ember-cli-shims#0.0.3", "ember-cli-test-loader": "ember-cli-test-loader#0.1.3", - "ember-data": "1.0.0-beta.18", - "ember-load-initializers": "ember-cli/ember-load-initializers#0.1.4", - "ember-qunit": "0.3.3", + "ember-data": "1.13.5", + "ember-load-initializers": "ember-cli/ember-load-initializers#0.1.5", + "ember-qunit": "0.4.1", "ember-qunit-notifications": "0.0.7", - "ember-resolver": "~0.1.15", + "ember-resolver": "~0.1.18", "loader.js": "ember-cli/loader.js#3.2.0", "qunit": "~1.17.1", "flakes": "~1.0.0", diff --git a/config/environment.js b/config/environment.js index 21b348a..5b6edc6 100644 --- a/config/environment.js +++ b/config/environment.js @@ -16,8 +16,10 @@ module.exports = function(environment) { }, podModulePrefix: 'clostridiumdotinfo/pods', 'simple-auth': { + session: 'session:custom', authorizer: 'simple-auth-authorizer:token', store: 'simple-auth-session-store:local-storage', + routeAfterAuthentication: 'protected.index', }, 'simple-auth-token': { identificationField: 'email', diff --git a/ember-cli-build.js b/ember-cli-build.js new file mode 100644 index 0000000..8c5e8c0 --- /dev/null +++ b/ember-cli-build.js @@ -0,0 +1,24 @@ +/* global require, module */ +var EmberApp = require('ember-cli/lib/broccoli/ember-app'); + +module.exports = function(defaults) { + var app = new EmberApp(defaults, { + // Add options here + }); + + // STYLES ////////////////////////////////////////////////////////////////////// + // flakes (and deps) + app.import('bower_components/flakes/css/all.css'); + app.import('bower_components/gridforms/gridforms/gridforms.css'); + + // LIBS //////////////////////////////////////////////////////////////////////// + // flakes (and deps) + app.import('bower_components/snapjs/snap.js'); + app.import('bower_components/responsive-elements/responsive-elements.js'); + app.import('bower_components/gridforms/gridforms/gridforms.js'); + app.import('bower_components/flakes/js/base.js'); + // moment + app.import('bower_components/moment/moment.js'); + + return app.toTree(); +}; diff --git a/package.json b/package.json index dd728ff..63ee6f7 100644 --- a/package.json +++ b/package.json @@ -20,25 +20,25 @@ "license": "MIT", "devDependencies": { "broccoli-asset-rev": "^2.0.2", - "ember-cli": "0.2.7", - "ember-cli-app-version": "0.3.3", + "ember-cli": "1.13.1", + "ember-cli-app-version": "0.4.0", "ember-cli-babel": "^5.0.0", "ember-cli-content-security-policy": "0.4.0", "ember-cli-dependency-checker": "^1.0.0", "ember-cli-divshot": "^0.1.7", "ember-cli-flash": "1.1.4", - "ember-cli-htmlbars": "0.7.6", - "ember-cli-ic-ajax": "0.1.1", + "ember-cli-htmlbars": "0.7.9", + "ember-cli-htmlbars-inline-precompile": "^0.1.1", + "ember-cli-ic-ajax": "0.2.1", "ember-cli-inject-live-reload": "^1.3.0", - "ember-cli-qunit": "0.3.13", + "ember-cli-qunit": "0.3.15", "ember-cli-simple-auth": "^0.8.0", "ember-cli-simple-auth-token": "^0.7.2", + "ember-cli-release": "0.2.3", "ember-cli-uglify": "^1.0.1", - "ember-data": "1.0.0-beta.18", + "ember-data": "1.13.5", "ember-disable-proxy-controllers": "^1.0.0", "ember-export-application-global": "^1.0.2", - "ember-select-2": "1.3.0", - "ember-table": "0.5.0", - "glob": "^4.5.3" + "ember-select-2": "1.3.0" } } diff --git a/tests/.jshintrc b/tests/.jshintrc index ea8b88f..6ec0b7c 100644 --- a/tests/.jshintrc +++ b/tests/.jshintrc @@ -26,7 +26,7 @@ "node": false, "browser": false, "boss": true, - "curly": false, + "curly": true, "debug": false, "devel": false, "eqeqeq": true, @@ -47,5 +47,6 @@ "strict": false, "white": false, "eqnull": true, - "esnext": true + "esnext": true, + "unused": true } diff --git a/tests/helpers/start-app.js b/tests/helpers/start-app.js index 16cc7c3..0f7aab1 100644 --- a/tests/helpers/start-app.js +++ b/tests/helpers/start-app.js @@ -1,6 +1,5 @@ import Ember from 'ember'; import Application from '../../app'; -import Router from '../../router'; import config from '../../config/environment'; export default function startApp(attrs) { diff --git a/tests/unit/utils/user-can-add-test.js b/tests/unit/utils/user-can-add-test.js deleted file mode 100644 index d94174e..0000000 --- a/tests/unit/utils/user-can-add-test.js +++ /dev/null @@ -1,10 +0,0 @@ -import userCanAdd from '../../../utils/user-can-add'; -import { module, test } from 'qunit'; - -module('Unit | Utility | user can add'); - -// Replace this with your real tests. -test('it works', function(assert) { - var result = userCanAdd(); - assert.ok(result); -}); diff --git a/tests/unit/utils/user-can-edit-test.js b/tests/unit/utils/user-can-edit-test.js deleted file mode 100644 index a14b4da..0000000 --- a/tests/unit/utils/user-can-edit-test.js +++ /dev/null @@ -1,10 +0,0 @@ -import userCanEdit from '../../../utils/user-can-edit'; -import { module, test } from 'qunit'; - -module('Unit | Utility | user can edit'); - -// Replace this with your real tests. -test('it works', function(assert) { - var result = userCanEdit(); - assert.ok(result); -});
    - {{#link-to 'strains.show' row.id classBinding="data.typeStrain:type-strain"}} + {{#link-to 'protected.strains.show' row.id classBinding="data.typeStrain:type-strain"}} {{row.fullNameMU}} {{/link-to}}