-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfilter.ts
119 lines (114 loc) · 2.8 KB
/
filter.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
type FilterOptions =
| "Is equal to"
| "Is not equal to"
| "Starts with"
| "Contains"
| "Does not contain"
| "Ends with";
type CompareOptions = "And" | "Or";
interface Column<T> {
id: T;
category: T;
name: T;
}
type FilterFormValues = {
filter1By: FilterOptions;
filter1Value: string;
filter2By: FilterOptions;
filter2Value: string;
compareValue: CompareOptions;
column?: string | ((elem) => string);
};
function op(b1: boolean, operator, b2: boolean): boolean {
return operator === "And" ? b1 && b2 : b1 || b2;
}
function propf(prop, row) {
if (typeof prop === "function") return prop(row);
else return row[prop];
}
function filterRows<T>(
rows: Column<T>[],
filterValues: FilterFormValues
): Column<T>[] {
let rowsToFilter = rows;
let prop: string | ((elem) => string) = filterValues.column;
if (!filterValues.filter1Value) {
return rowsToFilter;
}
const operand = (
filterBy: FilterOptions,
filterValue: string,
row: Column<T>,
op?: string
): boolean => {
let values = {
"Is equal to": function() {
return filterValue
? propf(prop, row).toLowerCase() === filterValue.toLowerCase()
: op === "And"
? true
: false;
},
"Is not equal to": function() {
return filterValue
? propf(prop, row).toLowerCase() !== filterValue.toLowerCase()
: op === "And"
? true
: false;
},
"Starts with": function() {
return filterValue
? propf(prop, row)
.toLowerCase()
.startsWith(filterValue.toLowerCase())
: op === "And"
? true
: false;
},
Contains: function() {
return filterValue
? propf(prop, row)
.toLowerCase()
.includes(filterValue.toLowerCase())
: op === "And"
? true
: false;
},
"Does not contain": function() {
return filterValue
? !propf(prop, row)
.toLowerCase()
.includes(filterValue.toLowerCase())
: op === "And"
? true
: false;
},
"Ends with": function() {
return filterValue
? propf(prop, row)
.toLowerCase()
.endsWith(filterValue.toLowerCase())
: op === "And"
? true
: false;
}
};
if(typeof propf(prop, row) ==='string')
return values[filterBy]();
else
return false
};
return rowsToFilter.filter(row =>
op(
operand(filterValues.filter1By, filterValues.filter1Value, row),
filterValues.compareValue,
operand(
filterValues.filter2By,
filterValues.filter2Value,
row,
filterValues.compareValue
)
)
);
}
module.exports = filterRows;