ui: Adds the ability to frontend search instances by address (ip:port) (#5993)

This commit is contained in:
John Cowen 2019-06-20 12:12:14 +01:00 committed by John Cowen
parent f7e2bb0712
commit 61d13237b6
2 changed files with 20 additions and 1 deletions

View File

@ -8,7 +8,8 @@ export default function(filterable) {
.indexOf(term) !== -1 ||
get(item, 'Service.ID')
.toLowerCase()
.indexOf(term) !== -1
.indexOf(term) !== -1 ||
`${get(item, 'Service.Address')}:${get(item, 'Service.Port')}`.indexOf(term) !== -1
);
});
}

View File

@ -29,6 +29,24 @@ test('items are found by properties', function(assert) {
assert.ok(actual);
});
});
test('items are found by address:port', function(assert) {
const instance = {
Service: {
ID: 'id',
Address: '0.0.0.0',
Port: 8000,
},
Node: {
Node: 'node-0',
},
};
['0.0.0.0', '8000', '0:8000', '0.0.0.0:8000'].forEach(function(item) {
let actual = filter(instance, {
s: item,
});
assert.ok(actual);
});
});
test('items are not found', function(assert) {
[
{