mirror of
https://github.com/status-im/consul.git
synced 2025-01-10 13:55:55 +00:00
db978af6f3
* Adds model layer changes around HealthChecks 1. Makes a HealthCheck model fragment and uses it in ServiceInstances and Nodes 2. Manually adds a relationship between a ServiceInstance and its potential ServiceInstanceProxy 3. Misc changes related to the above such as an Exposed property on MeshChecks, MeshChecks itself * Add a potential temporary endpoint to distinguish ProxyServiceInstance * Fix up Node search bar class * Add search/sort/filter logic * Fixup Service default sort key * Add Healthcheck search/sort/filtering * Tweak CSS add a default Type of 'Serf' when type is blank * Fix up tests and new test support * Add ability to search on Service/Node name depending on where you are * Fixup CheckID search predicate * Use computed for DataCollection to use caching * Alpha sort the Type menu * Temporary fix for new non-changing style Ember Proxys * Only special case EventSource proxies
33 lines
1.0 KiB
JavaScript
33 lines
1.0 KiB
JavaScript
const asArray = function(arr) {
|
|
return Array.isArray(arr) ? arr : arr.toArray();
|
|
};
|
|
export default {
|
|
Name: (item, value) => {
|
|
return item.Name.toLowerCase().indexOf(value.toLowerCase()) !== -1;
|
|
},
|
|
Node: (item, value) => {
|
|
return item.Node.toLowerCase().indexOf(value.toLowerCase()) !== -1;
|
|
},
|
|
Service: (item, value) => {
|
|
const lower = value.toLowerCase();
|
|
return (
|
|
item.ServiceName.toLowerCase().indexOf(lower) !== -1 ||
|
|
item.ServiceID.toLowerCase().indexOf(lower) !== -1
|
|
);
|
|
},
|
|
CheckID: (item, value) => (item.CheckID || '').toLowerCase().indexOf(value.toLowerCase()) !== -1,
|
|
Notes: (item, value) =>
|
|
item.Notes.toString()
|
|
.toLowerCase()
|
|
.indexOf(value.toLowerCase()) !== -1,
|
|
Output: (item, value) =>
|
|
item.Output.toString()
|
|
.toLowerCase()
|
|
.indexOf(value.toLowerCase()) !== -1,
|
|
ServiceTags: (item, value) => {
|
|
return asArray(item.ServiceTags || []).some(
|
|
item => item.toLowerCase().indexOf(value.toLowerCase()) !== -1
|
|
);
|
|
},
|
|
};
|