-
-
Notifications
You must be signed in to change notification settings - Fork 508
/
Copy pathconfig_update.ts
52 lines (49 loc) · 1.1 KB
/
config_update.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
import type { Config } from "@react-awesome-query-builder/core";
import merge from "lodash/merge";
function randomColor() {
const hex = Math.floor(Math.random() * 0xFFFFFF);
const color = "#" + hex.toString(16);
return color;
}
function randomName() {
return Math.random().toString(36).slice(2, 7);
}
export default (baseConfig: Config) => {
const newFieldName = "custom_" + randomName();
return merge(
{},
baseConfig,
{
// Update MUI colors
settings: {
theme: {
mui: {
palette: {
primary: { main: randomColor() },
secondary: { main: randomColor() },
},
}
}
},
// Add new field
fields: {
[newFieldName]: {
type: "date",
label: `${newFieldName.toUpperCase()}`,
},
},
// Reset boolean widget to basic one
types: {
boolean: {
widgets: {
boolean: {
widgetProps: {
factory: "VanillaBooleanWidget",
}
}
}
}
}
},
);
};