Fixed: Rejections custom filter for Interactive Search (now Rejections Count)

pull/4469/head
Mark McDowall 4 years ago committed by Qstick
parent 7f1497974f
commit baa6972a62

@ -80,6 +80,33 @@ export const defaultState = {
// Default to false // Default to false
return false; return false;
},
rejectionCount: function(item, value, type) {
const rejectionCount = item.rejections.length;
switch (type) {
case filterTypes.EQUAL:
return rejectionCount === value;
case filterTypes.GREATER_THAN:
return rejectionCount > value;
case filterTypes.GREATER_THAN_OR_EQUAL:
return rejectionCount >= value;
case filterTypes.LESS_THAN:
return rejectionCount < value;
case filterTypes.LESS_THAN_OR_EQUAL:
return rejectionCount <= value;
case filterTypes.NOT_EQUAL:
return rejectionCount !== value;
default:
return false;
}
} }
}, },
@ -128,8 +155,8 @@ export const defaultState = {
valueType: filterBuilderValueTypes.QUALITY valueType: filterBuilderValueTypes.QUALITY
}, },
{ {
name: 'rejections', name: 'rejectionCount',
label: 'Rejections', label: 'Rejection Count',
type: filterBuilderTypes.NUMBER type: filterBuilderTypes.NUMBER
} }
], ],

Loading…
Cancel
Save