open-consul/ui-v2/app/services/repository/dc.js
John Cowen a7228cf83d
ui: Move repo services to repository/ folder and standardize naming (#4694)
Repositories are a class of services to help with CRUD actions, most of
the functionality is reused across various Models. This creates a new
repository service that centralizes all this reused functionality.
Inheritance via ember `Service.extend` is used as opposed to
decorating via Mixins.

1. Move all repository services (and their tests) to a
services/repository folder
2. Standardize on a singular name format 'node vs nodes'
3. Create a new 'repository' service to centralize functionality. This
should be extended by 'repository' services
2018-10-26 17:36:15 +01:00

49 lines
1.4 KiB
JavaScript

import RepositoryService from 'consul-ui/services/repository';
import { inject as service } from '@ember/service';
import { get } from '@ember/object';
import Error from '@ember/error';
const modelName = 'dc';
export default RepositoryService.extend({
settings: service('settings'),
getModelName: function() {
return modelName;
},
findAll: function() {
return get(this, 'store')
.findAll(this.getModelName())
.then(function(items) {
return items.sortBy('Name');
});
},
findBySlug: function(name, items) {
if (name != null) {
const item = items.findBy('Name', name);
if (item) {
return get(this, 'settings')
.persist({ dc: get(item, 'Name') })
.then(function() {
// TODO: create a model
return { Name: get(item, 'Name') };
});
}
}
const e = new Error();
e.status = '404';
e.detail = 'Page not found';
return Promise.reject({ errors: [e] });
},
getActive: function(name, items) {
const settings = get(this, 'settings');
return Promise.all([name || settings.findBySlug('dc'), items || this.findAll()]).then(
([name, items]) => {
return this.findBySlug(name, items).catch(function() {
const item = get(items, 'firstObject');
settings.persist({ dc: get(item, 'Name') });
return item;
});
}
);
},
});