Working on deprecations

This commit is contained in:
Matthew Dillon 2015-07-15 15:49:44 -08:00
parent e91a283680
commit 7696b7008f
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');
if (!Ember.isEmpty(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;
}.property('secure.token'),

View file

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

View file

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

View file

@ -3,9 +3,4 @@ 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(),
});

View file

@ -3,5 +3,11 @@ import Ember from 'ember';
export default Ember.Route.extend({
model: function() {
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() {
let species = this.get('model');
if (species.get('isDirty')) {
if (species.get('hasDirtyAttributes')) {
species.save().then((species) => {
this.transitionToRoute('protected.species.show', species.get('id'));
}, (err) => {

View file

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

View file

@ -3,9 +3,4 @@ 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(),
});

View file

@ -4,4 +4,10 @@ export default Ember.Route.extend({
model: function() {
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|}}
<tr>
<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}}
{{/link-to}}
</td>

View file

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

View file

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