-
Notifications
You must be signed in to change notification settings - Fork 296
Expand file tree
/
Copy pathStartNotebookModal.tsx
More file actions
472 lines (448 loc) · 15.6 KB
/
StartNotebookModal.tsx
File metadata and controls
472 lines (448 loc) · 15.6 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
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
/* eslint-disable @odh-dashboard/no-restricted-imports */
import * as React from 'react';
import {
Alert,
AlertVariant,
Content,
ContentVariants,
DescriptionList,
DescriptionListDescription,
DescriptionListGroup,
DescriptionListTerm,
Flex,
FlexItem,
Modal,
ModalBody,
ModalFooter,
ModalHeader,
ModalVariant,
Panel,
PanelMain,
ProgressStep,
ProgressStepper,
ProgressStepVariant,
Skeleton,
Stack,
StackItem,
Tab,
Tabs,
TabTitleText,
Title,
} from '@patternfly/react-core';
import {
t_global_icon_color_brand_default as BrandIconColor,
t_global_icon_size_font_md as InfoIconSize,
t_global_spacer_xs as ExtraSmallSpacerSize,
t_global_text_color_regular as RegularColor,
t_global_text_color_disabled as DisabledColor,
t_global_text_color_status_danger_default as DangerColor,
t_global_text_color_status_info_default as InfoColor,
t_global_text_color_status_warning_default as WarningColor,
} from '@patternfly/react-tokens';
import { InfoCircleIcon, InProgressIcon } from '@patternfly/react-icons';
import { EventStatus, NotebookStatus, ProgressionStepTitles } from '#~/types';
import { EventKind, NotebookKind } from '#~/k8sTypes';
import { useNotebookProgress } from '#~/utilities/notebookControllerUtils';
import useClusterQueue from '#~/utilities/useClusterQueue';
import useAssignedFlavor from '#~/utilities/useAssignedFlavor';
import { getAllConsumedResources } from '#~/utilities/clusterQueueUtils';
import { ProjectDetailsContext } from '#~/pages/projects/ProjectDetailsContext';
import { getClusterQueueNameFromLocalQueues } from '#~/pages/hardwareProfiles/utils';
import { useKueueConfiguration } from '#~/concepts/hardwareProfiles/kueueUtils';
import {
KUEUE_STATUSES_OVERRIDE_WORKBENCH,
type KueueWorkloadStatusWithMessage,
} from '#~/concepts/kueue/types';
import { getHumanReadableKueueMessage } from '#~/concepts/kueue/messageUtils';
import { KUEUE_QUEUE_LABEL } from '#~/concepts/kueue/index';
import EventLog from '#~/concepts/k8s/EventLog/EventLog';
import NotebookStatusLabel from './NotebookStatusLabel';
import './StartNotebookModal.scss';
const PROGRESS_TAB = 'Progress';
const EVENT_LOG_TAB = 'Events log';
const RESOURCES_TAB = 'Resources';
const progressVariants = {
[EventStatus.PENDING]: ProgressStepVariant.pending,
[EventStatus.IN_PROGRESS]: ProgressStepVariant.pending,
[EventStatus.ERROR]: ProgressStepVariant.danger,
[EventStatus.INFO]: ProgressStepVariant.info,
[EventStatus.WARNING]: ProgressStepVariant.warning,
[EventStatus.SUCCESS]: ProgressStepVariant.success,
};
type StartNotebookModalProps = {
notebook?: NotebookKind;
isStarting: boolean;
isRunning: boolean;
isStopping: boolean;
notebookStatus: NotebookStatus | null;
events: EventKind[];
kueueStatus?: KueueWorkloadStatusWithMessage | null;
onClose?: () => void;
buttons: React.ReactNode;
};
type SpawnStatus = {
status: AlertVariant;
title: string;
description: React.ReactNode;
};
const StartNotebookModal: React.FC<StartNotebookModalProps> = ({
notebookStatus,
events,
notebook = null,
isStarting,
isRunning,
isStopping,
kueueStatus: kueueStatusProp,
onClose,
buttons,
}) => {
const [spawnStatus, setSpawnStatus] = React.useState<SpawnStatus | null>(null);
const isError = notebookStatus?.currentStatus === EventStatus.ERROR;
const isStopped = !isError && !isRunning && !isStarting && !isStopping;
const notebookProgress = useNotebookProgress(notebook, isRunning, isStopping, isStopped, events);
const inProgress = !isStopped && (isStarting || isStopping || !isRunning);
const { currentProject: project, localQueues } = React.useContext(ProjectDetailsContext);
const { isProjectKueueEnabled, isKueueFeatureEnabled } = useKueueConfiguration(project);
const showResourcesTab = Boolean(isKueueFeatureEnabled && isProjectKueueEnabled);
const kueueStatus = kueueStatusProp;
const [activeTab, setActiveTab] = React.useState<string>(PROGRESS_TAB);
React.useEffect(() => {
if (!showResourcesTab && activeTab === RESOURCES_TAB) {
setActiveTab(PROGRESS_TAB);
}
}, [showResourcesTab, activeTab]);
const localQueueName = notebook?.metadata.labels?.[KUEUE_QUEUE_LABEL];
const clusterQueueName = getClusterQueueNameFromLocalQueues(localQueueName, localQueues);
const shouldShowResources = Boolean(isProjectKueueEnabled && localQueueName && clusterQueueName);
const {
clusterQueue,
loaded: clusterQueueLoaded,
error: clusterQueueError,
} = useClusterQueue(shouldShowResources ? clusterQueueName : undefined);
const workloadNamespace =
shouldShowResources && project.metadata.name ? project.metadata.name : undefined;
const assignedFlavorName = useAssignedFlavor(
workloadNamespace,
localQueueName ?? undefined,
notebook != null ? notebook.metadata.name : undefined,
);
const quotaSource = clusterQueue?.spec.cohortName ?? '-';
const consumedResources = clusterQueue
? getAllConsumedResources(clusterQueue, assignedFlavorName)
: [];
const hasClusterQueueError = Boolean(clusterQueueError);
React.useEffect(() => {
if (isStarting && !isRunning) {
if (!notebookStatus) {
return;
}
if (notebookStatus.currentStatus === EventStatus.IN_PROGRESS) {
setSpawnStatus(null);
return;
}
setSpawnStatus({
status:
notebookStatus.currentStatus === EventStatus.ERROR
? AlertVariant.danger
: notebookStatus.currentStatus === EventStatus.INFO ||
notebookStatus.currentStatus === EventStatus.SUCCESS
? AlertVariant.info
: AlertVariant.warning,
title: notebookStatus.currentEventReason,
description: notebookStatus.currentEventDescription,
});
}
}, [isRunning, isStarting, notebookStatus]);
const renderLastUpdate = () => {
const showKueueMessage =
kueueStatus?.status && KUEUE_STATUSES_OVERRIDE_WORKBENCH.includes(kueueStatus.status);
const showKueueStatusWhenStopped = isStopped && showKueueMessage;
if (
isRunning ||
(isStopped && !showKueueMessage) ||
(spawnStatus?.status !== AlertVariant.danger && !inProgress && !showKueueStatusWhenStopped)
) {
return null;
}
let color: string;
switch (spawnStatus?.status) {
case AlertVariant.danger:
color = DangerColor.var;
break;
case AlertVariant.warning:
color = WarningColor.var;
break;
default:
color = RegularColor.var;
}
const kueueTitle = showKueueMessage
? getHumanReadableKueueMessage(kueueStatus.status, kueueStatus.message, kueueStatus.queueName)
: null;
const workbenchTitle =
notebookStatus?.currentEvent ||
(isStarting
? 'Waiting for server request to start...'
: isStopping
? 'Shutting down the server...'
: 'Creating resources...');
const title = kueueTitle ?? workbenchTitle;
return (
<StackItem>
<Flex gap={{ default: 'gapSm' }}>
{(!spawnStatus || spawnStatus.status === AlertVariant.info) && inProgress ? (
<FlexItem>
<InProgressIcon style={{ color: BrandIconColor.var }} className="ai-u-spin" />
</FlexItem>
) : null}
<FlexItem>
<Content style={{ color }} data-testid="notebook-latest-status">
{title}
</Content>
</FlexItem>
</Flex>
</StackItem>
);
};
const renderStatus = () => {
if (isStopped) {
return null;
}
if (spawnStatus?.status === AlertVariant.danger) {
return (
<StackItem>
<Alert
isInline
variant={spawnStatus.status}
title={spawnStatus.title}
data-testid={`${spawnStatus.status}-${spawnStatus.title}`}
>
<p>{spawnStatus.description}</p>
</Alert>
</StackItem>
);
}
if (!spawnStatus && inProgress) {
return (
<StackItem>
<Content>
Depending on the size and resources requested, this can take several minutes.
</Content>
</StackItem>
);
}
return null;
};
const renderLogs = () => (
<Panel isScrollable>
<PanelMain>
{(isStopped || isRunning) && events.length === 0 ? (
<span style={{ color: DisabledColor.var }}>There are no recent events.</span>
) : (
<EventLog events={events} initialMessage="Server requested" dataTestId="event-logs" />
)}
</PanelMain>
</Panel>
);
const renderResources = () => {
if (!isProjectKueueEnabled || !localQueueName || !clusterQueueName) {
return (
<Content data-testid="resources-no-queue">
No cluster queue information for this workbench.
</Content>
);
}
if (!clusterQueueLoaded && !hasClusterQueueError) {
return (
<Stack hasGutter>
<StackItem>
<Skeleton data-testid="cluster-queue-section" />
</StackItem>
<StackItem>
<Skeleton data-testid="quotas-section" />
</StackItem>
</Stack>
);
}
return (
<Stack hasGutter={false}>
<StackItem>
<DescriptionList
isHorizontal
horizontalTermWidthModifier={{ default: '5ch' }}
data-testid="cluster-queue-section"
isCompact
>
<Title headingLevel="h6" size="md">
Cluster queue
</Title>
<DescriptionListGroup>
<DescriptionListTerm style={{ fontWeight: 'normal' }}>Queue:</DescriptionListTerm>
<DescriptionListDescription data-testid="queue-value">
{clusterQueueName}
</DescriptionListDescription>
</DescriptionListGroup>
</DescriptionList>
</StackItem>
<StackItem className="pf-v6-u-mt-md pf-v6-u-mb-md">
<Stack hasGutter data-testid="quotas-section">
<StackItem>
<Title headingLevel="h6" size="md">
Quotas and consumption
</Title>
</StackItem>
<StackItem>
<DescriptionList isHorizontal horizontalTermWidthModifier={{ default: '10ch' }}>
<DescriptionListGroup>
<DescriptionListTerm style={{ fontWeight: 'normal' }}>
Quota source:
</DescriptionListTerm>
<DescriptionListDescription data-testid="quota-source-value">
{hasClusterQueueError ? '-' : quotaSource}
</DescriptionListDescription>
</DescriptionListGroup>
</DescriptionList>
</StackItem>
{hasClusterQueueError ? (
<StackItem>
<Content>Unable to load consumption data.</Content>
</StackItem>
) : (
consumedResources.map((resource) => (
<StackItem key={resource.name}>
<Content component={ContentVariants.dd}>
{resource.label.charAt(0).toUpperCase() + resource.label.slice(1)}
</Content>
<Stack hasGutter={false} className="pf-v6-u-pl-md">
<StackItem>
<Content>Total: {resource.total}</Content>
</StackItem>
<StackItem>
<Content data-testid="consumed-quota-value">
Consumed: {resource.consumed} ({resource.percentage}%)
</Content>
</StackItem>
</Stack>
</StackItem>
))
)}
</Stack>
</StackItem>
</Stack>
);
};
const renderProgress = () => (
<Flex direction={{ default: 'column' }} gap={{ default: 'gapMd' }} style={{ height: '100%' }}>
<FlexItem>
<Flex gap={{ default: 'gapSm' }} flexWrap={{ default: 'nowrap' }}>
<FlexItem>
<InfoCircleIcon
style={{
color: InfoColor.var,
fontSize: InfoIconSize.var,
paddingTop: ExtraSmallSpacerSize.var,
}}
/>
</FlexItem>
<FlexItem>
Steps may repeat or occur in any order, depending on the workbench's priority in
the queue and current resource availability.
</FlexItem>
</Flex>
</FlexItem>
<FlexItem flex={{ default: 'flex_1' }} style={{ overflowY: 'scroll', minHeight: 0 }}>
<ProgressStepper isVertical data-testid="notebook-startup-steps">
{notebookProgress.map((progressStep, i) => (
<ProgressStep
key={`${progressStep.timestamp}-${i}`}
variant={progressVariants[progressStep.status]}
aria-label={progressStep.status}
id={`${progressStep.timestamp}`}
titleId={`${progressStep.timestamp}-title`}
data-testid={`step-status-${progressStep.status}`}
>
{ProgressionStepTitles[progressStep.step]}
</ProgressStep>
))}
</ProgressStepper>
</FlexItem>
</Flex>
);
const renderActiveTabContent = (): React.ReactNode => {
switch (activeTab) {
case PROGRESS_TAB:
return renderProgress();
case EVENT_LOG_TAB:
return renderLogs();
case RESOURCES_TAB:
return renderResources();
default:
return renderProgress();
}
};
return (
<Modal
appendTo={document.body}
variant={ModalVariant.small}
isOpen
onClose={onClose}
data-testid="notebook-status-modal"
>
<ModalHeader
data-testid="notebook-status-modal-header"
title={
<Flex gap={{ default: 'gapMd' }} alignItems={{ default: 'alignItemsCenter' }}>
<FlexItem>Workbench status</FlexItem>
<FlexItem>
<NotebookStatusLabel
isStarting={isStarting && !isRunning}
isStopping={isStopping}
isRunning={isRunning}
notebookStatus={notebookStatus}
kueueStatus={kueueStatus}
/>
</FlexItem>
</Flex>
}
/>
<ModalBody className="start-notebook-modal__content-height">
<Stack hasGutter style={{ height: '100%', display: 'flex', flexDirection: 'column' }}>
{renderLastUpdate()}
{renderStatus()}
<StackItem>
<Tabs
activeKey={activeTab}
onSelect={(_ev, tabIndex) => setActiveTab(`${tabIndex}`)}
aria-label="status details"
>
<Tab
eventKey={PROGRESS_TAB}
aria-label={PROGRESS_TAB}
title={<TabTitleText>{PROGRESS_TAB}</TabTitleText>}
data-testid="expand-progress"
/>
<Tab
eventKey={EVENT_LOG_TAB}
aria-label={EVENT_LOG_TAB}
title={<TabTitleText>{EVENT_LOG_TAB}</TabTitleText>}
data-testid="expand-logs"
/>
{showResourcesTab && (
<Tab
eventKey={RESOURCES_TAB}
aria-label={RESOURCES_TAB}
title={<TabTitleText>{RESOURCES_TAB}</TabTitleText>}
data-testid="expand-resources"
/>
)}
</Tabs>
</StackItem>
<StackItem isFilled className="start-notebook-modal__filled-stack-item">
{renderActiveTabContent()}
</StackItem>
</Stack>
</ModalBody>
<ModalFooter>{buttons}</ModalFooter>
</Modal>
);
};
export default StartNotebookModal;