open-consul/ui-v2/app/controllers/dc/intentions/edit.js

63 lines
2.0 KiB
JavaScript
Raw Normal View History

import Controller from '@ember/controller';
import { get, set } from '@ember/object';
2018-06-06 11:00:25 +00:00
import Changeset from 'ember-changeset';
import lookupValidator from 'ember-changeset-validations';
import validations from 'consul-ui/validations/intention';
export default Controller.extend({
setProperties: function(model) {
2018-06-06 11:00:25 +00:00
this.changeset = new Changeset(model.item, lookupValidator(validations), validations);
const sourceName = get(model.item, 'SourceName');
const destinationName = get(model.item, 'DestinationName');
let source = model.items.findBy('Name', sourceName);
let destination = model.items.findBy('Name', destinationName);
if (!source) {
source = { Name: sourceName };
model.items = [source].concat(model.items);
}
if (!destination) {
destination = { Name: destinationName };
model.items = [destination].concat(model.items);
}
this._super({
...model,
...{
item: this.changeset,
SourceName: source,
DestinationName: destination,
},
});
},
actions: {
createNewLabel: function(term) {
return `Use a future Consul Service called '${term}'`;
},
change: function(e, value, _target) {
2018-06-06 11:00:25 +00:00
// normalize back to standard event
const target = e.target || { ..._target, ...{ name: e, value: value } };
switch (target.name) {
case 'Action':
set(this.changeset, target.name, target.value);
break;
case 'SourceName':
case 'DestinationName':
let name = target.value;
let selected = target.value;
if (typeof name !== 'string') {
name = get(target.value, 'Name');
}
const match = get(this, 'items').filterBy('Name', name);
if (match.length === 0) {
selected = { Name: name };
const items = [selected].concat(this.items.toArray());
set(this, 'items', items);
}
set(this.changeset, target.name, name);
set(this, target.name, selected);
break;
}
},
},
});