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
|
import { Pickaxe, SquareSquare } from "lucide-react"
export type DataTableConfig = typeof dataTableConfig
export const dataTableConfig = {
featureFlags: [
{
label: "Advanced table",
value: "advancedTable" as const,
icon: Pickaxe,
tooltipTitle: "Toggle advanced table",
tooltipDescription: "A filter and sort builder to filter and sort rows.",
},
{
label: "Floating bar",
value: "floatingBar" as const,
icon: SquareSquare,
tooltipTitle: "Toggle floating bar",
tooltipDescription: "A floating bar that sticks to the top of the table.",
},
],
textOperators: [
{ label: "Contains", value: "iLike" as const },
{ label: "Does not contain", value: "notILike" as const },
{ label: "Is", value: "eq" as const },
{ label: "Is not", value: "ne" as const },
{ label: "Is empty", value: "isEmpty" as const },
{ label: "Is not empty", value: "isNotEmpty" as const },
],
numericOperators: [
{ label: "Is", value: "eq" as const },
{ label: "Is not", value: "ne" as const },
{ label: "Is less than", value: "lt" as const },
{ label: "Is less than or equal to", value: "lte" as const },
{ label: "Is greater than", value: "gt" as const },
{ label: "Is greater than or equal to", value: "gte" as const },
{ label: "Is empty", value: "isEmpty" as const },
{ label: "Is not empty", value: "isNotEmpty" as const },
],
dateOperators: [
{ label: "Is", value: "eq" as const },
{ label: "Is not", value: "ne" as const },
{ label: "Is before", value: "lt" as const },
{ label: "Is after", value: "gt" as const },
{ label: "Is on or before", value: "lte" as const },
{ label: "Is on or after", value: "gte" as const },
{ label: "Is between", value: "isBetween" as const },
{ label: "Is relative to today", value: "isRelativeToToday" as const },
{ label: "Is empty", value: "isEmpty" as const },
{ label: "Is not empty", value: "isNotEmpty" as const },
],
selectOperators: [
{ label: "Is", value: "eq" as const },
{ label: "Is not", value: "ne" as const },
{ label: "Is empty", value: "isEmpty" as const },
{ label: "Is not empty", value: "isNotEmpty" as const },
],
booleanOperators: [
{ label: "Is", value: "eq" as const },
{ label: "Is not", value: "ne" as const },
],
joinOperators: [
{ label: "And", value: "and" as const },
{ label: "Or", value: "or" as const },
],
sortOrders: [
{ label: "Asc", value: "asc" as const },
{ label: "Desc", value: "desc" as const },
],
columnTypes: [
"text",
"number",
"date",
"boolean",
"select",
"multi-select",
] as const,
globalOperators: [
"iLike",
"notILike",
"eq",
"ne",
"isEmpty",
"isNotEmpty",
"lt",
"lte",
"gt",
"gte",
"isBetween",
"isRelativeToToday",
"and",
"or",
] as const,
}
|