2020-11-11 16:59:15 +00:00
|
|
|
export default () => term => item => {
|
2020-10-26 09:30:07 +00:00
|
|
|
const source = item.SourceName.toLowerCase();
|
|
|
|
const destination = item.DestinationName.toLowerCase();
|
|
|
|
const allLabel = 'All Services (*)'.toLowerCase();
|
|
|
|
const lowerTerm = term.toLowerCase();
|
|
|
|
return (
|
|
|
|
source.indexOf(lowerTerm) !== -1 ||
|
|
|
|
destination.indexOf(lowerTerm) !== -1 ||
|
|
|
|
(source === '*' && allLabel.indexOf(lowerTerm) !== -1) ||
|
|
|
|
(destination === '*' && allLabel.indexOf(lowerTerm) !== -1)
|
|
|
|
);
|
2020-11-11 16:59:15 +00:00
|
|
|
};
|