New: Not in Last/Next for date custom filters

(cherry picked from commit 9a3669d80191e1f8e17fa22e5d1d9ae56fe13210)
This commit is contained in:
Mark McDowall
2020-08-02 12:57:07 -07:00
committed by Qstick
parent 289113b204
commit 4c8ff1c6bb
4 changed files with 27 additions and 4 deletions
@@ -24,7 +24,9 @@ export const possibleFilterTypes = {
{ key: filterTypes.LESS_THAN, value: 'is before' },
{ key: filterTypes.GREATER_THAN, value: 'is after' },
{ key: filterTypes.IN_LAST, value: 'in the last' },
{ key: filterTypes.IN_NEXT, value: 'in the next' }
{ key: filterTypes.NOT_IN_LAST, value: 'not in the last' },
{ key: filterTypes.IN_NEXT, value: 'in the next' },
{ key: filterTypes.NOT_IN_NEXT, value: 'not in the next' }
],
[EXACT]: [
+7 -1
View File
@@ -3,7 +3,9 @@ export const EQUAL = 'equal';
export const GREATER_THAN = 'greaterThan';
export const GREATER_THAN_OR_EQUAL = 'greaterThanOrEqual';
export const IN_LAST = 'inLast';
export const NOT_IN_LAST = 'notInLast';
export const IN_NEXT = 'inNext';
export const NOT_IN_NEXT = 'notInNext';
export const LESS_THAN = 'lessThan';
export const LESS_THAN_OR_EQUAL = 'lessThanOrEqual';
export const NOT_CONTAINS = 'notContains';
@@ -17,5 +19,9 @@ export const all = [
LESS_THAN,
LESS_THAN_OR_EQUAL,
NOT_CONTAINS,
NOT_EQUAL
NOT_EQUAL,
IN_LAST,
NOT_IN_LAST,
IN_NEXT,
NOT_IN_NEXT
];