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 @@ -
- -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 @@ -Name | Type | +Sort Order | |
---|---|---|---|
{{row.characteristicName}} | -{{row.characteristicType.characteristicTypeName}} | +{{row.characteristicTypeName}} | +{{row.sortOrder}} |
Characteristic | {{#each strains as |strain|}}- {{#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}} | @@ -38,4 +24,3 @@
---|
- {{#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 }}
-
-
+
{{! ROW 2 }}
-
-
-{{#if userCanEdit}}
+{{#if model.canEdit}}
+
{{! ROW 3 }}
-
+
- {{#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}}
|