1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-08-18 16:29:41 +02:00

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

This commit is contained in:
Mark McDowall 2020-05-24 14:02:30 -07:00 committed by Qstick
parent 7f1497974f
commit baa6972a62

View File

@ -80,6 +80,33 @@ export const defaultState = {
// Default to 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
},
{
name: 'rejections',
label: 'Rejections',
name: 'rejectionCount',
label: 'Rejection Count',
type: filterBuilderTypes.NUMBER
}
],