48 lines
1.2 KiB
JavaScript
48 lines
1.2 KiB
JavaScript
import Route from '@ember/routing/route';
|
|
import { inject as service } from '@ember/service';
|
|
import { hash } from 'rsvp';
|
|
import { get } from '@ember/object';
|
|
|
|
import WithFeedback from 'consul-ui/mixins/with-feedback';
|
|
export default Route.extend(WithFeedback, {
|
|
dcRepo: service('dc'),
|
|
repo: service('settings'),
|
|
model: function(params) {
|
|
return hash({
|
|
item: get(this, 'repo').findAll(),
|
|
dcs: get(this, 'dcRepo').findAll(),
|
|
}).then(model => {
|
|
return hash({
|
|
...model,
|
|
...{
|
|
dc: get(this, 'dcRepo').getActive(null, model.dcs),
|
|
},
|
|
});
|
|
});
|
|
},
|
|
setupController: function(controller, model) {
|
|
this._super(...arguments);
|
|
controller.setProperties(model);
|
|
},
|
|
actions: {
|
|
update: function(item) {
|
|
get(this, 'feedback').execute(
|
|
() => {
|
|
return get(this, 'repo').persist(item);
|
|
},
|
|
`Your settings were saved.`,
|
|
`There was an error saving your settings.`
|
|
);
|
|
},
|
|
delete: function(key) {
|
|
get(this, 'feedback').execute(
|
|
() => {
|
|
return get(this, 'repo').remove(key);
|
|
},
|
|
`You settings have been reset.`,
|
|
`There was an error resetting your settings.`
|
|
);
|
|
},
|
|
},
|
|
});
|