forked from owid/owid-grapher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBulkGrapherConfigEditor.tsx
146 lines (142 loc) · 4.27 KB
/
BulkGrapherConfigEditor.tsx
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
import React from "react"
import {
chartBulkUpdateAllowedColumnNamesAndTypes,
WHITELISTED_SQL_COLUMN_NAMES,
} from "../adminShared/AdminSessionTypes.js"
import { AdminLayout } from "./AdminLayout.js"
import { GrapherConfigGridEditor } from "./GrapherConfigGridEditor.js"
import {
ColumnSet,
GrapherConfigGridEditorConfig,
GrapherConfigGridEditorSource,
ReadOnlyColumn,
} from "./GrapherConfigGridEditorTypesAndUtils.js"
const readOnlyBulkGrapherConfigEditorColumnNamesFields: Map<
string,
ReadOnlyColumn
> = new Map(
[
{
key: "id",
label: "Id",
type: "number" as const,
sExpressionColumnTarget:
WHITELISTED_SQL_COLUMN_NAMES.SQL_COLUMN_NAME_CHART_ID,
},
{
key: "createdAt",
label: "Created at",
type: "datetime" as const,
sExpressionColumnTarget:
WHITELISTED_SQL_COLUMN_NAMES.SQL_COLUMN_NAME_CHART_CREATED_AT,
},
{
key: "updatedAt",
label: "Updated at",
type: "datetime" as const,
sExpressionColumnTarget:
WHITELISTED_SQL_COLUMN_NAMES.SQL_COLUMN_NAME_CHART_UPDATED_AT,
},
{
key: "lastEditedAt",
label: "Last edited at",
type: "datetime" as const,
sExpressionColumnTarget:
WHITELISTED_SQL_COLUMN_NAMES.SQL_COLUMN_NAME_CHART_LAST_EDITED_AT,
},
{
key: "publishedAt",
label: "Published at",
type: "datetime" as const,
sExpressionColumnTarget:
WHITELISTED_SQL_COLUMN_NAMES.SQL_COLUMN_NAME_CHART_PUBLISHED_AT,
},
{
key: "lastEditedByUser",
label: "Last edited by user",
type: "string" as const,
sExpressionColumnTarget:
WHITELISTED_SQL_COLUMN_NAMES.SQL_COLUMN_NAME_CHART_LAST_EDITED_BY_USER,
},
{
key: "publishedByUser",
label: "Published by user",
type: "string" as const,
sExpressionColumnTarget:
WHITELISTED_SQL_COLUMN_NAMES.SQL_COLUMN_NAME_CHART_PUBLISHED_BY_USER,
},
].map((item) => [item.key, item])
)
const BULK_CHART_EDIT_HIDDEN_COLUMNS = new Set([
"/$schema",
"/id",
"/version",
"/data",
])
const bulkChartEditorColumnSets: ColumnSet[] = [
{
label: "Common",
kind: "specificColumns",
columns: [
"/type",
"/hasMapTab",
"/title",
"/subtitle",
"/note",
"/dimensions/0/display/unit",
"/dimensions/0/display/shortUnit",
],
},
{ label: "All columns", kind: "allColumns" },
{
label: "Axis",
kind: "specificColumns",
columns: [
"/yAxis/removePointsOutsideDomain",
"/yAxis/label",
"/yAxis/min",
"/yAxis/scaleType",
"/yAxis/max",
"/yAxis/canChangeScaleType",
"/yAxis/facetDomain",
],
},
{
label: "Color scales",
kind: "specificColumns",
columns: [
"/title",
"/baseColorScheme",
"/map/colorScale",
"/colorScale",
"/hasChartTab",
"/hasMapTab",
"/type",
],
},
]
const config: GrapherConfigGridEditorConfig = {
source: GrapherConfigGridEditorSource.SourceVariableAnnotation,
sExpressionContext: {
grapherConfigFieldName: "grapherConfig",
whitelistedColumnNamesAndTypes:
chartBulkUpdateAllowedColumnNamesAndTypes,
},
apiEndpoint: "/api/chart-bulk-update",
readonlyColumns: readOnlyBulkGrapherConfigEditorColumnNamesFields,
hiddenColumns: BULK_CHART_EDIT_HIDDEN_COLUMNS,
columnSet: bulkChartEditorColumnSets,
finalVariableLayerModificationFn: () => ({}),
}
export class BulkGrapherConfigEditorPage extends React.Component {
render() {
return (
<AdminLayout title="Bulk chart editor">
<main className="VariablesAnnotationPage">
<GrapherConfigGridEditor config={config} />
</main>
</AdminLayout>
)
}
//dispose!: IReactionDisposer
}