open-consul/ui-v2/app/routes/dc/intentions/create.js
John Cowen 96ea5b799a WIP: First draft intentions
1. Listing, filtering by action and searching by source name and
destination name
2. Edit/Create page, edits ping the API double fine, need to work through
creates and deletes
3. Currently uses a `Precedence` intention keyname that doesn't yet
exist in the real API
2018-06-25 12:25:14 -07:00

34 lines
971 B
JavaScript

import Route from '@ember/routing/route';
import { inject as service } from '@ember/service';
import { hash } from 'rsvp';
import { get, set } from '@ember/object';
import WithIntentionActions from 'consul-ui/mixins/intention/with-actions';
export default Route.extend(WithIntentionActions, {
templateName: 'dc/intentions/edit',
repo: service('intentions'),
beforeModel: function() {
get(this, 'repo').invalidate();
},
model: function(params) {
this.item = get(this, 'repo').create();
set(this.item, 'Datacenter', this.modelFor('dc').dc.Name);
return hash({
create: true,
isLoading: false,
item: this.item,
types: ['consul', 'externaluri'],
intents: ['allow', 'deny'],
});
},
setupController: function(controller, model) {
this._super(...arguments);
controller.setProperties(model);
},
deactivate: function() {
if (get(this.item, 'isNew')) {
this.item.destroyRecord();
}
},
});