-
-
Notifications
You must be signed in to change notification settings - Fork 96
/
Copy pathTrialFormWidgets.tsx
472 lines (455 loc) · 13.2 KB
/
TrialFormWidgets.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
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
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
import {
Box,
Button,
Card,
FormControl,
FormControlLabel,
FormLabel,
Radio,
RadioGroup,
Slider,
TextField,
Typography,
useTheme,
} from "@mui/material"
import * as Optuna from "@optuna/types"
import React, { FC, ReactNode, useMemo, useState } from "react"
import {
FormWidgets,
ObjectiveChoiceWidget,
ObjectiveSliderWidget,
ObjectiveTextInputWidget,
ObjectiveUserAttrRef,
Trial,
UserAttrFormWidget,
} from "ts/types/optuna"
import { actionCreator } from "../action"
import { useTrialUpdatingValue } from "../state"
import { DebouncedInputTextField } from "./Debounce"
type WidgetState = {
isValid: boolean
value: number | string
render: () => ReactNode
}
export const TrialFormWidgets: FC<{
trial: Trial
metricNames: string[]
directions: Optuna.StudyDirection[]
formWidgets?: FormWidgets
}> = ({ trial, metricNames, directions, formWidgets }) => {
if (
formWidgets === undefined ||
trial.state === "Pruned" ||
trial.state === "Fail"
) {
return null
}
const theme = useTheme()
const trialNowUpdating = useTrialUpdatingValue(trial.trial_id)
const headerText =
formWidgets.output_type === "user_attr"
? "Set User Attributes Form"
: directions.length > 1
? "Set Objective Values Form"
: "Set Objective Value Form"
const widgetNames = formWidgets.widgets.map((widget, i) => {
if (formWidgets.output_type === "objective") {
if (metricNames.at(i) !== undefined) {
return metricNames[i]
}
return directions.length === 1 ? "Objective" : `Objective ${i}`
} else if (formWidgets.output_type === "user_attr") {
if (widget.type !== "user_attr" && widget.user_attr_key !== undefined) {
return widget.user_attr_key
}
}
console.error("Must not reach here")
return "Unknown"
})
return (
<>
<Typography
variant="h5"
sx={{ fontWeight: theme.typography.fontWeightBold }}
>
{headerText}
</Typography>
{trial.state === "Running" && !trialNowUpdating ? (
<UpdatableFormWidgets
trial={trial}
widgetNames={widgetNames}
formWidgets={formWidgets}
/>
) : (
<ReadonlyFormWidgets
trial={trial}
widgetNames={widgetNames}
formWidgets={formWidgets}
/>
)}
</>
)
}
const UpdatableFormWidgets: FC<{
trial: Trial
widgetNames: string[]
formWidgets: FormWidgets
}> = ({ trial, widgetNames, formWidgets }) => {
const theme = useTheme()
const action = actionCreator()
const widgetStates = formWidgets.widgets
.map((w, i) => {
const key = `${formWidgets.output_type}-${i}`
const outputType = formWidgets.output_type
if (w.type === "text") {
return useTextInputWidget(key, outputType, w, widgetNames[i])
} else if (w.type === "choice") {
return useChoiceWidget(key, outputType, w, widgetNames[i])
} else if (w.type === "slider") {
return useSliderWidget(key, outputType, w, widgetNames[i])
} else if (w.type === "user_attr") {
return useUserAttrRefWidget(key, w, widgetNames[i], trial)
}
console.error("Must not reach here")
return undefined
})
.filter((w): w is WidgetState => w !== undefined)
const disableSubmit = useMemo<boolean>(
() => !widgetStates.every((ws) => ws.isValid),
[widgetStates]
)
const handleSubmit = (e: React.MouseEvent<HTMLButtonElement>): void => {
e.preventDefault()
const values = widgetStates.map((ws) => ws.value)
if (formWidgets.output_type === "objective") {
const filtered = values.filter<number>((v): v is number => v !== null)
if (filtered.length !== formWidgets.widgets.length) {
return
}
action.makeTrialComplete(trial.study_id, trial.trial_id, filtered)
} else if (formWidgets.output_type === "user_attr") {
const user_attrs = Object.fromEntries(
formWidgets.widgets.map((widget, i) => [
widget.user_attr_key,
values[i] !== null ? values[i] : "",
])
)
action.saveTrialUserAttrs(trial.study_id, trial.trial_id, user_attrs)
}
}
return (
<Box component="div" sx={{ p: theme.spacing(1, 0) }}>
<Card
sx={{
display: "flex",
flexDirection: "column",
marginBottom: theme.spacing(2),
margin: theme.spacing(0, 1, 1, 0),
p: theme.spacing(1),
maxWidth: "1000px",
}}
>
{widgetStates.map((ws) => ws.render())}
<Box
component="div"
sx={{
display: "flex",
flexDirection: "row",
margin: theme.spacing(1, 2),
}}
>
<Button
variant="contained"
type="submit"
sx={{ marginRight: theme.spacing(1) }}
disabled={disableSubmit}
onClick={handleSubmit}
>
Submit
</Button>
</Box>
</Card>
</Box>
)
}
export const useTextInputWidget = (
key: string,
widgetType: "user_attr" | "objective",
widget: ObjectiveTextInputWidget,
metricName: string
): WidgetState => {
const theme = useTheme()
const [value, setValue] = useState<number | string>("")
const isValid = useMemo(
() =>
widgetType === "user_attr"
? value !== "" || widget.optional
: value !== "" && !isNaN(Number(value)),
[widget, value]
)
const inputProps =
widgetType === "objective"
? {
pattern: "[-+]?[0-9]*.?[0-9]+([eE][-+]?[0-9]+)?",
}
: undefined
const helperText =
!widget.optional && value === "" ? `Please input the float number.` : ""
const render = () => (
<FormControl key={key} sx={{ margin: theme.spacing(1, 2) }}>
<FormLabel>
{metricName} - {widget.description}
</FormLabel>
<DebouncedInputTextField
onChange={(s, valid) => {
if (widgetType === "user_attr") {
setValue(s)
return
}
const n = Number(s)
if (s.length > 0 && valid && !isNaN(n)) {
setValue(n)
} else {
setValue("")
}
}}
delay={500}
textFieldProps={{
type: "text",
autoFocus: true,
fullWidth: true,
required: !widget.optional,
helperText,
inputProps,
}}
/>
</FormControl>
)
return { isValid, value, render }
}
export const useChoiceWidget = (
key: string,
widgetType: "user_attr" | "objective",
widget: ObjectiveChoiceWidget,
metricName: string
): WidgetState => {
const theme = useTheme()
const [value, setValue] = useState<number>(widget.values[0])
const render = () => (
<FormControl key={key} sx={{ margin: theme.spacing(1, 2) }}>
<FormLabel>
{metricName} - {widget.description}
</FormLabel>
<RadioGroup row defaultValue={widget.values.at(0)}>
{widget.choices.map((c, j) => (
<FormControlLabel
key={c}
control={
<Radio
checked={value === widget.values.at(j)}
onChange={(e) => {
const selected = widget.values.at(j)
if (selected === undefined) {
console.error("Must not reach here.")
return
}
if (e.target.checked) {
setValue(selected)
}
}}
/>
}
label={c}
/>
))}
</RadioGroup>
</FormControl>
)
return { isValid: true, value, render }
}
export const useSliderWidget = (
key: string,
widgetType: "user_attr" | "objective",
widget: ObjectiveSliderWidget,
metricName: string
): WidgetState => {
const theme = useTheme()
const [value, setValue] = useState<number>(widget.min)
const defaultStep = 0.01
const render = () => (
<FormControl key={key} sx={{ margin: theme.spacing(1, 2) }}>
<FormLabel>
{metricName} - {widget.description}
</FormLabel>
<Box component="div" sx={{ padding: theme.spacing(0, 2) }}>
<Slider
onChange={(e) => {
// @ts-ignore
setValue(e.target.value as number)
}}
defaultValue={widget.min}
min={widget.min}
max={widget.max}
step={widget.step || defaultStep}
marks={widget.labels === null ? undefined : widget.labels}
valueLabelDisplay="auto"
/>
</Box>
</FormControl>
)
return { isValid: true, value, render }
}
export const useUserAttrRefWidget = (
key: string,
widget: ObjectiveUserAttrRef,
metricName: string,
trial: Trial
): WidgetState => {
const theme = useTheme()
const value = useMemo(() => {
const attr = trial.user_attrs.find((attr) => attr.key === widget.key)
if (attr === undefined) {
return null
}
const n = Number(attr.value)
if (isNaN(n)) {
return null
}
return n
}, [trial.user_attrs])
const render = () => (
<FormControl key={key} sx={{ margin: theme.spacing(1, 2) }}>
<FormLabel>{metricName}</FormLabel>
<TextField
inputProps={{ readOnly: true }}
value={value || ""}
error={value === null}
helperText={
value === null
? `This objective value is referred from trial.user_attrs[${widget.key}].`
: ""
}
/>
</FormControl>
)
return {
isValid: value !== null,
value: value !== null ? value : "",
render,
}
}
const ReadonlyFormWidgets: FC<{
trial: Trial
widgetNames: string[]
formWidgets: FormWidgets
}> = ({ trial, widgetNames, formWidgets }) => {
const theme = useTheme()
const getValue = (i: number): string | number => {
if (formWidgets.output_type === "user_attr") {
const widget = formWidgets.widgets[i] as UserAttrFormWidget
return (
trial.user_attrs.find((attr) => attr.key === widget.user_attr_key)
?.value || ""
)
}
const value = trial.values?.at(i)
if (value === undefined) {
console.error("Must not reach here.")
return 0
}
return value
}
if (trial.state !== "Complete") {
return null
}
return (
<Box component="div" sx={{ p: theme.spacing(1, 0) }}>
<Card
sx={{
display: "flex",
flexDirection: "column",
marginBottom: theme.spacing(2),
margin: theme.spacing(0, 1, 1, 0),
p: theme.spacing(1),
maxWidth: "1000px",
}}
>
{formWidgets.widgets.map((widget, i) => {
const key = `objective-${i}`
const widgetName = widgetNames[i]
if (widget.type === "text") {
return (
<FormControl key={key} sx={{ margin: theme.spacing(1, 2) }}>
<FormLabel>
{widgetName} - {widget.description}
</FormLabel>
<TextField
inputProps={{ readOnly: true }}
value={getValue(i)}
/>
</FormControl>
)
} else if (widget.type === "choice") {
return (
<FormControl key={key} sx={{ margin: theme.spacing(1, 2) }}>
<FormLabel>
{widgetName} - {widget.description}
</FormLabel>
<RadioGroup row defaultValue={trial.values?.at(i)}>
{widget.choices.map((c, j) => (
<FormControlLabel
key={c}
control={
<Radio
checked={trial.values?.at(i) === widget.values.at(j)}
/>
}
label={c}
disabled
/>
))}
</RadioGroup>
</FormControl>
)
} else if (widget.type === "slider") {
const value = trial.values?.at(i)
return (
<FormControl key={key} sx={{ margin: theme.spacing(1, 2) }}>
<FormLabel>
{widgetName} - {widget.description}
</FormLabel>
<Box component="div" sx={{ padding: theme.spacing(0, 2) }}>
<Slider
defaultValue={value}
min={widget.min}
max={widget.max}
step={widget.step}
marks={
widget.labels === null || widget.labels.length === 0
? true
: widget.labels
}
valueLabelDisplay="auto"
disabled
/>
</Box>
</FormControl>
)
} else if (widget.type === "user_attr") {
return (
<FormControl key={key} sx={{ margin: theme.spacing(1, 2) }}>
<FormLabel>{widgetName}</FormLabel>
<TextField
inputProps={{ readOnly: true }}
value={trial.values?.at(i)}
disabled
/>
</FormControl>
)
}
return null
})}
</Card>
</Box>
)
}