2018-05-22 15:03:45 +00:00
|
|
|
import { inject as service } from '@ember/service';
|
2020-11-09 09:25:35 +00:00
|
|
|
import Route from 'consul-ui/routing/route';
|
2018-05-22 15:03:45 +00:00
|
|
|
|
2020-11-09 09:25:35 +00:00
|
|
|
export default class EditRoute extends Route {
|
2021-01-04 17:22:10 +00:00
|
|
|
@service('repository/intention') repo;
|
|
|
|
@service('env') env;
|
2020-11-09 09:25:35 +00:00
|
|
|
|
2021-05-26 16:43:46 +00:00
|
|
|
async model(params, transition) {
|
2019-12-17 18:47:37 +00:00
|
|
|
const dc = this.modelFor('dc').dc.Name;
|
2021-05-26 16:43:46 +00:00
|
|
|
const nspace = this.optionalParams().nspace;
|
2021-01-04 17:22:10 +00:00
|
|
|
|
|
|
|
let item;
|
2021-05-26 16:43:46 +00:00
|
|
|
if (typeof params.intention_id !== 'undefined') {
|
2021-02-23 08:56:42 +00:00
|
|
|
item = await this.repo.findBySlug({
|
|
|
|
ns: nspace,
|
|
|
|
dc: dc,
|
2021-05-26 16:43:46 +00:00
|
|
|
id: params.intention_id,
|
2021-02-23 08:56:42 +00:00
|
|
|
});
|
2021-01-04 17:22:10 +00:00
|
|
|
} else {
|
|
|
|
const defaultNspace = this.env.var('CONSUL_NSPACES_ENABLED') ? '*' : 'default';
|
|
|
|
item = await this.repo.create({
|
|
|
|
SourceNS: nspace || defaultNspace,
|
|
|
|
DestinationNS: nspace || defaultNspace,
|
|
|
|
Datacenter: dc,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
return {
|
|
|
|
dc,
|
|
|
|
nspace,
|
|
|
|
item,
|
|
|
|
};
|
2020-11-09 09:25:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
setupController(controller, model) {
|
|
|
|
super.setupController(...arguments);
|
2018-05-22 15:03:45 +00:00
|
|
|
controller.setProperties(model);
|
2020-11-09 09:25:35 +00:00
|
|
|
}
|
|
|
|
}
|