This commit is contained in:
John Cowen 2018-06-14 11:14:06 +01:00 committed by Jack Pearkes
parent 181cb6e1b5
commit 4280c78330
4 changed files with 24 additions and 7 deletions

View File

@ -53,9 +53,9 @@ export default Adapter.extend({
switch (true) {
case this.isQueryRecord(url):
case this.isUpdateRecord(url):
// TODO: We just need to upgrade this entire API to
// use a full request-like object
case this.isCreateRecord(url, requestData.method):
// TODO: We just need to upgrade this (^^ sorry linter) entire API to
// use a full request-like object
response = {
...response,
...{

View File

@ -39,6 +39,11 @@ export default Controller.extend({
change: function(e, value, _target) {
// normalize back to standard event
const target = e.target || { ..._target, ...{ name: e, value: value } };
let name,
selected = target.value;
// TODO:
// linter needs this here?
let match;
switch (target.name) {
case 'Description':
case 'Action':
@ -46,14 +51,14 @@ export default Controller.extend({
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);
// linter doesn't like const here
match = get(this, 'items').filterBy('Name', name);
if (match.length === 0) {
selected = { Name: name };
// linter doesn't mind const here?
const items = [selected].concat(this.items.toArray());
set(this, 'items', items);
}

View File

@ -2,7 +2,13 @@ import { moduleFor, test } from 'ember-qunit';
moduleFor('route:dc/intentions/create', 'Unit | Route | dc/intentions/create', {
// Specify the other units that are required for this test.
needs: ['service:intentions', 'service:feedback', 'service:logger', 'service:flashMessages'],
needs: [
'service:services',
'service:intentions',
'service:feedback',
'service:logger',
'service:flashMessages',
],
});
test('it exists', function(assert) {

View File

@ -2,7 +2,13 @@ import { moduleFor, test } from 'ember-qunit';
moduleFor('route:dc/intentions/edit', 'Unit | Route | dc/intentions/edit', {
// Specify the other units that are required for this test.
needs: ['service:intentions', 'service:feedback', 'service:logger', 'service:flashMessages'],
needs: [
'service:services',
'service:intentions',
'service:feedback',
'service:logger',
'service:flashMessages',
],
});
test('it exists', function(assert) {