-
Notifications
You must be signed in to change notification settings - Fork 178
Expand file tree
/
Copy pathModelDetailsCard.tsx
More file actions
266 lines (252 loc) · 8.45 KB
/
ModelDetailsCard.tsx
File metadata and controls
266 lines (252 loc) · 8.45 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
import React from 'react';
import {
Card,
DescriptionList,
StackItem,
Stack,
CardBody,
ClipboardCopy,
Content,
CardHeader,
CardExpandableContent,
Sidebar,
SidebarPanel,
SidebarContent,
Alert,
Title,
} from '@patternfly/react-core';
import {
EditableTextDescriptionListGroup,
DashboardDescriptionListGroup,
EditableLabelsDescriptionListGroup,
} from 'mod-arch-shared';
import { ModelRegistryCustomProperties, RegisteredModel } from '~/app/types';
import ModelTimestamp from '~/app/pages/modelRegistry/screens/components/ModelTimestamp';
import ModelPropertiesExpandableSection from '~/app/pages/modelRegistry/screens/components/ModelPropertiesExpandableSection';
import { ModelRegistryContext } from '~/app/context/ModelRegistryContext';
import { getLabels, mergeUpdatedLabels } from '~/app/pages/modelRegistry/screens/utils';
import { EMPTY_CUSTOM_PROPERTY_VALUE } from '~/concepts/modelCatalog/const';
import { formatModelTypeDisplay } from '~/app/pages/modelCatalog/utils/modelCatalogUtils';
import { getModelTypeRawStringFromCustomProperties } from '~/app/pages/modelRegistry/screens/RegisterModel/registerModelTypeUtils';
type ModelDetailsCardProps = {
registeredModel: RegisteredModel;
refresh: () => void;
isArchiveModel?: boolean;
isExpandable?: boolean;
/** If `model_type` is absent on the registered model, read from these (e.g. version custom properties). */
modelTypeFallbackCustomProperties?: ModelRegistryCustomProperties;
};
const ModelDetailsCard: React.FC<ModelDetailsCardProps> = ({
registeredModel: rm,
refresh,
isArchiveModel,
isExpandable,
modelTypeFallbackCustomProperties,
}) => {
const { apiState } = React.useContext(ModelRegistryContext);
const [isExpanded, setIsExpanded] = React.useState(false);
const [isEditingProperties, setIsEditingProperties] = React.useState({
labels: false,
description: false,
properties: false,
});
const showEditingAlert = Object.values(isEditingProperties).some((value) => value);
const handleLabelsEditingChange = React.useCallback((isEditing: boolean) => {
setIsEditingProperties((prev) => ({ ...prev, labels: isEditing }));
}, []);
const handleDescriptionEditingChange = React.useCallback((isEditing: boolean) => {
setIsEditingProperties((prev) => ({ ...prev, description: isEditing }));
}, []);
const handlePropertiesEditingChange = React.useCallback((isEditing: boolean) => {
setIsEditingProperties((prev) => ({ ...prev, properties: isEditing }));
}, []);
const labelsSection = (
<EditableLabelsDescriptionListGroup
key={`labels-${rm.lastUpdateTimeSinceEpoch}`}
labels={getLabels(rm.customProperties)}
isArchive={isArchiveModel}
allExistingKeys={Object.keys(rm.customProperties)}
title="Labels"
contentWhenEmpty="No labels"
onLabelsChange={(editedLabels) =>
apiState.api
.patchRegisteredModel(
{},
{
customProperties: mergeUpdatedLabels(rm.customProperties, editedLabels),
},
rm.id,
)
.then(refresh)
}
isCollapsible={false}
labelProps={{ variant: 'outline', color: 'grey' }}
onEditingChange={isExpandable ? handleLabelsEditingChange : undefined}
/>
);
const descriptionSection = (
<EditableTextDescriptionListGroup
key={`description-${rm.lastUpdateTimeSinceEpoch}`}
truncateMaxLines={3}
editableVariant="TextArea"
baseTestId="model-description"
title="Description"
isArchive={isArchiveModel}
contentWhenEmpty="No description"
value={rm.description || ''}
saveEditedValue={(value) =>
apiState.api
.patchRegisteredModel(
{},
{
description: value,
},
rm.id,
)
.then(refresh)
}
onEditingChange={isExpandable ? handleDescriptionEditingChange : undefined}
/>
);
const modelTypeRaw =
getModelTypeRawStringFromCustomProperties(rm.customProperties) ??
getModelTypeRawStringFromCustomProperties(modelTypeFallbackCustomProperties);
const infoSection = (
<>
<DashboardDescriptionListGroup
title="Owner"
popover="The owner is the user who registered the model."
>
<Content component="p" data-testid="registered-model-owner">
{rm.owner || EMPTY_CUSTOM_PROPERTY_VALUE}
</Content>
</DashboardDescriptionListGroup>
<DashboardDescriptionListGroup title="Model ID">
<ClipboardCopy
hoverTip="Copy"
clickTip="Copied"
variant="inline-compact"
data-testid="registered-model-id-clipboard-copy"
>
{rm.id}
</ClipboardCopy>
</DashboardDescriptionListGroup>
<DashboardDescriptionListGroup
isEmpty={!rm.lastUpdateTimeSinceEpoch}
contentWhenEmpty="Unknown"
title="Last modified"
>
<ModelTimestamp timeSinceEpoch={rm.lastUpdateTimeSinceEpoch} />
</DashboardDescriptionListGroup>
<DashboardDescriptionListGroup
isEmpty={!rm.createTimeSinceEpoch}
contentWhenEmpty="Unknown"
title="Created"
>
<ModelTimestamp timeSinceEpoch={rm.createTimeSinceEpoch} />
</DashboardDescriptionListGroup>
<DashboardDescriptionListGroup title="Model type">
<Content component="p" data-testid="registered-model-model-type">
{formatModelTypeDisplay(modelTypeRaw)}
</Content>
</DashboardDescriptionListGroup>
</>
);
const propertiesSection = (
<ModelPropertiesExpandableSection
key={`properties-${rm.lastUpdateTimeSinceEpoch}`}
modelName={rm.name}
isArchive={isArchiveModel}
customProperties={rm.customProperties}
saveEditedCustomProperties={(editedProperties) =>
apiState.api
.patchRegisteredModel({}, { customProperties: editedProperties }, rm.id)
.then(refresh)
}
onEditingChange={isExpandable ? handlePropertiesEditingChange : undefined}
showInlineAlerts
/>
);
const cardBody = (
<>
{isExpandable && showEditingAlert && (
<CardBody>
<Alert
variant="info"
title="Changes affect all model versions"
ouiaId="InfoAlert"
data-testid="edit-alert"
>
<p>
Editing the model details will apply changes to all versions of the <b>{rm.name}</b>{' '}
model.
</p>
</Alert>
</CardBody>
)}
<CardBody>
{isExpandable ? (
<Sidebar hasBorder hasGutter isPanelRight>
<SidebarContent>
<DescriptionList>
{labelsSection}
{descriptionSection}
{propertiesSection}
</DescriptionList>
{/* TODO: Add model card markdown here */}
</SidebarContent>
<SidebarPanel width={{ default: 'width_33' }}>
<DescriptionList>{infoSection}</DescriptionList>
</SidebarPanel>
</Sidebar>
) : (
<Stack hasGutter>
<StackItem>
<DescriptionList>
{labelsSection}
{descriptionSection}
</DescriptionList>
</StackItem>
<StackItem>
<DescriptionList columnModifier={{ default: '1Col', md: '2Col' }}>
{infoSection}
</DescriptionList>
</StackItem>
<StackItem>{propertiesSection}</StackItem>
{/* TODO: Add model card markdown here */}
</Stack>
)}
</CardBody>
</>
);
return (
<Card isExpanded={isExpanded} style={{ overflow: 'visible' }}>
{isExpandable ? (
<>
<CardHeader
onExpand={() => setIsExpanded(!isExpanded)}
toggleButtonProps={{
id: 'toggle-button1',
'data-testid': 'model-details-card-toggle-button',
'aria-label': 'Details',
'aria-expanded': isExpanded,
}}
>
<Title headingLevel="h2">Model details</Title>
</CardHeader>
<CardExpandableContent data-testid="model-details-card-expandable-content">
{cardBody}
</CardExpandableContent>
</>
) : (
<>
<CardHeader>
<Title headingLevel="h2">Model details</Title>
</CardHeader>
{cardBody}
</>
)}
</Card>
);
};
export default ModelDetailsCard;