Merge branch 'master' into clostridium

* master:
  Working on deprecations
This commit is contained in:
Matthew Dillon 2015-07-15 15:51:54 -08:00
commit cbac28e040
12 changed files with 29 additions and 18 deletions

View file

@ -7,7 +7,7 @@ var CustomSession = Session.extend({
let token = this.get('secure.token'); let token = this.get('secure.token');
if (!Ember.isEmpty(token)) { if (!Ember.isEmpty(token)) {
let t = parseBase64(token); let t = parseBase64(token);
return this.container.lookup('store:main').find('user', t['sub']); return this.container.lookup('service:store').find('user', t['sub']);
} }
return null; return null;
}.property('secure.token'), }.property('secure.token'),

View file

@ -29,4 +29,13 @@ export default DS.RESTAdapter.extend({
return error; return error;
} }
}, },
shouldReloadAll: function() {
return true;
},
shouldBackgroundReloadRecord: function() {
return false;
}
}); });

View file

@ -5,7 +5,7 @@ export default Ember.Controller.extend({
save: function() { save: function() {
let species = this.get('model'); let species = this.get('model');
if (species.get('isDirty')) { if (species.get('hasDirtyAttributes')) {
species.save().then((species) => { species.save().then((species) => {
this.transitionToRoute('protected.species.show', species); this.transitionToRoute('protected.species.show', species);
}, (err) => { }, (err) => {

View file

@ -3,9 +3,4 @@ import Ember from 'ember';
export default Ember.Controller.extend({ export default Ember.Controller.extend({
sortParams: ['speciesName', 'strainCount'], sortParams: ['speciesName', 'strainCount'],
sortedSpecies: Ember.computed.sort('model', 'sortParams'), sortedSpecies: Ember.computed.sort('model', 'sortParams'),
metaData: function() {
return Ember.copy(this.store.metadataFor('species'));
}.property('model.isLoaded').readOnly(),
}); });

View file

@ -3,5 +3,11 @@ import Ember from 'ember';
export default Ember.Route.extend({ export default Ember.Route.extend({
model: function() { model: function() {
return this.store.findAll('species'); return this.store.findAll('species');
} },
setupController: function(controller, model) {
controller.set('model', model);
controller.set('metaData', this.store.metadataFor('species'));
},
}); });

View file

@ -5,7 +5,7 @@ export default Ember.Controller.extend({
save: function() { save: function() {
let species = this.get('model'); let species = this.get('model');
if (species.get('isDirty')) { if (species.get('hasDirtyAttributes')) {
species.save().then((species) => { species.save().then((species) => {
this.transitionToRoute('protected.species.show', species.get('id')); this.transitionToRoute('protected.species.show', species.get('id'));
}, (err) => { }, (err) => {

View file

@ -5,7 +5,7 @@ export default Ember.Controller.extend({
save: function() { save: function() {
let strain = this.get('strain'); let strain = this.get('strain');
if (strain.get('isDirty')) { if (strain.get('hasDirtyAttributes')) {
strain.save().then((strain) => { strain.save().then((strain) => {
this.transitionToRoute('protected.strains.show', strain); this.transitionToRoute('protected.strains.show', strain);
}, (err) => { }, (err) => {

View file

@ -3,9 +3,4 @@ import Ember from 'ember';
export default Ember.Controller.extend({ export default Ember.Controller.extend({
sortParams: ['fullNameMU', 'totalMeasurements'], sortParams: ['fullNameMU', 'totalMeasurements'],
sortedStrains: Ember.computed.sort('model', 'sortParams'), sortedStrains: Ember.computed.sort('model', 'sortParams'),
metaData: function() {
return Ember.copy(this.store.metadataFor('strain'));
}.property('model.isLoaded').readOnly(),
}); });

View file

@ -4,4 +4,10 @@ export default Ember.Route.extend({
model: function() { model: function() {
return this.store.findAll('strain'); return this.store.findAll('strain');
}, },
setupController: function(controller, model) {
controller.set('model', model);
controller.set('metaData', this.store.metadataFor('strain'));
},
}); });

View file

@ -14,7 +14,7 @@
{{#each sortedStrains as |row|}} {{#each sortedStrains as |row|}}
<tr> <tr>
<td> <td>
{{#link-to 'protected.strains.show' row.id classBinding="data.typeStrain:type-strain"}} {{#link-to 'protected.strains.show' row classBinding="data.typeStrain:type-strain"}}
{{row.fullNameMU}} {{row.fullNameMU}}
{{/link-to}} {{/link-to}}
</td> </td>

View file

@ -5,7 +5,7 @@ export default Ember.Controller.extend({
save: function() { save: function() {
let strain = this.get('strain'); let strain = this.get('strain');
if (strain.get('isDirty')) { if (strain.get('hasDirtyAttributes')) {
strain.save().then((strain) => { strain.save().then((strain) => {
this.transitionToRoute('protected.strains.show', strain); this.transitionToRoute('protected.strains.show', strain);
}, (err) => { }, (err) => {

View file

@ -15,7 +15,7 @@ export default Ember.Component.extend({
return; return;
} }
if (user.get('isDirty')) { if (user.get('hasDirtyAttributes')) {
user.save().then(() => { user.save().then(() => {
this.sendAction(); this.sendAction();
}).catch(() => { }).catch(() => {