-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathOrgOverlay.tsx
More file actions
427 lines (413 loc) · 15.8 KB
/
OrgOverlay.tsx
File metadata and controls
427 lines (413 loc) · 15.8 KB
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
// Libraries
import React, {FC, useContext, useEffect} from 'react'
import {useHistory, useParams} from 'react-router-dom'
import {
ButtonBase,
ButtonShape,
ButtonType,
Columns,
ComponentColor,
ComponentSize,
ComponentStatus,
Form,
Gradients,
Grid,
InputType,
LinkButton,
LinkTarget,
Overlay,
Panel,
RemoteDataState,
SpinnerContainer,
TechnoSpinner,
} from '@influxdata/clockface'
// Contexts
import {OverlayContext} from 'src/operator/context/overlay'
import {OperatorContext} from 'src/operator/context/operator'
// Utils
import {fromDisplayLimits} from 'src/operator/utils'
// Components
import LimitsField from 'src/operator/LimitsField'
// Constants
import {TOOLS_URL} from 'src/shared/constants'
import {MigrateOrg} from './MigrateOrg'
const viewUsageButtonStyles = {marginRight: '12px'}
const reactivateOrgButtonStyles = {marginTop: '8px'}
export const OrgOverlay: FC = () => {
const {
limits,
limitsStatus,
handleGetLimits,
handleGetOrg,
handleReactivateOrg,
handleUpdateLimits,
organization,
orgStatus,
reactivateOrgStatus,
setLimits,
updateLimitStatus,
} = useContext(OverlayContext)
const {hasWritePermissions} = useContext(OperatorContext)
const {orgID} = useParams<{orgID: string}>()
const history = useHistory()
const canReactivateOrg =
hasWritePermissions &&
organization?.state === 'suspended' &&
organization?.account?.type != 'cancelled'
const isIOx =
organization?.storageType &&
organization.storageType.toLowerCase() === 'iox'
const canSeeTsmLimits = !isIOx
useEffect(() => {
handleGetLimits(orgID)
}, [handleGetLimits, orgID])
useEffect(() => {
handleGetOrg(orgID)
}, [handleGetOrg, orgID])
const updateLimits = async () => {
try {
const backendLimits = fromDisplayLimits(limits)
await handleUpdateLimits(orgID, backendLimits)
history.goBack()
} catch {
// We want to keep the operator on the overlay if an error occurred
// If an error occurs the operator will be notified when the API function fails
return
}
}
const reactivateOrg = async () => {
await handleReactivateOrg(orgID)
}
const deleteOn = organization?.deleteOn
? new Date(organization?.deleteOn)
: null
const hasDeleteDate = Boolean(deleteOn)
return (
<Overlay
visible={true}
renderMaskElement={() => (
<Overlay.Mask gradient={Gradients.PowerStone} style={{opacity: 0.5}} />
)}
testID="org-overlay"
transitionDuration={0}
>
<Overlay.Container maxWidth={1000}>
<Overlay.Header
title="Organization Details"
className="overlay-header--color"
onDismiss={() => history.goBack()}
/>
<SpinnerContainer
loading={orgStatus}
spinnerComponent={<TechnoSpinner diameterPixels={100} />}
>
<Overlay.Body>
<Panel.Body>
<Grid>
<Grid.Row>
<Grid.Column
widthMD={Columns.Four}
testID="org-overlay-orgID"
>
<label className="org-overlay-detail--text">
Organization ID
</label>
<p>{orgID}</p>
</Grid.Column>
<Grid.Column widthMD={Columns.Four}>
<label className="org-overlay-detail--text">
Organization Name
</label>
<p>{organization?.name ?? ''}</p>
</Grid.Column>
<Grid.Column widthMD={Columns.Four}>
<LinkButton
color={ComponentColor.Secondary}
size={ComponentSize.Medium}
shape={ButtonShape.Default}
testID="usage-button"
text="View Usage Dashboard"
target={LinkTarget.Blank}
className="overlay-button--link"
style={viewUsageButtonStyles}
href={`${TOOLS_URL}orgs/5d59ccc5163fc318/dashboards/0988da0fd78a7003?vars%5Borgid%5D=${orgID}`}
/>
{canReactivateOrg && (
<ButtonBase
color={ComponentColor.Primary}
shape={ButtonShape.Default}
size={ComponentSize.Medium}
onClick={reactivateOrg}
style={reactivateOrgButtonStyles}
status={
reactivateOrgStatus === RemoteDataState.Loading
? ComponentStatus.Disabled
: ComponentStatus.Default
}
testID="org-overlay-reactivate-organization--button"
type={ButtonType.Button}
>
Reactivate Organization
</ButtonBase>
)}
</Grid.Column>
</Grid.Row>
<Grid.Row>
<Grid.Column widthMD={Columns.Four}>
<label className="org-overlay-detail--text">
Organization State
</label>
<p>{organization?.state ?? ''}</p>
</Grid.Column>
<Grid.Column widthMD={Columns.Four}>
<label className="org-overlay-detail--text">
Account Type
</label>
<p>{organization?.account?.type ?? ''}</p>
</Grid.Column>
</Grid.Row>
<Grid.Row>
<Grid.Column widthMD={Columns.Four}>
<label className="org-overlay-detail--text">
Organization State
</label>
<p>{organization?.state ?? ''}</p>
</Grid.Column>
<Grid.Column widthMD={Columns.Four}>
<label className="org-overlay-detail--text">
Delete On
</label>
<p>
{organization?.state === 'suspended' && hasDeleteDate
? `${deleteOn.toLocaleTimeString()} ${deleteOn.toDateString()}`
: 'N/A'}
</p>
</Grid.Column>
</Grid.Row>
<SpinnerContainer
loading={limitsStatus}
spinnerComponent={<TechnoSpinner diameterPixels={100} />}
testID="limits-spinner-container"
>
<Grid.Row>
<h4>Limits</h4>
<Grid.Column widthMD={Columns.Four}>
<Form.Label label="Read (KB/s)" testID="read-kbs" />
<LimitsField
type={InputType.Number}
name="rate.readKBs"
limits={limits}
onChangeLimits={setLimits}
/>
</Grid.Column>
<Grid.Column widthMD={Columns.Four}>
<Form.Label label="Write (KB/s)" />
<LimitsField
type={InputType.Number}
name="rate.writeKBs"
limits={limits}
onChangeLimits={setLimits}
/>
</Grid.Column>
{canSeeTsmLimits && (
<Grid.Column widthMD={Columns.Four}>
<Form.Label label="Series Cardinality" />
<LimitsField
type={InputType.Number}
name="rate.cardinality"
limits={limits}
onChangeLimits={setLimits}
/>
</Grid.Column>
)}
</Grid.Row>
<Grid.Row>
<Grid.Column widthMD={Columns.Four}>
<Form.Label label="Query Time (seconds)" />
<LimitsField
type={InputType.Number}
name="rate.queryTime"
limits={limits}
onChangeLimits={setLimits}
/>
</Grid.Column>
</Grid.Row>
<Grid.Row>
<Grid.Column widthMD={Columns.Four}>
<Form.Label label="Max Buckets" />
<LimitsField
type={InputType.Number}
name="bucket.maxBuckets"
limits={limits}
onChangeLimits={setLimits}
/>
</Grid.Column>
<Grid.Column widthMD={Columns.Four}>
<Form.Label label="Max Retention Duration (hours)" />
<LimitsField
type={InputType.Number}
name="bucket.maxRetentionDuration"
limits={limits}
onChangeLimits={setLimits}
/>
</Grid.Column>
{canSeeTsmLimits && (
<Grid.Column widthMD={Columns.Four}>
<Form.Label label="Max Notifications" />
<LimitsField
type={InputType.Number}
name="notificationRule.maxNotifications"
limits={limits}
onChangeLimits={setLimits}
/>
</Grid.Column>
)}
</Grid.Row>
{canSeeTsmLimits && (
<Grid.Row>
<Grid.Column widthMD={Columns.Four}>
<Form.Label label="Max Dashboards" />
<LimitsField
type={InputType.Number}
name="dashboard.maxDashboards"
limits={limits}
onChangeLimits={setLimits}
/>
</Grid.Column>
<Grid.Column widthMD={Columns.Four}>
<Form.Label label="Max Tasks" />
<LimitsField
type={InputType.Number}
name="task.maxTasks"
limits={limits}
onChangeLimits={setLimits}
/>
</Grid.Column>
<Grid.Column widthMD={Columns.Four}>
<Form.Label label="Max Checks" />
<LimitsField
type={InputType.Number}
name="check.maxChecks"
limits={limits}
onChangeLimits={setLimits}
/>
</Grid.Column>
</Grid.Row>
)}
{limits?.timeout && (
<Grid.Row>
<Grid.Column widthMD={Columns.Four}>
<Form.Label label="Unconditional Timeout (seconds)" />
<LimitsField
type={InputType.Number}
name="timeout.queryUnconditionalTimeoutSeconds"
limits={limits}
onChangeLimits={setLimits}
/>
</Grid.Column>
<Grid.Column widthMD={Columns.Four}>
<Form.Label label="Idle Write Timeout (seconds)" />
<LimitsField
type={InputType.Number}
name="timeout.queryidleWriteTimeoutSeconds"
limits={limits}
onChangeLimits={setLimits}
/>
</Grid.Column>
</Grid.Row>
)}
{limits?.stack && (
<Grid.Row>
<Grid.Column widthMD={Columns.Four}>
<Form.Label label="Stack" />
<LimitsField
type={InputType.Text}
name="stack.enabled"
limits={limits}
onChangeLimits={setLimits}
/>
</Grid.Column>
</Grid.Row>
)}
{limits?.ioxQuery && (
<Grid.Row>
<Grid.Column widthMD={Columns.Four}>
<Form.Label label="Partitions" />
<LimitsField
type={InputType.Number}
name="ioxQuery.partitions"
limits={limits}
onChangeLimits={setLimits}
/>
</Grid.Column>
<Grid.Column widthMD={Columns.Four}>
<Form.Label label="Parquet Files" />
<LimitsField
type={InputType.Number}
name="ioxQuery.parquetFiles"
limits={limits}
onChangeLimits={setLimits}
/>
</Grid.Column>
</Grid.Row>
)}
<Grid.Row>
<h4>Notification Rules</h4>
<Grid.Column widthMD={Columns.Four}>
<Form.Label label="Blocked Notification Rules" />
<LimitsField
type={InputType.Text}
name="notificationRule.blockedNotificationRules"
limits={limits}
onChangeLimits={setLimits}
/>
</Grid.Column>
<Grid.Column widthMD={Columns.Four}>
<Form.Label label="Blocked Notification Endpoints" />
<LimitsField
type={InputType.Text}
name="notificationEndpoint.blockedNotificationEndpoints"
limits={limits}
onChangeLimits={setLimits}
/>
</Grid.Column>
</Grid.Row>
<Grid.Row>
<Grid.Column widthMD={Columns.Twelve}>
<MigrateOrg />
</Grid.Column>
</Grid.Row>
</SpinnerContainer>
</Grid>
</Panel.Body>
</Overlay.Body>
<Overlay.Footer>
{hasWritePermissions && (
<>
<ButtonBase
color={ComponentColor.Default}
onClick={() => history.goBack()}
testID="org-overlay--cancel-button"
>
Cancel
</ButtonBase>
<ButtonBase
color={ComponentColor.Primary}
onClick={updateLimits}
testID="org-overlay--submit-button"
status={
updateLimitStatus === RemoteDataState.Error
? ComponentStatus.Disabled
: ComponentStatus.Default
}
>
Submit Changes
</ButtonBase>
</>
)}
</Overlay.Footer>
</SpinnerContainer>
</Overlay.Container>
</Overlay>
)
}