Merge branch '9964-output-glob-acr' refs #9964
[arvados.git] / services / workbench2 / src / views-components / data-explorer / renderers.tsx
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 import React from "react";
6 import { Grid, Typography, withStyles, Tooltip, IconButton, Checkbox, Chip, withTheme } from "@material-ui/core";
7 import { FavoriteStar, PublicFavoriteStar } from "../favorite-star/favorite-star";
8 import { Resource, ResourceKind, TrashableResource } from "models/resource";
9 import {
10     FreezeIcon,
11     ProjectIcon,
12     FilterGroupIcon,
13     CollectionIcon,
14     ProcessIcon,
15     DefaultIcon,
16     ShareIcon,
17     CollectionOldVersionIcon,
18     WorkflowIcon,
19     RemoveIcon,
20     RenameIcon,
21     ActiveIcon,
22     SetupIcon,
23     InactiveIcon,
24     ErrorIcon,
25 } from "components/icon/icon";
26 import { formatDate, formatFileSize, formatTime } from "common/formatters";
27 import { resourceLabel } from "common/labels";
28 import { connect, DispatchProp } from "react-redux";
29 import { RootState } from "store/store";
30 import { getResource, filterResources } from "store/resources/resources";
31 import { GroupContentsResource } from "services/groups-service/groups-service";
32 import { getProcess, Process, getProcessStatus, getProcessStatusStyles, getProcessRuntime } from "store/processes/process";
33 import { ArvadosTheme } from "common/custom-theme";
34 import { compose, Dispatch } from "redux";
35 import { WorkflowResource } from "models/workflow";
36 import { ResourceStatus as WorkflowStatus } from "views/workflow-panel/workflow-panel-view";
37 import { getUuidPrefix, openRunProcess } from "store/workflow-panel/workflow-panel-actions";
38 import { openSharingDialog } from "store/sharing-dialog/sharing-dialog-actions";
39 import { getUserFullname, getUserDisplayName, User, UserResource } from "models/user";
40 import { LinkClass, LinkResource } from "models/link";
41 import { navigateTo, navigateToGroupDetails, navigateToUserProfile } from "store/navigation/navigation-action";
42 import { withResourceData } from "views-components/data-explorer/with-resources";
43 import { CollectionResource } from "models/collection";
44 import { IllegalNamingWarning } from "components/warning/warning";
45 import { loadResource } from "store/resources/resources-actions";
46 import { BuiltinGroups, getBuiltinGroupUuid, GroupClass, GroupResource, isBuiltinGroup } from "models/group";
47 import { openRemoveGroupMemberDialog } from "store/group-details-panel/group-details-panel-actions";
48 import { setMemberIsHidden } from "store/group-details-panel/group-details-panel-actions";
49 import { formatPermissionLevel } from "views-components/sharing-dialog/permission-select";
50 import { PermissionLevel } from "models/permission";
51 import { openPermissionEditContextMenu } from "store/context-menu/context-menu-actions";
52 import { VirtualMachinesResource } from "models/virtual-machines";
53 import { CopyToClipboardSnackbar } from "components/copy-to-clipboard-snackbar/copy-to-clipboard-snackbar";
54 import { ProjectResource } from "models/project";
55 import { ProcessResource } from "models/process";
56 import { ServiceRepository } from "services/services";
57 import { loadUsersPanel } from "store/users/users-actions";
58 import { InlinePulser } from "components/loading/inline-pulser";
59 import { ProcessTypeFilter } from "store/resource-type-filters/resource-type-filters";
60
61 export const toggleIsAdmin = (uuid: string) =>
62     async (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => {
63         const { resources } = getState();
64         const data = getResource<UserResource>(uuid)(resources);
65         const isAdmin = data!.isAdmin;
66         const newActivity = await services.userService.update(uuid, { isAdmin: !isAdmin });
67         dispatch<any>(loadUsersPanel());
68         return newActivity;
69     };
70
71 const renderName = (dispatch: Dispatch, item: GroupContentsResource) => {
72     const navFunc = "groupClass" in item && item.groupClass === GroupClass.ROLE ? navigateToGroupDetails : navigateTo;
73     return (
74         <Grid
75             container
76             alignItems="center"
77             wrap="nowrap"
78             spacing={16}
79         >
80             <Grid item>{renderIcon(item)}</Grid>
81             <Grid item>
82                 <Typography
83                     color="primary"
84                     style={{ width: "auto", cursor: "pointer" }}
85                     onClick={(ev) => {
86                         ev.stopPropagation()
87                         dispatch<any>(navFunc(item.uuid))
88                     }}
89                 >
90                     {item.kind === ResourceKind.PROJECT || item.kind === ResourceKind.COLLECTION ? <IllegalNamingWarning name={item.name} /> : null}
91                     {item.name}
92                 </Typography>
93             </Grid>
94             <Grid item>
95                 <Typography variant="caption">
96                     <FavoriteStar resourceUuid={item.uuid} />
97                     <PublicFavoriteStar resourceUuid={item.uuid} />
98                     {item.kind === ResourceKind.PROJECT && <FrozenProject item={item} />}
99                 </Typography>
100             </Grid>
101         </Grid>
102     );
103 };
104
105 export const FrozenProject = (props: { item: ProjectResource }) => {
106     const [fullUsername, setFullusername] = React.useState<any>(null);
107     const getFullName = React.useCallback(() => {
108         if (props.item.frozenByUuid) {
109             setFullusername(<UserNameFromID uuid={props.item.frozenByUuid} />);
110         }
111     }, [props.item, setFullusername]);
112
113     if (props.item.frozenByUuid) {
114         return (
115             <Tooltip
116                 onOpen={getFullName}
117                 enterDelay={500}
118                 title={<span>Project was frozen by {fullUsername}</span>}
119             >
120                 <FreezeIcon style={{ fontSize: "inherit" }} />
121             </Tooltip>
122         );
123     } else {
124         return null;
125     }
126 };
127
128 export const ResourceName = connect((state: RootState, props: { uuid: string }) => {
129     const resource = getResource<GroupContentsResource>(props.uuid)(state.resources);
130     return resource;
131 })((resource: GroupContentsResource & DispatchProp<any>) => renderName(resource.dispatch, resource));
132
133 const renderIcon = (item: GroupContentsResource) => {
134     switch (item.kind) {
135         case ResourceKind.PROJECT:
136             if (item.groupClass === GroupClass.FILTER) {
137                 return <FilterGroupIcon />;
138             }
139             return <ProjectIcon />;
140         case ResourceKind.COLLECTION:
141             if (item.uuid === item.currentVersionUuid) {
142                 return <CollectionIcon />;
143             }
144             return <CollectionOldVersionIcon />;
145         case ResourceKind.PROCESS:
146             return <ProcessIcon />;
147         case ResourceKind.WORKFLOW:
148             return <WorkflowIcon />;
149         default:
150             return <DefaultIcon />;
151     }
152 };
153
154 const renderDate = (date?: string) => {
155     return (
156         <Typography
157             noWrap
158             style={{ minWidth: "100px" }}
159         >
160             {formatDate(date)}
161         </Typography>
162     );
163 };
164
165 const renderWorkflowName = (item: WorkflowResource) => (
166     <Grid
167         container
168         alignItems="center"
169         wrap="nowrap"
170         spacing={16}
171     >
172         <Grid item>{renderIcon(item)}</Grid>
173         <Grid item>
174             <Typography
175                 color="primary"
176                 style={{ width: "100px" }}
177             >
178                 {item.name}
179             </Typography>
180         </Grid>
181     </Grid>
182 );
183
184 export const ResourceWorkflowName = connect((state: RootState, props: { uuid: string }) => {
185     const resource = getResource<WorkflowResource>(props.uuid)(state.resources);
186     return resource;
187 })(renderWorkflowName);
188
189 const getPublicUuid = (uuidPrefix: string) => {
190     return `${uuidPrefix}-tpzed-anonymouspublic`;
191 };
192
193 const resourceShare = (dispatch: Dispatch, uuidPrefix: string, ownerUuid?: string, uuid?: string) => {
194     const isPublic = ownerUuid === getPublicUuid(uuidPrefix);
195     return (
196         <div>
197             {!isPublic && uuid && (
198                 <Tooltip title="Share">
199                     <IconButton onClick={() => dispatch<any>(openSharingDialog(uuid))}>
200                         <ShareIcon />
201                     </IconButton>
202                 </Tooltip>
203             )}
204         </div>
205     );
206 };
207
208 export const ResourceShare = connect((state: RootState, props: { uuid: string }) => {
209     const resource = getResource<WorkflowResource>(props.uuid)(state.resources);
210     const uuidPrefix = getUuidPrefix(state);
211     return {
212         uuid: resource ? resource.uuid : "",
213         ownerUuid: resource ? resource.ownerUuid : "",
214         uuidPrefix,
215     };
216 })((props: { ownerUuid?: string; uuidPrefix: string; uuid?: string } & DispatchProp<any>) =>
217     resourceShare(props.dispatch, props.uuidPrefix, props.ownerUuid, props.uuid)
218 );
219
220 // User Resources
221 const renderFirstName = (item: { firstName: string }) => {
222     return <Typography noWrap>{item.firstName}</Typography>;
223 };
224
225 export const ResourceFirstName = connect((state: RootState, props: { uuid: string }) => {
226     const resource = getResource<UserResource>(props.uuid)(state.resources);
227     return resource || { firstName: "" };
228 })(renderFirstName);
229
230 const renderLastName = (item: { lastName: string }) => <Typography noWrap>{item.lastName}</Typography>;
231
232 export const ResourceLastName = connect((state: RootState, props: { uuid: string }) => {
233     const resource = getResource<UserResource>(props.uuid)(state.resources);
234     return resource || { lastName: "" };
235 })(renderLastName);
236
237 const renderFullName = (dispatch: Dispatch, item: { uuid: string; firstName: string; lastName: string }, link?: boolean) => {
238     const displayName = (item.firstName + " " + item.lastName).trim() || item.uuid;
239     return link ? (
240         <Typography
241             noWrap
242             color="primary"
243             style={{ cursor: "pointer" }}
244             onClick={() => dispatch<any>(navigateToUserProfile(item.uuid))}
245         >
246             {displayName}
247         </Typography>
248     ) : (
249         <Typography noWrap>{displayName}</Typography>
250     );
251 };
252
253 export const UserResourceFullName = connect((state: RootState, props: { uuid: string; link?: boolean }) => {
254     const resource = getResource<UserResource>(props.uuid)(state.resources);
255     return { item: resource || { uuid: "", firstName: "", lastName: "" }, link: props.link };
256 })((props: { item: { uuid: string; firstName: string; lastName: string }; link?: boolean } & DispatchProp<any>) =>
257     renderFullName(props.dispatch, props.item, props.link)
258 );
259
260 const renderUuid = (item: { uuid: string }) => (
261     <Typography
262         data-cy="uuid"
263         noWrap
264     >
265         {item.uuid}
266         {(item.uuid && <CopyToClipboardSnackbar value={item.uuid} />) || "-"}
267     </Typography>
268 );
269
270 const renderUuidCopyIcon = (item: { uuid: string }) => (
271     <Typography
272         data-cy="uuid"
273         noWrap
274     >
275         {(item.uuid && <CopyToClipboardSnackbar value={item.uuid} />) || "-"}
276     </Typography>
277 );
278
279 export const ResourceUuid = connect(
280     (state: RootState, props: { uuid: string }) => getResource<UserResource>(props.uuid)(state.resources) || { uuid: "" }
281 )(renderUuid);
282
283 const renderEmail = (item: { email: string }) => <Typography noWrap>{item.email}</Typography>;
284
285 export const ResourceEmail = connect((state: RootState, props: { uuid: string }) => {
286     const resource = getResource<UserResource>(props.uuid)(state.resources);
287     return resource || { email: "" };
288 })(renderEmail);
289
290 enum UserAccountStatus {
291     ACTIVE = "Active",
292     INACTIVE = "Inactive",
293     SETUP = "Setup",
294     UNKNOWN = "",
295 }
296
297 const renderAccountStatus = (props: { status: UserAccountStatus }) => (
298     <Grid
299         container
300         alignItems="center"
301         wrap="nowrap"
302         spacing={8}
303         data-cy="account-status"
304     >
305         <Grid item>
306             {(() => {
307                 switch (props.status) {
308                     case UserAccountStatus.ACTIVE:
309                         return <ActiveIcon style={{ color: "#4caf50", verticalAlign: "middle" }} />;
310                     case UserAccountStatus.SETUP:
311                         return <SetupIcon style={{ color: "#2196f3", verticalAlign: "middle" }} />;
312                     case UserAccountStatus.INACTIVE:
313                         return <InactiveIcon style={{ color: "#9e9e9e", verticalAlign: "middle" }} />;
314                     default:
315                         return <></>;
316                 }
317             })()}
318         </Grid>
319         <Grid item>
320             <Typography noWrap>{props.status}</Typography>
321         </Grid>
322     </Grid>
323 );
324
325 const getUserAccountStatus = (state: RootState, props: { uuid: string }) => {
326     const user = getResource<UserResource>(props.uuid)(state.resources);
327     // Get membership links for all users group
328     const allUsersGroupUuid = getBuiltinGroupUuid(state.auth.localCluster, BuiltinGroups.ALL);
329     const permissions = filterResources(
330         (resource: LinkResource) =>
331             resource.kind === ResourceKind.LINK &&
332             resource.linkClass === LinkClass.PERMISSION &&
333             resource.headUuid === allUsersGroupUuid &&
334             resource.tailUuid === props.uuid
335     )(state.resources);
336
337     if (user) {
338         return user.isActive
339             ? { status: UserAccountStatus.ACTIVE }
340             : permissions.length > 0
341             ? { status: UserAccountStatus.SETUP }
342             : { status: UserAccountStatus.INACTIVE };
343     } else {
344         return { status: UserAccountStatus.UNKNOWN };
345     }
346 };
347
348 export const ResourceLinkTailAccountStatus = connect((state: RootState, props: { uuid: string }) => {
349     const link = getResource<LinkResource>(props.uuid)(state.resources);
350     return link && link.tailKind === ResourceKind.USER ? getUserAccountStatus(state, { uuid: link.tailUuid }) : { status: UserAccountStatus.UNKNOWN };
351 })(renderAccountStatus);
352
353 export const UserResourceAccountStatus = connect(getUserAccountStatus)(renderAccountStatus);
354
355 const renderIsHidden = (props: {
356     memberLinkUuid: string;
357     permissionLinkUuid: string;
358     visible: boolean;
359     canManage: boolean;
360     setMemberIsHidden: (memberLinkUuid: string, permissionLinkUuid: string, hide: boolean) => void;
361 }) => {
362     if (props.memberLinkUuid) {
363         return (
364             <Checkbox
365                 data-cy="user-visible-checkbox"
366                 color="primary"
367                 checked={props.visible}
368                 disabled={!props.canManage}
369                 onClick={e => {
370                     e.stopPropagation();
371                     props.setMemberIsHidden(props.memberLinkUuid, props.permissionLinkUuid, !props.visible);
372                 }}
373             />
374         );
375     } else {
376         return <Typography />;
377     }
378 };
379
380 export const ResourceLinkTailIsVisible = connect(
381     (state: RootState, props: { uuid: string }) => {
382         const link = getResource<LinkResource>(props.uuid)(state.resources);
383         const member = getResource<Resource>(link?.tailUuid || "")(state.resources);
384         const group = getResource<GroupResource>(link?.headUuid || "")(state.resources);
385         const permissions = filterResources((resource: LinkResource) => {
386             return (
387                 resource.linkClass === LinkClass.PERMISSION &&
388                 resource.headUuid === link?.tailUuid &&
389                 resource.tailUuid === group?.uuid &&
390                 resource.name === PermissionLevel.CAN_READ
391             );
392         })(state.resources);
393
394         const permissionLinkUuid = permissions.length > 0 ? permissions[0].uuid : "";
395         const isVisible = link && group && permissions.length > 0;
396         // Consider whether the current user canManage this resurce in addition when it's possible
397         const isBuiltin = isBuiltinGroup(link?.headUuid || "");
398
399         return member?.kind === ResourceKind.USER
400             ? { memberLinkUuid: link?.uuid, permissionLinkUuid, visible: isVisible, canManage: !isBuiltin }
401             : { memberLinkUuid: "", permissionLinkUuid: "", visible: false, canManage: false };
402     },
403     { setMemberIsHidden }
404 )(renderIsHidden);
405
406 const renderIsAdmin = (props: { uuid: string; isAdmin: boolean; toggleIsAdmin: (uuid: string) => void }) => (
407     <Checkbox
408         color="primary"
409         checked={props.isAdmin}
410         onClick={e => {
411             e.stopPropagation();
412             props.toggleIsAdmin(props.uuid);
413         }}
414     />
415 );
416
417 export const ResourceIsAdmin = connect(
418     (state: RootState, props: { uuid: string }) => {
419         const resource = getResource<UserResource>(props.uuid)(state.resources);
420         return resource || { isAdmin: false };
421     },
422     { toggleIsAdmin }
423 )(renderIsAdmin);
424
425 const renderUsername = (item: { username: string; uuid: string }) => <Typography noWrap>{item.username || item.uuid}</Typography>;
426
427 export const ResourceUsername = connect((state: RootState, props: { uuid: string }) => {
428     const resource = getResource<UserResource>(props.uuid)(state.resources);
429     return resource || { username: "", uuid: props.uuid };
430 })(renderUsername);
431
432 // Virtual machine resource
433
434 const renderHostname = (item: { hostname: string }) => <Typography noWrap>{item.hostname}</Typography>;
435
436 export const VirtualMachineHostname = connect((state: RootState, props: { uuid: string }) => {
437     const resource = getResource<VirtualMachinesResource>(props.uuid)(state.resources);
438     return resource || { hostname: "" };
439 })(renderHostname);
440
441 const renderVirtualMachineLogin = (login: { user: string }) => <Typography noWrap>{login.user}</Typography>;
442
443 export const VirtualMachineLogin = connect((state: RootState, props: { linkUuid: string }) => {
444     const permission = getResource<LinkResource>(props.linkUuid)(state.resources);
445     const user = getResource<UserResource>(permission?.tailUuid || "")(state.resources);
446
447     return { user: user?.username || permission?.tailUuid || "" };
448 })(renderVirtualMachineLogin);
449
450 // Common methods
451 const renderCommonData = (data: string) => <Typography noWrap>{data}</Typography>;
452
453 const renderCommonDate = (date: string) => <Typography noWrap>{formatDate(date)}</Typography>;
454
455 export const CommonUuid = withResourceData("uuid", renderCommonData);
456
457 // Api Client Authorizations
458 export const TokenApiClientId = withResourceData("apiClientId", renderCommonData);
459
460 export const TokenApiToken = withResourceData("apiToken", renderCommonData);
461
462 export const TokenCreatedByIpAddress = withResourceData("createdByIpAddress", renderCommonDate);
463
464 export const TokenExpiresAt = withResourceData("expiresAt", renderCommonDate);
465
466 export const TokenLastUsedAt = withResourceData("lastUsedAt", renderCommonDate);
467
468 export const TokenLastUsedByIpAddress = withResourceData("lastUsedByIpAddress", renderCommonData);
469
470 export const TokenScopes = withResourceData("scopes", renderCommonData);
471
472 export const TokenUserId = withResourceData("userId", renderCommonData);
473
474 const clusterColors = [
475     ["#f44336", "#fff"],
476     ["#2196f3", "#fff"],
477     ["#009688", "#fff"],
478     ["#cddc39", "#fff"],
479     ["#ff9800", "#fff"],
480 ];
481
482 export const ResourceCluster = (props: { uuid: string }) => {
483     const CLUSTER_ID_LENGTH = 5;
484     const pos = props.uuid.length > CLUSTER_ID_LENGTH ? props.uuid.indexOf("-") : 5;
485     const clusterId = pos >= CLUSTER_ID_LENGTH ? props.uuid.substring(0, pos) : "";
486     const ci =
487         pos >= CLUSTER_ID_LENGTH
488             ? ((props.uuid.charCodeAt(0) * props.uuid.charCodeAt(1) + props.uuid.charCodeAt(2)) * props.uuid.charCodeAt(3) +
489                   props.uuid.charCodeAt(4)) %
490               clusterColors.length
491             : 0;
492     return (
493         <span
494             style={{
495                 backgroundColor: clusterColors[ci][0],
496                 color: clusterColors[ci][1],
497                 padding: "2px 7px",
498                 borderRadius: 3,
499             }}
500         >
501             {clusterId}
502         </span>
503     );
504 };
505
506 // Links Resources
507 const renderLinkName = (item: { name: string }) => <Typography noWrap>{item.name || "-"}</Typography>;
508
509 export const ResourceLinkName = connect((state: RootState, props: { uuid: string }) => {
510     const resource = getResource<LinkResource>(props.uuid)(state.resources);
511     return resource || { name: "" };
512 })(renderLinkName);
513
514 const renderLinkClass = (item: { linkClass: string }) => <Typography noWrap>{item.linkClass}</Typography>;
515
516 export const ResourceLinkClass = connect((state: RootState, props: { uuid: string }) => {
517     const resource = getResource<LinkResource>(props.uuid)(state.resources);
518     return resource || { linkClass: "" };
519 })(renderLinkClass);
520
521 const getResourceDisplayName = (resource: Resource): string => {
522     if ((resource as UserResource).kind === ResourceKind.USER && typeof (resource as UserResource).firstName !== "undefined") {
523         // We can be sure the resource is UserResource
524         return getUserDisplayName(resource as UserResource);
525     } else {
526         return (resource as GroupContentsResource).name;
527     }
528 };
529
530 const renderResourceLink = (dispatch: Dispatch, item: Resource ) => {
531     var displayName = getResourceDisplayName(item);
532
533     return (
534         <Typography
535             noWrap
536             color="primary"
537             style={{ cursor: "pointer" }}
538             onClick={() => {
539                 item.kind === ResourceKind.GROUP && (item as GroupResource).groupClass === "role"
540                     ? dispatch<any>(navigateToGroupDetails(item.uuid))
541                     : item.kind === ResourceKind.USER
542                     ? dispatch<any>(navigateToUserProfile(item.uuid))
543                     : dispatch<any>(navigateTo(item.uuid));
544             }}
545         >
546             {resourceLabel(item.kind, item && item.kind === ResourceKind.GROUP ? (item as GroupResource).groupClass || "" : "")}:{" "}
547             {displayName || item.uuid}
548         </Typography>
549     );
550 };
551
552 export const ResourceLinkTail = connect((state: RootState, props: { uuid: string }) => {
553     const resource = getResource<LinkResource>(props.uuid)(state.resources);
554     const tailResource = getResource<Resource>(resource?.tailUuid || "")(state.resources);
555
556     return {
557         item: tailResource || { uuid: resource?.tailUuid || "", kind: resource?.tailKind || ResourceKind.NONE },
558     };
559 })((props: { item: Resource } & DispatchProp<any>) => renderResourceLink(props.dispatch, props.item));
560
561 export const ResourceLinkHead = connect((state: RootState, props: { uuid: string }) => {
562     const resource = getResource<LinkResource>(props.uuid)(state.resources);
563     const headResource = getResource<Resource>(resource?.headUuid || "")(state.resources);
564
565     return {
566         item: headResource || { uuid: resource?.headUuid || "", kind: resource?.headKind || ResourceKind.NONE },
567     };
568 })((props: { item: Resource } & DispatchProp<any>) => renderResourceLink(props.dispatch, props.item));
569
570 export const ResourceLinkUuid = connect((state: RootState, props: { uuid: string }) => {
571     const resource = getResource<LinkResource>(props.uuid)(state.resources);
572     return resource || { uuid: "" };
573 })(renderUuid);
574
575 export const ResourceLinkHeadUuid = connect((state: RootState, props: { uuid: string }) => {
576     const link = getResource<LinkResource>(props.uuid)(state.resources);
577     const headResource = getResource<Resource>(link?.headUuid || "")(state.resources);
578
579     return headResource || { uuid: "" };
580 })(renderUuid);
581
582 export const ResourceLinkTailUuid = connect((state: RootState, props: { uuid: string }) => {
583     const link = getResource<LinkResource>(props.uuid)(state.resources);
584     const tailResource = getResource<Resource>(link?.tailUuid || "")(state.resources);
585
586     return tailResource || { uuid: "" };
587 })(renderUuid);
588
589 const renderLinkDelete = (dispatch: Dispatch, item: LinkResource, canManage: boolean) => {
590     if (item.uuid) {
591         return canManage ? (
592             <Typography noWrap>
593                 <IconButton
594                     data-cy="resource-delete-button"
595                     onClick={() => dispatch<any>(openRemoveGroupMemberDialog(item.uuid))}
596                 >
597                     <RemoveIcon />
598                 </IconButton>
599             </Typography>
600         ) : (
601             <Typography noWrap>
602                 <IconButton
603                     disabled
604                     data-cy="resource-delete-button"
605                 >
606                     <RemoveIcon />
607                 </IconButton>
608             </Typography>
609         );
610     } else {
611         return <Typography noWrap></Typography>;
612     }
613 };
614
615 export const ResourceLinkDelete = connect((state: RootState, props: { uuid: string }) => {
616     const link = getResource<LinkResource>(props.uuid)(state.resources);
617     const isBuiltin = isBuiltinGroup(link?.headUuid || "") || isBuiltinGroup(link?.tailUuid || "");
618
619     return {
620         item: link || { uuid: "", kind: ResourceKind.NONE },
621         canManage: link && getResourceLinkCanManage(state, link) && !isBuiltin,
622     };
623 })((props: { item: LinkResource; canManage: boolean } & DispatchProp<any>) => renderLinkDelete(props.dispatch, props.item, props.canManage));
624
625 export const ResourceLinkTailEmail = connect((state: RootState, props: { uuid: string }) => {
626     const link = getResource<LinkResource>(props.uuid)(state.resources);
627     const resource = getResource<UserResource>(link?.tailUuid || "")(state.resources);
628
629     return resource || { email: "" };
630 })(renderEmail);
631
632 export const ResourceLinkTailUsername = connect((state: RootState, props: { uuid: string }) => {
633     const link = getResource<LinkResource>(props.uuid)(state.resources);
634     const resource = getResource<UserResource>(link?.tailUuid || "")(state.resources);
635
636     return resource || { username: "" };
637 })(renderUsername);
638
639 const renderPermissionLevel = (dispatch: Dispatch, link: LinkResource, canManage: boolean) => {
640     return (
641         <Typography noWrap>
642             {formatPermissionLevel(link.name as PermissionLevel)}
643             {canManage ? (
644                 <IconButton
645                     data-cy="edit-permission-button"
646                     onClick={event => dispatch<any>(openPermissionEditContextMenu(event, link))}
647                 >
648                     <RenameIcon />
649                 </IconButton>
650             ) : (
651                 ""
652             )}
653         </Typography>
654     );
655 };
656
657 export const ResourceLinkHeadPermissionLevel = connect((state: RootState, props: { uuid: string }) => {
658     const link = getResource<LinkResource>(props.uuid)(state.resources);
659     const isBuiltin = isBuiltinGroup(link?.headUuid || "") || isBuiltinGroup(link?.tailUuid || "");
660
661     return {
662         link: link || { uuid: "", name: "", kind: ResourceKind.NONE },
663         canManage: link && getResourceLinkCanManage(state, link) && !isBuiltin,
664     };
665 })((props: { link: LinkResource; canManage: boolean } & DispatchProp<any>) => renderPermissionLevel(props.dispatch, props.link, props.canManage));
666
667 export const ResourceLinkTailPermissionLevel = connect((state: RootState, props: { uuid: string }) => {
668     const link = getResource<LinkResource>(props.uuid)(state.resources);
669     const isBuiltin = isBuiltinGroup(link?.headUuid || "") || isBuiltinGroup(link?.tailUuid || "");
670
671     return {
672         link: link || { uuid: "", name: "", kind: ResourceKind.NONE },
673         canManage: link && getResourceLinkCanManage(state, link) && !isBuiltin,
674     };
675 })((props: { link: LinkResource; canManage: boolean } & DispatchProp<any>) => renderPermissionLevel(props.dispatch, props.link, props.canManage));
676
677 const getResourceLinkCanManage = (state: RootState, link: LinkResource) => {
678     const headResource = getResource<Resource>(link.headUuid)(state.resources);
679     if (headResource && headResource.kind === ResourceKind.GROUP) {
680         return (headResource as GroupResource).canManage;
681     } else {
682         // true for now
683         return true;
684     }
685 };
686
687 // Process Resources
688 const resourceRunProcess = (dispatch: Dispatch, uuid: string) => {
689     return (
690         <div>
691             {uuid && (
692                 <Tooltip title="Run process">
693                     <IconButton onClick={() => dispatch<any>(openRunProcess(uuid))}>
694                         <ProcessIcon />
695                     </IconButton>
696                 </Tooltip>
697             )}
698         </div>
699     );
700 };
701
702 export const ResourceRunProcess = connect((state: RootState, props: { uuid: string }) => {
703     const resource = getResource<WorkflowResource>(props.uuid)(state.resources);
704     return {
705         uuid: resource ? resource.uuid : "",
706     };
707 })((props: { uuid: string } & DispatchProp<any>) => resourceRunProcess(props.dispatch, props.uuid));
708
709 const renderWorkflowStatus = (uuidPrefix: string, ownerUuid?: string) => {
710     if (ownerUuid === getPublicUuid(uuidPrefix)) {
711         return renderStatus(WorkflowStatus.PUBLIC);
712     } else {
713         return renderStatus(WorkflowStatus.PRIVATE);
714     }
715 };
716
717 const renderStatus = (status: string) => (
718     <Typography
719         noWrap
720         style={{ width: "60px" }}
721     >
722         {status}
723     </Typography>
724 );
725
726 export const ResourceWorkflowStatus = connect((state: RootState, props: { uuid: string }) => {
727     const resource = getResource<WorkflowResource>(props.uuid)(state.resources);
728     const uuidPrefix = getUuidPrefix(state);
729     return {
730         ownerUuid: resource ? resource.ownerUuid : "",
731         uuidPrefix,
732     };
733 })((props: { ownerUuid?: string; uuidPrefix: string }) => renderWorkflowStatus(props.uuidPrefix, props.ownerUuid));
734
735 export const ResourceContainerUuid = connect((state: RootState, props: { uuid: string }) => {
736     const process = getProcess(props.uuid)(state.resources);
737     return { uuid: process?.container?.uuid ? process?.container?.uuid : "" };
738 })((props: { uuid: string }) => renderUuid({ uuid: props.uuid }));
739
740 enum ColumnSelection {
741     OUTPUT_UUID = "outputUuid",
742     LOG_UUID = "logUuid",
743 }
744
745 const renderUuidLinkWithCopyIcon = (dispatch: Dispatch, item: ProcessResource, column: string) => {
746     const selectedColumnUuid = item[column];
747     return (
748         <Grid
749             container
750             alignItems="center"
751             wrap="nowrap"
752         >
753             <Grid item>
754                 {selectedColumnUuid ? (
755                     <Typography
756                         color="primary"
757                         style={{ width: "auto", cursor: "pointer" }}
758                         noWrap
759                         onClick={() => dispatch<any>(navigateTo(selectedColumnUuid))}
760                     >
761                         {selectedColumnUuid}
762                     </Typography>
763                 ) : (
764                     "-"
765                 )}
766             </Grid>
767             <Grid item>{selectedColumnUuid && renderUuidCopyIcon({ uuid: selectedColumnUuid })}</Grid>
768         </Grid>
769     );
770 };
771
772 export const ResourceOutputUuid = connect((state: RootState, props: { uuid: string }) => {
773     const resource = getResource<ProcessResource>(props.uuid)(state.resources);
774     return resource;
775 })((process: ProcessResource & DispatchProp<any>) => renderUuidLinkWithCopyIcon(process.dispatch, process, ColumnSelection.OUTPUT_UUID));
776
777 export const ResourceLogUuid = connect((state: RootState, props: { uuid: string }) => {
778     const resource = getResource<ProcessResource>(props.uuid)(state.resources);
779     return resource;
780 })((process: ProcessResource & DispatchProp<any>) => renderUuidLinkWithCopyIcon(process.dispatch, process, ColumnSelection.LOG_UUID));
781
782 export const ResourceParentProcess = connect((state: RootState, props: { uuid: string }) => {
783     const process = getProcess(props.uuid)(state.resources);
784     return { parentProcess: process?.containerRequest?.requestingContainerUuid || "" };
785 })((props: { parentProcess: string }) => renderUuid({ uuid: props.parentProcess }));
786
787 export const ResourceModifiedByUserUuid = connect((state: RootState, props: { uuid: string }) => {
788     const process = getProcess(props.uuid)(state.resources);
789     return { userUuid: process?.containerRequest?.modifiedByUserUuid || "" };
790 })((props: { userUuid: string }) => renderUuid({ uuid: props.userUuid }));
791
792 export const ResourceCreatedAtDate = connect((state: RootState, props: { uuid: string }) => {
793     const resource = getResource<GroupContentsResource>(props.uuid)(state.resources);
794     return { date: resource ? resource.createdAt : "" };
795 })((props: { date: string }) => renderDate(props.date));
796
797 export const ResourceLastModifiedDate = connect((state: RootState, props: { uuid: string }) => {
798     const resource = getResource<GroupContentsResource>(props.uuid)(state.resources);
799     return { date: resource ? resource.modifiedAt : "" };
800 })((props: { date: string }) => renderDate(props.date));
801
802 export const ResourceTrashDate = connect((state: RootState, props: { uuid: string }) => {
803     const resource = getResource<TrashableResource>(props.uuid)(state.resources);
804     return { date: resource ? resource.trashAt : "" };
805 })((props: { date: string }) => renderDate(props.date));
806
807 export const ResourceDeleteDate = connect((state: RootState, props: { uuid: string }) => {
808     const resource = getResource<TrashableResource>(props.uuid)(state.resources);
809     return { date: resource ? resource.deleteAt : "" };
810 })((props: { date: string }) => renderDate(props.date));
811
812 export const renderFileSize = (fileSize?: number) => (
813     <Typography
814         noWrap
815         style={{ minWidth: "45px" }}
816     >
817         {formatFileSize(fileSize)}
818     </Typography>
819 );
820
821 export const ResourceFileSize = connect((state: RootState, props: { uuid: string }) => {
822     const resource = getResource<CollectionResource>(props.uuid)(state.resources);
823
824     if (resource && resource.kind !== ResourceKind.COLLECTION) {
825         return { fileSize: "" };
826     }
827
828     return { fileSize: resource ? resource.fileSizeTotal : 0 };
829 })((props: { fileSize?: number }) => renderFileSize(props.fileSize));
830
831 const renderOwner = (owner: string) => <Typography noWrap>{owner || "-"}</Typography>;
832
833 export const ResourceOwner = connect((state: RootState, props: { uuid: string }) => {
834     const resource = getResource<GroupContentsResource>(props.uuid)(state.resources);
835     return { owner: resource ? resource.ownerUuid : "" };
836 })((props: { owner: string }) => renderOwner(props.owner));
837
838 export const ResourceOwnerName = connect((state: RootState, props: { uuid: string }) => {
839     const resource = getResource<GroupContentsResource>(props.uuid)(state.resources);
840     const ownerNameState = state.ownerName;
841     const ownerName = ownerNameState.find(it => it.uuid === resource!.ownerUuid);
842     return { owner: ownerName ? ownerName!.name : resource!.ownerUuid };
843 })((props: { owner: string }) => renderOwner(props.owner));
844
845 export const ResourceUUID = connect((state: RootState, props: { uuid: string }) => {
846     const resource = getResource<CollectionResource>(props.uuid)(state.resources);
847     return { uuid: resource ? resource.uuid : "" };
848 })((props: { uuid: string }) => renderUuid({ uuid: props.uuid }));
849
850 const renderVersion = (version: number) => {
851     return <Typography>{version ?? "-"}</Typography>;
852 };
853
854 export const ResourceVersion = connect((state: RootState, props: { uuid: string }) => {
855     const resource = getResource<CollectionResource>(props.uuid)(state.resources);
856     return { version: resource ? resource.version : "" };
857 })((props: { version: number }) => renderVersion(props.version));
858
859 const renderPortableDataHash = (portableDataHash: string | null) => (
860     <Typography noWrap>
861         {portableDataHash ? (
862             <>
863                 {portableDataHash}
864                 <CopyToClipboardSnackbar value={portableDataHash} />
865             </>
866         ) : (
867             "-"
868         )}
869     </Typography>
870 );
871
872 export const ResourcePortableDataHash = connect((state: RootState, props: { uuid: string }) => {
873     const resource = getResource<CollectionResource>(props.uuid)(state.resources);
874     return { portableDataHash: resource ? resource.portableDataHash : "" };
875 })((props: { portableDataHash: string }) => renderPortableDataHash(props.portableDataHash));
876
877 const renderFileCount = (fileCount: number) => {
878     return <Typography>{fileCount ?? "-"}</Typography>;
879 };
880
881 export const ResourceFileCount = connect((state: RootState, props: { uuid: string }) => {
882     const resource = getResource<CollectionResource>(props.uuid)(state.resources);
883     return { fileCount: resource ? resource.fileCount : "" };
884 })((props: { fileCount: number }) => renderFileCount(props.fileCount));
885
886 const userFromID = connect((state: RootState, props: { uuid: string }) => {
887     let userFullname = "";
888     const resource = getResource<GroupContentsResource & UserResource>(props.uuid)(state.resources);
889
890     if (resource) {
891         userFullname = getUserFullname(resource as User) || (resource as GroupContentsResource).name;
892     }
893
894     return { uuid: props.uuid, userFullname };
895 });
896
897 const ownerFromResourceId = compose(
898     connect((state: RootState, props: { uuid: string }) => {
899         const childResource = getResource<GroupContentsResource & UserResource>(props.uuid)(state.resources);
900         return { uuid: childResource ? (childResource as Resource).ownerUuid : "" };
901     }),
902     userFromID
903 );
904
905 const _resourceWithName = withStyles(
906     {},
907     { withTheme: true }
908 )((props: { uuid: string; userFullname: string; dispatch: Dispatch; theme: ArvadosTheme }) => {
909     const { uuid, userFullname, dispatch, theme } = props;
910     if (userFullname === "") {
911         dispatch<any>(loadResource(uuid, false));
912         return (
913             <Typography
914                 style={{ color: theme.palette.primary.main }}
915                 inline
916             >
917                 {uuid}
918             </Typography>
919         );
920     }
921
922     return (
923         <Typography
924             style={{ color: theme.palette.primary.main }}
925             inline
926         >
927             {userFullname} ({uuid})
928         </Typography>
929     );
930 });
931
932 const _resourceWithNameLink = withStyles(
933     {},
934     { withTheme: true }
935 )((props: { uuid: string; userFullname: string; dispatch: Dispatch; theme: ArvadosTheme }) => {
936     const { uuid, userFullname, dispatch, theme } = props;
937     if (!userFullname) {
938         dispatch<any>(loadResource(uuid, false));
939     }
940
941     return (
942         <Typography
943             style={{ color: theme.palette.primary.main, cursor: 'pointer' }}
944             inline
945             noWrap
946             onClick={() => dispatch<any>(navigateTo(uuid))}
947         >
948             {userFullname ? userFullname : uuid}
949         </Typography>
950     )
951 });
952
953
954 export const ResourceOwnerWithNameLink = ownerFromResourceId(_resourceWithNameLink);
955
956 export const ResourceOwnerWithName = ownerFromResourceId(_resourceWithName);
957
958 export const ResourceWithName = userFromID(_resourceWithName);
959
960 export const UserNameFromID = compose(userFromID)((props: { uuid: string; displayAsText?: string; userFullname: string; dispatch: Dispatch }) => {
961     const { uuid, userFullname, dispatch } = props;
962
963     if (userFullname === "") {
964         dispatch<any>(loadResource(uuid, false));
965     }
966     return <span>{userFullname ? userFullname : uuid}</span>;
967 });
968
969 export const ResponsiblePerson = compose(
970     connect((state: RootState, props: { uuid: string; parentRef: HTMLElement | null }) => {
971         let responsiblePersonName: string = "";
972         let responsiblePersonUUID: string = "";
973         let responsiblePersonProperty: string = "";
974
975         if (state.auth.config.clusterConfig.Collections.ManagedProperties) {
976             let index = 0;
977             const keys = Object.keys(state.auth.config.clusterConfig.Collections.ManagedProperties);
978
979             while (!responsiblePersonProperty && keys[index]) {
980                 const key = keys[index];
981                 if (state.auth.config.clusterConfig.Collections.ManagedProperties[key].Function === "original_owner") {
982                     responsiblePersonProperty = key;
983                 }
984                 index++;
985             }
986         }
987
988         let resource: Resource | undefined = getResource<GroupContentsResource & UserResource>(props.uuid)(state.resources);
989
990         while (resource && resource.kind !== ResourceKind.USER && responsiblePersonProperty) {
991             responsiblePersonUUID = (resource as CollectionResource).properties[responsiblePersonProperty];
992             resource = getResource<GroupContentsResource & UserResource>(responsiblePersonUUID)(state.resources);
993         }
994
995         if (resource && resource.kind === ResourceKind.USER) {
996             responsiblePersonName = getUserFullname(resource as UserResource) || (resource as GroupContentsResource).name;
997         }
998
999         return { uuid: responsiblePersonUUID, responsiblePersonName, parentRef: props.parentRef };
1000     }),
1001     withStyles({}, { withTheme: true })
1002 )((props: { uuid: string | null; responsiblePersonName: string; parentRef: HTMLElement | null; theme: ArvadosTheme }) => {
1003     const { uuid, responsiblePersonName, parentRef, theme } = props;
1004
1005     if (!uuid && parentRef) {
1006         parentRef.style.display = "none";
1007         return null;
1008     } else if (parentRef) {
1009         parentRef.style.display = "block";
1010     }
1011
1012     if (!responsiblePersonName) {
1013         return (
1014             <Typography
1015                 style={{ color: theme.palette.primary.main }}
1016                 inline
1017                 noWrap
1018             >
1019                 {uuid}
1020             </Typography>
1021         );
1022     }
1023
1024     return (
1025         <Typography
1026             style={{ color: theme.palette.primary.main }}
1027             inline
1028             noWrap
1029         >
1030             {responsiblePersonName} ({uuid})
1031         </Typography>
1032     );
1033 });
1034
1035 const renderType = (type: string, subtype: string) => <Typography noWrap>{resourceLabel(type, subtype)}</Typography>;
1036
1037 export const ResourceType = connect((state: RootState, props: { uuid: string }) => {
1038     const resource = getResource<GroupContentsResource>(props.uuid)(state.resources);
1039     return {
1040         type: resource ? resource.kind : "",
1041         subtype: resource
1042             ? resource.kind === ResourceKind.GROUP
1043                 ? resource.groupClass
1044                 : resource.kind === ResourceKind.PROCESS
1045                     ? resource.requestingContainerUuid
1046                         ? ProcessTypeFilter.CHILD_PROCESS
1047                         : ProcessTypeFilter.MAIN_PROCESS
1048                     : ""
1049             : ""
1050     };
1051 })((props: { type: string; subtype: string }) => renderType(props.type, props.subtype));
1052
1053 export const ResourceStatus = connect((state: RootState, props: { uuid: string }) => {
1054     return { resource: getResource<GroupContentsResource>(props.uuid)(state.resources) };
1055 })((props: { resource: GroupContentsResource }) =>
1056     props.resource && props.resource.kind === ResourceKind.COLLECTION ? (
1057         <CollectionStatus uuid={props.resource.uuid} />
1058     ) : (
1059         <ProcessStatus uuid={props.resource.uuid} />
1060     )
1061 );
1062
1063 export const CollectionStatus = connect((state: RootState, props: { uuid: string }) => {
1064     return { collection: getResource<CollectionResource>(props.uuid)(state.resources) };
1065 })((props: { collection: CollectionResource }) =>
1066     props.collection.uuid !== props.collection.currentVersionUuid ? (
1067         <Typography>version {props.collection.version}</Typography>
1068     ) : (
1069         <Typography>head version</Typography>
1070     )
1071 );
1072
1073 export const CollectionName = connect((state: RootState, props: { uuid: string; className?: string }) => {
1074     return {
1075         collection: getResource<CollectionResource>(props.uuid)(state.resources),
1076         uuid: props.uuid,
1077         className: props.className,
1078     };
1079 })((props: { collection: CollectionResource; uuid: string; className?: string }) => (
1080     <Typography className={props.className}>{props.collection?.name || props.uuid}</Typography>
1081 ));
1082
1083 export const ProcessStatus = compose(
1084     connect((state: RootState, props: { uuid: string }) => {
1085         return { process: getProcess(props.uuid)(state.resources) };
1086     }),
1087     withStyles({}, { withTheme: true })
1088 )((props: { process?: Process; theme: ArvadosTheme }) =>
1089     props.process ? (
1090         <Chip
1091             label={getProcessStatus(props.process)}
1092             style={{
1093                 height: props.theme.spacing.unit * 3,
1094                 width: props.theme.spacing.unit * 12,
1095                 ...getProcessStatusStyles(getProcessStatus(props.process), props.theme),
1096                 fontSize: "0.875rem",
1097                 borderRadius: props.theme.spacing.unit * 0.625,
1098             }}
1099         />
1100     ) : (
1101         <Typography>-</Typography>
1102     )
1103 );
1104
1105 export const ProcessStartDate = connect((state: RootState, props: { uuid: string }) => {
1106     const process = getProcess(props.uuid)(state.resources);
1107     return { date: process && process.container ? process.container.startedAt : "" };
1108 })((props: { date: string }) => renderDate(props.date));
1109
1110 export const renderRunTime = (time: number) => (
1111     <Typography
1112         noWrap
1113         style={{ minWidth: "45px" }}
1114     >
1115         {formatTime(time, true)}
1116     </Typography>
1117 );
1118
1119 interface ContainerRunTimeProps {
1120     process: Process;
1121 }
1122
1123 interface ContainerRunTimeState {
1124     runtime: number;
1125 }
1126
1127 export const ContainerRunTime = connect((state: RootState, props: { uuid: string }) => {
1128     return { process: getProcess(props.uuid)(state.resources) };
1129 })(
1130     class extends React.Component<ContainerRunTimeProps, ContainerRunTimeState> {
1131         private timer: any;
1132
1133         constructor(props: ContainerRunTimeProps) {
1134             super(props);
1135             this.state = { runtime: this.getRuntime() };
1136         }
1137
1138         getRuntime() {
1139             return this.props.process ? getProcessRuntime(this.props.process) : 0;
1140         }
1141
1142         updateRuntime() {
1143             this.setState({ runtime: this.getRuntime() });
1144         }
1145
1146         componentDidMount() {
1147             this.timer = setInterval(this.updateRuntime.bind(this), 5000);
1148         }
1149
1150         componentWillUnmount() {
1151             clearInterval(this.timer);
1152         }
1153
1154         render() {
1155             return this.props.process ? renderRunTime(this.state.runtime) : <Typography>-</Typography>;
1156         }
1157     }
1158 );
1159
1160 export const GroupMembersCount = connect(
1161     (state: RootState, props: { uuid: string }) => {
1162         const group = getResource<GroupResource>(props.uuid)(state.resources);
1163
1164         return {
1165             value: group?.memberCount,
1166         };
1167
1168     }
1169 )(withTheme()((props: {value: number | null | undefined, theme:ArvadosTheme}) => {
1170     if (props.value === undefined) {
1171         // Loading
1172         return <Typography component={"div"}>
1173             <InlinePulser />
1174         </Typography>;
1175     } else if (props.value === null) {
1176         // Error
1177         return <Typography>
1178             <Tooltip title="Failed to load member count">
1179                 <ErrorIcon style={{color: props.theme.customs.colors.greyL}}/>
1180             </Tooltip>
1181         </Typography>;
1182     } else {
1183         return <Typography children={props.value} />;
1184     }
1185 }));