-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathMovingAverageSettingsEditor.tsx
152 lines (139 loc) · 5.09 KB
/
MovingAverageSettingsEditor.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
import { uniqueId } from 'lodash';
import React, { useRef } from 'react';
import { Input, InlineField, Select, InlineSwitch } from '@grafana/ui';
import { useDispatch } from '@/hooks/useStatelessReducer';
import { movingAvgModelOptions } from '@/queryDef';
import { MovingAverage } from '@/types';
import { isEWMAMovingAverage, isHoltMovingAverage, isHoltWintersMovingAverage } from '../aggregations';
import { changeMetricSetting } from '../state/actions';
import { SettingField } from './SettingField';
interface Props {
metric: MovingAverage;
}
// The way we handle changes for those settings is not ideal compared to the other components in the editor
// FIXME: using `changeMetricSetting` will cause an error when switching from models that have different options
// as they might be incompatible. We should clear all other options on model change.
export const MovingAverageSettingsEditor = ({ metric }: Props) => {
const dispatch = useDispatch();
const { current: baseId } = useRef(uniqueId('es-moving-avg-'));
return (
<>
<InlineField label="Model" labelWidth={16}>
<Select
inputId={`${baseId}-model`}
onChange={(value) => dispatch(changeMetricSetting({ metric, settingName: 'model', newValue: value.value }))}
options={movingAvgModelOptions}
value={metric.settings?.model}
/>
</InlineField>
<SettingField label="Window" settingName="window" metric={metric} placeholder="5" />
<SettingField label="Predict" settingName="predict" metric={metric} />
{(isEWMAMovingAverage(metric) || isHoltMovingAverage(metric) || isHoltWintersMovingAverage(metric)) && (
<InlineField label="Alpha" labelWidth={16}>
<Input
id={`${baseId}-alpha`}
onBlur={(e) =>
dispatch(
changeMetricSetting({
metric,
settingName: 'settings',
newValue: {
...metric.settings?.settings,
alpha: e.target.value,
},
})
)
}
defaultValue={metric.settings?.settings?.alpha}
/>
</InlineField>
)}
{(isHoltMovingAverage(metric) || isHoltWintersMovingAverage(metric)) && (
<InlineField label="Beta" labelWidth={16}>
<Input
id={`${baseId}-beta`}
onBlur={(e) =>
dispatch(
changeMetricSetting({
metric,
settingName: 'settings',
newValue: {
...metric.settings?.settings,
beta: e.target.value,
},
})
)
}
defaultValue={metric.settings?.settings?.beta}
/>
</InlineField>
)}
{isHoltWintersMovingAverage(metric) && (
<>
<InlineField label="Gamma" labelWidth={16}>
<Input
id={`${baseId}-gamma`}
onBlur={(e) =>
dispatch(
changeMetricSetting({
metric,
settingName: 'settings',
newValue: {
...metric.settings?.settings,
gamma: e.target.value,
},
})
)
}
defaultValue={metric.settings?.settings?.gamma}
/>
</InlineField>
<InlineField label="Period" labelWidth={16}>
<Input
id={`${baseId}-period`}
onBlur={(e) =>
dispatch(
changeMetricSetting({
metric,
settingName: 'settings',
newValue: {
...metric.settings?.settings,
period: e.target.value!,
},
})
)
}
defaultValue={metric.settings?.settings?.period}
/>
</InlineField>
<InlineField label="Pad" labelWidth={16}>
<InlineSwitch
id={`${baseId}-pad`}
onChange={(e: React.ChangeEvent<HTMLInputElement>) =>
dispatch(
changeMetricSetting({
metric,
settingName: 'settings',
newValue: { ...metric.settings?.settings, pad: e.target.checked },
})
)
}
checked={!!metric.settings?.settings?.pad}
/>
</InlineField>
</>
)}
{(isEWMAMovingAverage(metric) || isHoltMovingAverage(metric) || isHoltWintersMovingAverage(metric)) && (
<InlineField label="Minimize" labelWidth={16}>
<InlineSwitch
id={`${baseId}-minimize`}
onChange={(e: React.ChangeEvent<HTMLInputElement>) =>
dispatch(changeMetricSetting({ metric, settingName: 'minimize', newValue: e.target.checked }))
}
checked={!!metric.settings?.minimize}
/>
</InlineField>
)}
</>
);
};