-
Notifications
You must be signed in to change notification settings - Fork 1
/
sample.ts
401 lines (355 loc) · 11.8 KB
/
sample.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
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
// TODO: This file was created by bulk-decaffeinate.
// Sanity-check the conversion and remove this comment.
let FiltersPaneComponent
import _ from "lodash"
import PropTypes from "prop-types"
import React from "react"
const R = React.createElement
import { UndoStack } from "mwater-visualization"
import { RadioButtonComponent } from "mwater-visualization"
import { CheckboxComponent } from "mwater-visualization"
import update from "update-object"
import { ExprUtils } from "mwater-expressions"
import { DateRangeComponent } from "mwater-visualization"
import { FilterExprComponent } from "mwater-expressions-ui"
import { ExprCleaner } from "mwater-expressions"
import { default as ReactSelect } from "react-select"
import ListColumnBuilder from "./ListColumnBuilder"
import DatasetSelectComponent from "./DatasetSelectComponent"
import DatasetManagerLinkComponent from "./DatasetManagerLinkComponent"
import DesignBuilder from "./DesignBuilder"
import { SubjectSelectComponent } from "mwater-common"
// Filters pane of the entities pane
export default FiltersPaneComponent = (function () {
FiltersPaneComponent = class FiltersPaneComponent extends React.Component {
static initClass() {
this.propTypes = {
schema: PropTypes.object.isRequired,
dataSource: PropTypes.object.isRequired,
user: PropTypes.string,
groups: PropTypes.array,
ctx: PropTypes.object.isRequired, // Portal context
design: PropTypes.object.isRequired,
onDesignChange: PropTypes.func.isRequired
}
this.contextTypes = {
T: PropTypes.func
}
}
constructor(props: any) {
super(props)
this.state = {
undoStack: new UndoStack()
}
}
componentWillReceiveProps(nextProps: any) {
// Save on stack
return this.setState({ undoStack: this.state.undoStack.push(nextProps.design) })
}
handleUndo = () => {
const undoStack = this.state.undoStack.undo()
// We need to use callback as state is applied later
return this.setState({ undoStack }, () => this.props.onDesignChange(undoStack.getValue()))
}
handleRedo = () => {
const undoStack = this.state.undoStack.redo()
// We need to use callback as state is applied later
return this.setState({ undoStack }, () => this.props.onDesignChange(undoStack.getValue()))
}
handleEntityTypeChange = (entityType: any) => {
// Set entity type and reset columns and filters
const design = new DesignBuilder(this.props.schema).createDefaultDesign(entityType)
return this.props.onDesignChange(design)
}
handleOnlyMapBoundsChange = (value: any) => {
return this.props.onDesignChange(update(this.props.design, { filters: { onlyMapBounds: { $set: value } } }))
}
handleTextChange = (ev: any) => {
return this.props.onDesignChange(update(this.props.design, { filters: { text: { $set: ev.target.value } } }))
}
handleAdminChange = (admin: any) => {
return this.props.onDesignChange(update(this.props.design, { filters: { admin: { $set: admin } } }))
}
handleCreatedOnChange = (createdOn: any) => {
return this.props.onDesignChange(update(this.props.design, { filters: { createdOn: { $set: createdOn } } }))
}
handleModifiedOnChange = (modifiedOn: any) => {
return this.props.onDesignChange(update(this.props.design, { filters: { modifiedOn: { $set: modifiedOn } } }))
}
handleDatasetChange = (dataset: any) => {
return this.props.onDesignChange(update(this.props.design, { filters: { dataset: { $set: dataset } } }))
}
handleAccessChange = (level: any, value: any) => {
let access = this.props.design.filters.access || ["Public", "Protected", "Private"]
if (value) {
access = _.union(access, [level])
} else {
access = _.without(access, level)
}
return this.props.onDesignChange(update(this.props.design, { filters: { access: { $set: access } } }))
}
handleExprChange = (expr: any) => {
// Clean first
const exprCleaner = new ExprCleaner(this.props.schema)
expr = exprCleaner.cleanExpr(expr, { table: `entities.${this.props.design.entityType}` })
return this.props.onDesignChange(update(this.props.design, { filters: { expr: { $set: expr } } }))
}
renderUndoRedo() {
return R(
"div",
null,
R(
"a",
{
key: "undo",
className: `btn btn-link btn-sm ${!this.state.undoStack.canUndo() ? "disabled" : ""}`,
onClick: this.handleUndo
},
R("span", { className: "glyphicon glyphicon-triangle-left" }),
" Undo"
),
" ",
R(
"a",
{
key: "redo",
className: `btn btn-link btn-sm ${!this.state.undoStack.canRedo() ? "disabled" : ""}`,
onClick: this.handleRedo
},
R("span", { className: "glyphicon glyphicon-triangle-right" }),
" Redo"
)
)
}
renderEntityType() {
// Get all entity tables (tables with entities. in name)
const entityTables = _.filter(this.props.schema.getTables(), (t) => t.id.match(/^entities\./))
const options = _.map(
_.filter(entityTables, (t) => !t.deprecated),
(t) => ({
label: ExprUtils.localizeString(t.name),
value: t.id.split(".")[1]
})
)
return R(
SectionComponent,
{ title: "Data Source" },
R(ReactSelect, {
onChange: (option) => this.handleEntityTypeChange(option?.value),
options,
isClearable: false,
value: _.findWhere(options, { value: this.props.design.entityType }) || null
})
)
}
renderText() {
return R(
SectionComponent,
{ title: "Search" },
R("input", {
type: "text",
className: "form-control",
value: this.props.design.filters.text,
onChange: this.handleTextChange,
placeholder: "Search..."
})
)
}
renderOnlyMapBounds() {
// Only if has geometryExpr
if (!this.props.design.map.geometryExpr) {
return
}
return R(
SectionComponent,
{ title: "Map Filter" },
R(
RadioButtonComponent,
{
key: "false",
checked: !this.props.design.filters.onlyMapBounds,
onChange: this.handleOnlyMapBoundsChange.bind(null, false)
},
"All Items"
),
R(
RadioButtonComponent,
{
key: "true",
checked: this.props.design.filters.onlyMapBounds,
onChange: this.handleOnlyMapBoundsChange.bind(null, true)
},
"Only Items Visible On Map"
)
)
}
renderAdmin() {
return R(AdminComponent, {
entityType: this.props.design.entityType,
ctx: this.props.ctx,
user: this.props.user,
groups: this.props.groups,
dataSource: this.props.dataSource,
value: this.props.design.filters.admin,
onChange: this.handleAdminChange
})
}
renderCreatedOn() {
return R(
SectionComponent,
{ title: "Date Added" },
R(DateRangeComponent, {
value: this.props.design.filters.createdOn,
onChange: this.handleCreatedOnChange,
datetime: true
})
)
}
renderModifiedOn() {
return R(
SectionComponent,
{ title: "Date Last Modified" },
R(DateRangeComponent, {
value: this.props.design.filters.modifiedOn,
onChange: this.handleModifiedOnChange,
datetime: true
})
)
}
renderDataset() {
return R(
SectionComponent,
{ title: "Dataset" },
R(DatasetSelectComponent, {
value: this.props.design.filters.dataset,
onChange: this.handleDatasetChange,
ctx: this.props.ctx
}),
R(DatasetManagerLinkComponent, { ctx: this.props.ctx })
)
}
renderAccess() {
const createBox = (level: any, label: any) => {
const checked = !this.props.design.filters.access || this.props.design.filters.access.includes(level)
return R(CheckboxComponent, { checked, onChange: this.handleAccessChange.bind(null, level) }, label)
}
return R(
SectionComponent,
{ title: "Access" },
createBox("Public", "Public"),
createBox("Protected", "Protected"),
createBox("Private", "Private")
)
}
renderExpr() {
return R(
SectionComponent,
{ title: "Advanced" },
R(FilterExprComponent, {
value: this.props.design.filters.expr,
onChange: this.handleExprChange,
schema: this.props.schema,
dataSource: this.props.dataSource,
table: `entities.${this.props.design.entityType}`
})
)
}
render() {
return R(
"div",
{ style: { padding: 10, paddingBottom: 200 } },
this.renderUndoRedo(),
this.renderEntityType(),
this.renderText(),
this.renderOnlyMapBounds(),
this.renderAdmin(),
this.renderCreatedOn(),
this.renderModifiedOn(),
this.renderDataset(),
this.renderAccess(),
this.renderExpr()
)
}
}
FiltersPaneComponent.initClass()
return FiltersPaneComponent
})()
class SectionComponent extends React.Component {
render() {
return R(
"div",
{ style: { marginBottom: 20 } },
R("label", { className: "text-muted" }, this.props.title),
R("div", { style: { marginLeft: 10 } }, this.props.children)
)
}
}
// Allow selection of admin. Anyone and
class AdminComponent extends React.Component {
static initClass() {
this.propTypes = {
// entityType: PropTypes.string.isRequired
// groups: PropTypes.array.isRequired
ctx: PropTypes.object.isRequired,
user: PropTypes.string.isRequired,
dataSource: PropTypes.object.isRequired,
value: PropTypes.string, // Current value
onChange: PropTypes.func.isRequired
}
// Called when changes
}
constructor(props: any) {
super(props)
this.state = {
forceOther: false // True when other has been clicked but not filled yet
}
}
handleAnyone = () => {
this.setState({ forceOther: false })
return this.props.onChange(null)
}
handleMe = () => {
this.setState({ forceOther: false })
return this.props.onChange(`user:${this.props.user}`)
}
handleOther = () => {
// Force display of other and clear existing if user
if (this.props.value === `user:${this.props.user}`) {
this.props.onChange(null)
}
return this.setState({ forceOther: true })
}
render() {
const isOther =
(this.props.value != null && this.props.value !== `user:${this.props.user}`) || this.state.forceOther
return R(
SectionComponent,
{ title: "Managed By" },
R(
RadioButtonComponent,
{ key: "all", checked: this.props.value == null && !isOther, onClick: this.handleAnyone },
"Anyone"
),
R(
RadioButtonComponent,
{ key: "me", checked: this.props.value === `user:${this.props.user}` && !isOther, onClick: this.handleMe },
"Me"
),
R(RadioButtonComponent, { key: "other", checked: isOther, onClick: this.handleOther }, "Other"),
isOther
? R(SubjectSelectComponent, {
key: "subject",
value: this.props.value,
onChange: this.props.onChange,
db: this.props.ctx.db,
apiUrl: this.props.ctx.apiUrl,
login: this.props.ctx.login,
groupsOnly: true,
groupTypes: ["normal", "organization_head", "organization", "staff"],
canManageEntities: true
})
: undefined
)
}
}
AdminComponent.initClass()