21128: Merge branch 'main' into 21128-toolbar-context-menu
[arvados-workbench2.git] / src / views-components / data-explorer / renderers.tsx
index c8e14208e5e5fffa1d54c7da3b44eadfd112fdb2..059aad4344fad0f49d55349f79e076a3f92d92e9 100644 (file)
@@ -2,10 +2,10 @@
 //
 // SPDX-License-Identifier: AGPL-3.0
 
-import React from 'react';
-import { Grid, Typography, withStyles, Tooltip, IconButton, Checkbox, Chip } from '@material-ui/core';
-import { FavoriteStar, PublicFavoriteStar } from '../favorite-star/favorite-star';
-import { Resource, ResourceKind, TrashableResource } from 'models/resource';
+import React from "react";
+import { Grid, Typography, withStyles, Tooltip, IconButton, Checkbox, Chip } from "@material-ui/core";
+import { FavoriteStar, PublicFavoriteStar } from "../favorite-star/favorite-star";
+import { Resource, ResourceKind, TrashableResource } from "models/resource";
 import {
     FreezeIcon,
     ProjectIcon,
@@ -21,53 +21,64 @@ import {
     ActiveIcon,
     SetupIcon,
     InactiveIcon,
-} from 'components/icon/icon';
-import { formatDate, formatFileSize, formatTime } from 'common/formatters';
-import { resourceLabel } from 'common/labels';
-import { connect, DispatchProp } from 'react-redux';
-import { RootState } from 'store/store';
-import { getResource, filterResources } from 'store/resources/resources';
-import { GroupContentsResource } from 'services/groups-service/groups-service';
-import { getProcess, Process, getProcessStatus, getProcessStatusStyles, getProcessRuntime } from 'store/processes/process';
-import { ArvadosTheme } from 'common/custom-theme';
-import { compose, Dispatch } from 'redux';
-import { WorkflowResource } from 'models/workflow';
-import { ResourceStatus as WorkflowStatus } from 'views/workflow-panel/workflow-panel-view';
-import { getUuidPrefix, openRunProcess } from 'store/workflow-panel/workflow-panel-actions';
-import { openSharingDialog } from 'store/sharing-dialog/sharing-dialog-actions';
-import { getUserFullname, getUserDisplayName, User, UserResource } from 'models/user';
-import { toggleIsAdmin } from 'store/users/users-actions';
-import { LinkClass, LinkResource } from 'models/link';
-import { navigateTo, navigateToGroupDetails, navigateToUserProfile } from 'store/navigation/navigation-action';
-import { withResourceData } from 'views-components/data-explorer/with-resources';
-import { CollectionResource } from 'models/collection';
-import { IllegalNamingWarning } from 'components/warning/warning';
-import { loadResource } from 'store/resources/resources-actions';
-import { BuiltinGroups, getBuiltinGroupUuid, GroupClass, GroupResource, isBuiltinGroup } from 'models/group';
-import { openRemoveGroupMemberDialog } from 'store/group-details-panel/group-details-panel-actions';
-import { setMemberIsHidden } from 'store/group-details-panel/group-details-panel-actions';
-import { formatPermissionLevel } from 'views-components/sharing-dialog/permission-select';
-import { PermissionLevel } from 'models/permission';
-import { openPermissionEditContextMenu } from 'store/context-menu/context-menu-actions';
-import { getUserUuid } from 'common/getuser';
-import { VirtualMachinesResource } from 'models/virtual-machines';
-import { CopyToClipboardSnackbar } from 'components/copy-to-clipboard-snackbar/copy-to-clipboard-snackbar';
-import { ProjectResource } from 'models/project';
-import { ProcessResource } from 'models/process';
+} from "components/icon/icon";
+import { formatDate, formatFileSize, formatTime } from "common/formatters";
+import { resourceLabel } from "common/labels";
+import { connect, DispatchProp } from "react-redux";
+import { RootState } from "store/store";
+import { getResource, filterResources } from "store/resources/resources";
+import { GroupContentsResource } from "services/groups-service/groups-service";
+import { getProcess, Process, getProcessStatus, getProcessStatusStyles, getProcessRuntime } from "store/processes/process";
+import { ArvadosTheme } from "common/custom-theme";
+import { compose, Dispatch } from "redux";
+import { WorkflowResource } from "models/workflow";
+import { ResourceStatus as WorkflowStatus } from "views/workflow-panel/workflow-panel-view";
+import { getUuidPrefix, openRunProcess } from "store/workflow-panel/workflow-panel-actions";
+import { openSharingDialog } from "store/sharing-dialog/sharing-dialog-actions";
+import { getUserFullname, getUserDisplayName, User, UserResource } from "models/user";
+import { toggleIsAdmin } from "store/users/users-actions";
+import { LinkClass, LinkResource } from "models/link";
+import { navigateTo, navigateToGroupDetails, navigateToUserProfile } from "store/navigation/navigation-action";
+import { withResourceData } from "views-components/data-explorer/with-resources";
+import { CollectionResource } from "models/collection";
+import { IllegalNamingWarning } from "components/warning/warning";
+import { loadResource } from "store/resources/resources-actions";
+import { BuiltinGroups, getBuiltinGroupUuid, GroupClass, GroupResource, isBuiltinGroup } from "models/group";
+import { openRemoveGroupMemberDialog } from "store/group-details-panel/group-details-panel-actions";
+import { setMemberIsHidden } from "store/group-details-panel/group-details-panel-actions";
+import { formatPermissionLevel } from "views-components/sharing-dialog/permission-select";
+import { PermissionLevel } from "models/permission";
+import { openPermissionEditContextMenu } from "store/context-menu/context-menu-actions";
+import { VirtualMachinesResource } from "models/virtual-machines";
+import { CopyToClipboardSnackbar } from "components/copy-to-clipboard-snackbar/copy-to-clipboard-snackbar";
+import { ProjectResource } from "models/project";
+import { ProcessResource } from "models/process";
 
 const renderName = (dispatch: Dispatch, item: GroupContentsResource) => {
-    const navFunc = 'groupClass' in item && item.groupClass === GroupClass.ROLE ? navigateToGroupDetails : navigateTo;
+    const navFunc = "groupClass" in item && item.groupClass === GroupClass.ROLE ? navigateToGroupDetails : navigateTo;
     return (
-        <Grid container alignItems='center' wrap='nowrap' spacing={16}>
+        <Grid
+            container
+            alignItems="center"
+            wrap="nowrap"
+            spacing={16}
+        >
             <Grid item>{renderIcon(item)}</Grid>
             <Grid item>
-                <Typography color='primary' style={{ width: 'auto', cursor: 'pointer' }} onClick={() => dispatch<any>(navFunc(item.uuid))}>
+                <Typography
+                    color="primary"
+                    style={{ width: "auto", cursor: "pointer" }}
+                    onClick={(ev) => {
+                        ev.stopPropagation()
+                        dispatch<any>(navFunc(item.uuid))
+                    }}
+                >
                     {item.kind === ResourceKind.PROJECT || item.kind === ResourceKind.COLLECTION ? <IllegalNamingWarning name={item.name} /> : null}
                     {item.name}
                 </Typography>
             </Grid>
             <Grid item>
-                <Typography variant='caption'>
+                <Typography variant="caption">
                     <FavoriteStar resourceUuid={item.uuid} />
                     <PublicFavoriteStar resourceUuid={item.uuid} />
                     {item.kind === ResourceKind.PROJECT && <FrozenProject item={item} />}
@@ -87,8 +98,12 @@ const FrozenProject = (props: { item: ProjectResource }) => {
 
     if (props.item.frozenByUuid) {
         return (
-            <Tooltip onOpen={getFullName} enterDelay={500} title={<span>Project was frozen by {fullUsername}</span>}>
-                <FreezeIcon style={{ fontSize: 'inherit' }} />
+            <Tooltip
+                onOpen={getFullName}
+                enterDelay={500}
+                title={<span>Project was frozen by {fullUsername}</span>}
+            >
+                <FreezeIcon style={{ fontSize: "inherit" }} />
             </Tooltip>
         );
     } else {
@@ -101,14 +116,6 @@ export const ResourceName = connect((state: RootState, props: { uuid: string })
     return resource;
 })((resource: GroupContentsResource & DispatchProp<any>) => renderName(resource.dispatch, resource));
 
-// const renderSelect = () => <Checkbox color='primary' />;
-const renderSelect = () => <input type='checkbox'></input>;
-
-export const ResourceSelect = connect((state: RootState, props: { uuid: string }) => {
-    const resource = getResource<GroupContentsResource>(props.uuid)(state.resources);
-    return resource;
-})((resource: GroupContentsResource & DispatchProp<any>) => renderSelect());
-
 const renderIcon = (item: GroupContentsResource) => {
     switch (item.kind) {
         case ResourceKind.PROJECT:
@@ -132,17 +139,28 @@ const renderIcon = (item: GroupContentsResource) => {
 
 const renderDate = (date?: string) => {
     return (
-        <Typography noWrap style={{ minWidth: '100px' }}>
+        <Typography
+            noWrap
+            style={{ minWidth: "100px" }}
+        >
             {formatDate(date)}
         </Typography>
     );
 };
 
 const renderWorkflowName = (item: WorkflowResource) => (
-    <Grid container alignItems='center' wrap='nowrap' spacing={16}>
+    <Grid
+        container
+        alignItems="center"
+        wrap="nowrap"
+        spacing={16}
+    >
         <Grid item>{renderIcon(item)}</Grid>
         <Grid item>
-            <Typography color='primary' style={{ width: '100px' }}>
+            <Typography
+                color="primary"
+                style={{ width: "100px" }}
+            >
                 {item.name}
             </Typography>
         </Grid>
@@ -163,7 +181,7 @@ const resourceShare = (dispatch: Dispatch, uuidPrefix: string, ownerUuid?: strin
     return (
         <div>
             {!isPublic && uuid && (
-                <Tooltip title='Share'>
+                <Tooltip title="Share">
                     <IconButton onClick={() => dispatch<any>(openSharingDialog(uuid))}>
                         <ShareIcon />
                     </IconButton>
@@ -177,8 +195,8 @@ export const ResourceShare = connect((state: RootState, props: { uuid: string })
     const resource = getResource<WorkflowResource>(props.uuid)(state.resources);
     const uuidPrefix = getUuidPrefix(state);
     return {
-        uuid: resource ? resource.uuid : '',
-        ownerUuid: resource ? resource.ownerUuid : '',
+        uuid: resource ? resource.uuid : "",
+        ownerUuid: resource ? resource.ownerUuid : "",
         uuidPrefix,
     };
 })((props: { ownerUuid?: string; uuidPrefix: string; uuid?: string } & DispatchProp<any>) =>
@@ -192,20 +210,25 @@ const renderFirstName = (item: { firstName: string }) => {
 
 export const ResourceFirstName = connect((state: RootState, props: { uuid: string }) => {
     const resource = getResource<UserResource>(props.uuid)(state.resources);
-    return resource || { firstName: '' };
+    return resource || { firstName: "" };
 })(renderFirstName);
 
 const renderLastName = (item: { lastName: string }) => <Typography noWrap>{item.lastName}</Typography>;
 
 export const ResourceLastName = connect((state: RootState, props: { uuid: string }) => {
     const resource = getResource<UserResource>(props.uuid)(state.resources);
-    return resource || { lastName: '' };
+    return resource || { lastName: "" };
 })(renderLastName);
 
 const renderFullName = (dispatch: Dispatch, item: { uuid: string; firstName: string; lastName: string }, link?: boolean) => {
-    const displayName = (item.firstName + ' ' + item.lastName).trim() || item.uuid;
+    const displayName = (item.firstName + " " + item.lastName).trim() || item.uuid;
     return link ? (
-        <Typography noWrap color='primary' style={{ cursor: 'pointer' }} onClick={() => dispatch<any>(navigateToUserProfile(item.uuid))}>
+        <Typography
+            noWrap
+            color="primary"
+            style={{ cursor: "pointer" }}
+            onClick={() => dispatch<any>(navigateToUserProfile(item.uuid))}
+        >
             {displayName}
         </Typography>
     ) : (
@@ -215,51 +238,65 @@ const renderFullName = (dispatch: Dispatch, item: { uuid: string; firstName: str
 
 export const UserResourceFullName = connect((state: RootState, props: { uuid: string; link?: boolean }) => {
     const resource = getResource<UserResource>(props.uuid)(state.resources);
-    return { item: resource || { uuid: '', firstName: '', lastName: '' }, link: props.link };
+    return { item: resource || { uuid: "", firstName: "", lastName: "" }, link: props.link };
 })((props: { item: { uuid: string; firstName: string; lastName: string }; link?: boolean } & DispatchProp<any>) =>
     renderFullName(props.dispatch, props.item, props.link)
 );
 
 const renderUuid = (item: { uuid: string }) => (
-    <Typography data-cy='uuid' noWrap>
+    <Typography
+        data-cy="uuid"
+        noWrap
+    >
         {item.uuid}
-        {(item.uuid && <CopyToClipboardSnackbar value={item.uuid} />) || '-'}
+        {(item.uuid && <CopyToClipboardSnackbar value={item.uuid} />) || "-"}
     </Typography>
 );
 
 const renderUuidCopyIcon = (item: { uuid: string }) => (
-    <Typography data-cy='uuid' noWrap>
-        {(item.uuid && <CopyToClipboardSnackbar value={item.uuid} />) || '-'}
+    <Typography
+        data-cy="uuid"
+        noWrap
+    >
+        {(item.uuid && <CopyToClipboardSnackbar value={item.uuid} />) || "-"}
     </Typography>
 );
 
-export const ResourceUuid = connect((state: RootState, props: { uuid: string }) => getResource<UserResource>(props.uuid)(state.resources) || { uuid: '' })(renderUuid);
+export const ResourceUuid = connect(
+    (state: RootState, props: { uuid: string }) => getResource<UserResource>(props.uuid)(state.resources) || { uuid: "" }
+)(renderUuid);
 
 const renderEmail = (item: { email: string }) => <Typography noWrap>{item.email}</Typography>;
 
 export const ResourceEmail = connect((state: RootState, props: { uuid: string }) => {
     const resource = getResource<UserResource>(props.uuid)(state.resources);
-    return resource || { email: '' };
+    return resource || { email: "" };
 })(renderEmail);
 
 enum UserAccountStatus {
-    ACTIVE = 'Active',
-    INACTIVE = 'Inactive',
-    SETUP = 'Setup',
-    UNKNOWN = '',
+    ACTIVE = "Active",
+    INACTIVE = "Inactive",
+    SETUP = "Setup",
+    UNKNOWN = "",
 }
 
 const renderAccountStatus = (props: { status: UserAccountStatus }) => (
-    <Grid container alignItems='center' wrap='nowrap' spacing={8} data-cy='account-status'>
+    <Grid
+        container
+        alignItems="center"
+        wrap="nowrap"
+        spacing={8}
+        data-cy="account-status"
+    >
         <Grid item>
             {(() => {
                 switch (props.status) {
                     case UserAccountStatus.ACTIVE:
-                        return <ActiveIcon style={{ color: '#4caf50', verticalAlign: 'middle' }} />;
+                        return <ActiveIcon style={{ color: "#4caf50", verticalAlign: "middle" }} />;
                     case UserAccountStatus.SETUP:
-                        return <SetupIcon style={{ color: '#2196f3', verticalAlign: 'middle' }} />;
+                        return <SetupIcon style={{ color: "#2196f3", verticalAlign: "middle" }} />;
                     case UserAccountStatus.INACTIVE:
-                        return <InactiveIcon style={{ color: '#9e9e9e', verticalAlign: 'middle' }} />;
+                        return <InactiveIcon style={{ color: "#9e9e9e", verticalAlign: "middle" }} />;
                     default:
                         return <></>;
                 }
@@ -311,11 +348,11 @@ const renderIsHidden = (props: {
     if (props.memberLinkUuid) {
         return (
             <Checkbox
-                data-cy='user-visible-checkbox'
-                color='primary'
+                data-cy="user-visible-checkbox"
+                color="primary"
                 checked={props.visible}
                 disabled={!props.canManage}
-                onClick={(e) => {
+                onClick={e => {
                     e.stopPropagation();
                     props.setMemberIsHidden(props.memberLinkUuid, props.permissionLinkUuid, !props.visible);
                 }}
@@ -329,8 +366,8 @@ const renderIsHidden = (props: {
 export const ResourceLinkTailIsVisible = connect(
     (state: RootState, props: { uuid: string }) => {
         const link = getResource<LinkResource>(props.uuid)(state.resources);
-        const member = getResource<Resource>(link?.tailUuid || '')(state.resources);
-        const group = getResource<GroupResource>(link?.headUuid || '')(state.resources);
+        const member = getResource<Resource>(link?.tailUuid || "")(state.resources);
+        const group = getResource<GroupResource>(link?.headUuid || "")(state.resources);
         const permissions = filterResources((resource: LinkResource) => {
             return (
                 resource.linkClass === LinkClass.PERMISSION &&
@@ -340,23 +377,23 @@ export const ResourceLinkTailIsVisible = connect(
             );
         })(state.resources);
 
-        const permissionLinkUuid = permissions.length > 0 ? permissions[0].uuid : '';
+        const permissionLinkUuid = permissions.length > 0 ? permissions[0].uuid : "";
         const isVisible = link && group && permissions.length > 0;
         // Consider whether the current user canManage this resurce in addition when it's possible
-        const isBuiltin = isBuiltinGroup(link?.headUuid || '');
+        const isBuiltin = isBuiltinGroup(link?.headUuid || "");
 
         return member?.kind === ResourceKind.USER
             ? { memberLinkUuid: link?.uuid, permissionLinkUuid, visible: isVisible, canManage: !isBuiltin }
-            : { memberLinkUuid: '', permissionLinkUuid: '', visible: false, canManage: false };
+            : { memberLinkUuid: "", permissionLinkUuid: "", visible: false, canManage: false };
     },
     { setMemberIsHidden }
 )(renderIsHidden);
 
 const renderIsAdmin = (props: { uuid: string; isAdmin: boolean; toggleIsAdmin: (uuid: string) => void }) => (
     <Checkbox
-        color='primary'
+        color="primary"
         checked={props.isAdmin}
-        onClick={(e) => {
+        onClick={e => {
             e.stopPropagation();
             props.toggleIsAdmin(props.uuid);
         }}
@@ -375,7 +412,7 @@ const renderUsername = (item: { username: string; uuid: string }) => <Typography
 
 export const ResourceUsername = connect((state: RootState, props: { uuid: string }) => {
     const resource = getResource<UserResource>(props.uuid)(state.resources);
-    return resource || { username: '', uuid: props.uuid };
+    return resource || { username: "", uuid: props.uuid };
 })(renderUsername);
 
 // Virtual machine resource
@@ -384,16 +421,16 @@ const renderHostname = (item: { hostname: string }) => <Typography noWrap>{item.
 
 export const VirtualMachineHostname = connect((state: RootState, props: { uuid: string }) => {
     const resource = getResource<VirtualMachinesResource>(props.uuid)(state.resources);
-    return resource || { hostname: '' };
+    return resource || { hostname: "" };
 })(renderHostname);
 
 const renderVirtualMachineLogin = (login: { user: string }) => <Typography noWrap>{login.user}</Typography>;
 
 export const VirtualMachineLogin = connect((state: RootState, props: { linkUuid: string }) => {
     const permission = getResource<LinkResource>(props.linkUuid)(state.resources);
-    const user = getResource<UserResource>(permission?.tailUuid || '')(state.resources);
+    const user = getResource<UserResource>(permission?.tailUuid || "")(state.resources);
 
-    return { user: user?.username || permission?.tailUuid || '' };
+    return { user: user?.username || permission?.tailUuid || "" };
 })(renderVirtualMachineLogin);
 
 // Common methods
@@ -401,42 +438,43 @@ const renderCommonData = (data: string) => <Typography noWrap>{data}</Typography
 
 const renderCommonDate = (date: string) => <Typography noWrap>{formatDate(date)}</Typography>;
 
-export const CommonUuid = withResourceData('uuid', renderCommonData);
+export const CommonUuid = withResourceData("uuid", renderCommonData);
 
 // Api Client Authorizations
-export const TokenApiClientId = withResourceData('apiClientId', renderCommonData);
+export const TokenApiClientId = withResourceData("apiClientId", renderCommonData);
 
-export const TokenApiToken = withResourceData('apiToken', renderCommonData);
+export const TokenApiToken = withResourceData("apiToken", renderCommonData);
 
-export const TokenCreatedByIpAddress = withResourceData('createdByIpAddress', renderCommonDate);
+export const TokenCreatedByIpAddress = withResourceData("createdByIpAddress", renderCommonDate);
 
-export const TokenDefaultOwnerUuid = withResourceData('defaultOwnerUuid', renderCommonData);
+export const TokenDefaultOwnerUuid = withResourceData("defaultOwnerUuid", renderCommonData);
 
-export const TokenExpiresAt = withResourceData('expiresAt', renderCommonDate);
+export const TokenExpiresAt = withResourceData("expiresAt", renderCommonDate);
 
-export const TokenLastUsedAt = withResourceData('lastUsedAt', renderCommonDate);
+export const TokenLastUsedAt = withResourceData("lastUsedAt", renderCommonDate);
 
-export const TokenLastUsedByIpAddress = withResourceData('lastUsedByIpAddress', renderCommonData);
+export const TokenLastUsedByIpAddress = withResourceData("lastUsedByIpAddress", renderCommonData);
 
-export const TokenScopes = withResourceData('scopes', renderCommonData);
+export const TokenScopes = withResourceData("scopes", renderCommonData);
 
-export const TokenUserId = withResourceData('userId', renderCommonData);
+export const TokenUserId = withResourceData("userId", renderCommonData);
 
 const clusterColors = [
-    ['#f44336', '#fff'],
-    ['#2196f3', '#fff'],
-    ['#009688', '#fff'],
-    ['#cddc39', '#fff'],
-    ['#ff9800', '#fff'],
+    ["#f44336", "#fff"],
+    ["#2196f3", "#fff"],
+    ["#009688", "#fff"],
+    ["#cddc39", "#fff"],
+    ["#ff9800", "#fff"],
 ];
 
 export const ResourceCluster = (props: { uuid: string }) => {
     const CLUSTER_ID_LENGTH = 5;
-    const pos = props.uuid.length > CLUSTER_ID_LENGTH ? props.uuid.indexOf('-') : 5;
-    const clusterId = pos >= CLUSTER_ID_LENGTH ? props.uuid.substring(0, pos) : '';
+    const pos = props.uuid.length > CLUSTER_ID_LENGTH ? props.uuid.indexOf("-") : 5;
+    const clusterId = pos >= CLUSTER_ID_LENGTH ? props.uuid.substring(0, pos) : "";
     const ci =
         pos >= CLUSTER_ID_LENGTH
-            ? ((props.uuid.charCodeAt(0) * props.uuid.charCodeAt(1) + props.uuid.charCodeAt(2)) * props.uuid.charCodeAt(3) + props.uuid.charCodeAt(4)) %
+            ? ((props.uuid.charCodeAt(0) * props.uuid.charCodeAt(1) + props.uuid.charCodeAt(2)) * props.uuid.charCodeAt(3) +
+                  props.uuid.charCodeAt(4)) %
               clusterColors.length
             : 0;
     return (
@@ -444,7 +482,7 @@ export const ResourceCluster = (props: { uuid: string }) => {
             style={{
                 backgroundColor: clusterColors[ci][0],
                 color: clusterColors[ci][1],
-                padding: '2px 7px',
+                padding: "2px 7px",
                 borderRadius: 3,
             }}
         >
@@ -454,22 +492,22 @@ export const ResourceCluster = (props: { uuid: string }) => {
 };
 
 // Links Resources
-const renderLinkName = (item: { name: string }) => <Typography noWrap>{item.name || '-'}</Typography>;
+const renderLinkName = (item: { name: string }) => <Typography noWrap>{item.name || "-"}</Typography>;
 
 export const ResourceLinkName = connect((state: RootState, props: { uuid: string }) => {
     const resource = getResource<LinkResource>(props.uuid)(state.resources);
-    return resource || { name: '' };
+    return resource || { name: "" };
 })(renderLinkName);
 
 const renderLinkClass = (item: { linkClass: string }) => <Typography noWrap>{item.linkClass}</Typography>;
 
 export const ResourceLinkClass = connect((state: RootState, props: { uuid: string }) => {
     const resource = getResource<LinkResource>(props.uuid)(state.resources);
-    return resource || { linkClass: '' };
+    return resource || { linkClass: "" };
 })(renderLinkClass);
 
 const getResourceDisplayName = (resource: Resource): string => {
-    if ((resource as UserResource).kind === ResourceKind.USER && typeof (resource as UserResource).firstName !== 'undefined') {
+    if ((resource as UserResource).kind === ResourceKind.USER && typeof (resource as UserResource).firstName !== "undefined") {
         // We can be sure the resource is UserResource
         return getUserDisplayName(resource as UserResource);
     } else {
@@ -481,60 +519,76 @@ const renderResourceLink = (dispatch: Dispatch, item: Resource) => {
     var displayName = getResourceDisplayName(item);
 
     return (
-        <Typography noWrap color='primary' style={{ cursor: 'pointer' }} onClick={() => dispatch<any>(navigateTo(item.uuid))}>
-            {resourceLabel(item.kind, item && item.kind === ResourceKind.GROUP ? (item as GroupResource).groupClass || '' : '')}: {displayName || item.uuid}
+        <Typography
+            noWrap
+            color="primary"
+            style={{ cursor: "pointer" }}
+            onClick={() => {
+                item.kind === ResourceKind.GROUP && (item as GroupResource).groupClass === "role"
+                    ? dispatch<any>(navigateToGroupDetails(item.uuid))
+                    : dispatch<any>(navigateTo(item.uuid));
+            }}
+        >
+            {resourceLabel(item.kind, item && item.kind === ResourceKind.GROUP ? (item as GroupResource).groupClass || "" : "")}:{" "}
+            {displayName || item.uuid}
         </Typography>
     );
 };
 
 export const ResourceLinkTail = connect((state: RootState, props: { uuid: string }) => {
     const resource = getResource<LinkResource>(props.uuid)(state.resources);
-    const tailResource = getResource<Resource>(resource?.tailUuid || '')(state.resources);
+    const tailResource = getResource<Resource>(resource?.tailUuid || "")(state.resources);
 
     return {
-        item: tailResource || { uuid: resource?.tailUuid || '', kind: resource?.tailKind || ResourceKind.NONE },
+        item: tailResource || { uuid: resource?.tailUuid || "", kind: resource?.tailKind || ResourceKind.NONE },
     };
 })((props: { item: Resource } & DispatchProp<any>) => renderResourceLink(props.dispatch, props.item));
 
 export const ResourceLinkHead = connect((state: RootState, props: { uuid: string }) => {
     const resource = getResource<LinkResource>(props.uuid)(state.resources);
-    const headResource = getResource<Resource>(resource?.headUuid || '')(state.resources);
+    const headResource = getResource<Resource>(resource?.headUuid || "")(state.resources);
 
     return {
-        item: headResource || { uuid: resource?.headUuid || '', kind: resource?.headKind || ResourceKind.NONE },
+        item: headResource || { uuid: resource?.headUuid || "", kind: resource?.headKind || ResourceKind.NONE },
     };
 })((props: { item: Resource } & DispatchProp<any>) => renderResourceLink(props.dispatch, props.item));
 
 export const ResourceLinkUuid = connect((state: RootState, props: { uuid: string }) => {
     const resource = getResource<LinkResource>(props.uuid)(state.resources);
-    return resource || { uuid: '' };
+    return resource || { uuid: "" };
 })(renderUuid);
 
 export const ResourceLinkHeadUuid = connect((state: RootState, props: { uuid: string }) => {
     const link = getResource<LinkResource>(props.uuid)(state.resources);
-    const headResource = getResource<Resource>(link?.headUuid || '')(state.resources);
+    const headResource = getResource<Resource>(link?.headUuid || "")(state.resources);
 
-    return headResource || { uuid: '' };
+    return headResource || { uuid: "" };
 })(renderUuid);
 
 export const ResourceLinkTailUuid = connect((state: RootState, props: { uuid: string }) => {
     const link = getResource<LinkResource>(props.uuid)(state.resources);
-    const tailResource = getResource<Resource>(link?.tailUuid || '')(state.resources);
+    const tailResource = getResource<Resource>(link?.tailUuid || "")(state.resources);
 
-    return tailResource || { uuid: '' };
+    return tailResource || { uuid: "" };
 })(renderUuid);
 
 const renderLinkDelete = (dispatch: Dispatch, item: LinkResource, canManage: boolean) => {
     if (item.uuid) {
         return canManage ? (
             <Typography noWrap>
-                <IconButton data-cy='resource-delete-button' onClick={() => dispatch<any>(openRemoveGroupMemberDialog(item.uuid))}>
+                <IconButton
+                    data-cy="resource-delete-button"
+                    onClick={() => dispatch<any>(openRemoveGroupMemberDialog(item.uuid))}
+                >
                     <RemoveIcon />
                 </IconButton>
             </Typography>
         ) : (
             <Typography noWrap>
-                <IconButton disabled data-cy='resource-delete-button'>
+                <IconButton
+                    disabled
+                    data-cy="resource-delete-button"
+                >
                     <RemoveIcon />
                 </IconButton>
             </Typography>
@@ -546,26 +600,26 @@ const renderLinkDelete = (dispatch: Dispatch, item: LinkResource, canManage: boo
 
 export const ResourceLinkDelete = connect((state: RootState, props: { uuid: string }) => {
     const link = getResource<LinkResource>(props.uuid)(state.resources);
-    const isBuiltin = isBuiltinGroup(link?.headUuid || '') || isBuiltinGroup(link?.tailUuid || '');
+    const isBuiltin = isBuiltinGroup(link?.headUuid || "") || isBuiltinGroup(link?.tailUuid || "");
 
     return {
-        item: link || { uuid: '', kind: ResourceKind.NONE },
+        item: link || { uuid: "", kind: ResourceKind.NONE },
         canManage: link && getResourceLinkCanManage(state, link) && !isBuiltin,
     };
 })((props: { item: LinkResource; canManage: boolean } & DispatchProp<any>) => renderLinkDelete(props.dispatch, props.item, props.canManage));
 
 export const ResourceLinkTailEmail = connect((state: RootState, props: { uuid: string }) => {
     const link = getResource<LinkResource>(props.uuid)(state.resources);
-    const resource = getResource<UserResource>(link?.tailUuid || '')(state.resources);
+    const resource = getResource<UserResource>(link?.tailUuid || "")(state.resources);
 
-    return resource || { email: '' };
+    return resource || { email: "" };
 })(renderEmail);
 
 export const ResourceLinkTailUsername = connect((state: RootState, props: { uuid: string }) => {
     const link = getResource<LinkResource>(props.uuid)(state.resources);
-    const resource = getResource<UserResource>(link?.tailUuid || '')(state.resources);
+    const resource = getResource<UserResource>(link?.tailUuid || "")(state.resources);
 
-    return resource || { username: '' };
+    return resource || { username: "" };
 })(renderUsername);
 
 const renderPermissionLevel = (dispatch: Dispatch, link: LinkResource, canManage: boolean) => {
@@ -573,11 +627,14 @@ const renderPermissionLevel = (dispatch: Dispatch, link: LinkResource, canManage
         <Typography noWrap>
             {formatPermissionLevel(link.name as PermissionLevel)}
             {canManage ? (
-                <IconButton data-cy='edit-permission-button' onClick={(event) => dispatch<any>(openPermissionEditContextMenu(event, link))}>
+                <IconButton
+                    data-cy="edit-permission-button"
+                    onClick={event => dispatch<any>(openPermissionEditContextMenu(event, link))}
+                >
                     <RenameIcon />
                 </IconButton>
             ) : (
-                ''
+                ""
             )}
         </Typography>
     );
@@ -585,31 +642,28 @@ const renderPermissionLevel = (dispatch: Dispatch, link: LinkResource, canManage
 
 export const ResourceLinkHeadPermissionLevel = connect((state: RootState, props: { uuid: string }) => {
     const link = getResource<LinkResource>(props.uuid)(state.resources);
-    const isBuiltin = isBuiltinGroup(link?.headUuid || '') || isBuiltinGroup(link?.tailUuid || '');
+    const isBuiltin = isBuiltinGroup(link?.headUuid || "") || isBuiltinGroup(link?.tailUuid || "");
 
     return {
-        link: link || { uuid: '', name: '', kind: ResourceKind.NONE },
+        link: link || { uuid: "", name: "", kind: ResourceKind.NONE },
         canManage: link && getResourceLinkCanManage(state, link) && !isBuiltin,
     };
 })((props: { link: LinkResource; canManage: boolean } & DispatchProp<any>) => renderPermissionLevel(props.dispatch, props.link, props.canManage));
 
 export const ResourceLinkTailPermissionLevel = connect((state: RootState, props: { uuid: string }) => {
     const link = getResource<LinkResource>(props.uuid)(state.resources);
-    const isBuiltin = isBuiltinGroup(link?.headUuid || '') || isBuiltinGroup(link?.tailUuid || '');
+    const isBuiltin = isBuiltinGroup(link?.headUuid || "") || isBuiltinGroup(link?.tailUuid || "");
 
     return {
-        link: link || { uuid: '', name: '', kind: ResourceKind.NONE },
+        link: link || { uuid: "", name: "", kind: ResourceKind.NONE },
         canManage: link && getResourceLinkCanManage(state, link) && !isBuiltin,
     };
 })((props: { link: LinkResource; canManage: boolean } & DispatchProp<any>) => renderPermissionLevel(props.dispatch, props.link, props.canManage));
 
 const getResourceLinkCanManage = (state: RootState, link: LinkResource) => {
     const headResource = getResource<Resource>(link.headUuid)(state.resources);
-    // const tailResource = getResource<Resource>(link.tailUuid)(state.resources);
-    const userUuid = getUserUuid(state);
-
     if (headResource && headResource.kind === ResourceKind.GROUP) {
-        return userUuid ? (headResource as GroupResource).writableBy?.includes(userUuid) : false;
+        return (headResource as GroupResource).canManage;
     } else {
         // true for now
         return true;
@@ -621,7 +675,7 @@ const resourceRunProcess = (dispatch: Dispatch, uuid: string) => {
     return (
         <div>
             {uuid && (
-                <Tooltip title='Run process'>
+                <Tooltip title="Run process">
                     <IconButton onClick={() => dispatch<any>(openRunProcess(uuid))}>
                         <ProcessIcon />
                     </IconButton>
@@ -634,7 +688,7 @@ const resourceRunProcess = (dispatch: Dispatch, uuid: string) => {
 export const ResourceRunProcess = connect((state: RootState, props: { uuid: string }) => {
     const resource = getResource<WorkflowResource>(props.uuid)(state.resources);
     return {
-        uuid: resource ? resource.uuid : '',
+        uuid: resource ? resource.uuid : "",
     };
 })((props: { uuid: string } & DispatchProp<any>) => resourceRunProcess(props.dispatch, props.uuid));
 
@@ -647,7 +701,10 @@ const renderWorkflowStatus = (uuidPrefix: string, ownerUuid?: string) => {
 };
 
 const renderStatus = (status: string) => (
-    <Typography noWrap style={{ width: '60px' }}>
+    <Typography
+        noWrap
+        style={{ width: "60px" }}
+    >
         {status}
     </Typography>
 );
@@ -656,32 +713,41 @@ export const ResourceWorkflowStatus = connect((state: RootState, props: { uuid:
     const resource = getResource<WorkflowResource>(props.uuid)(state.resources);
     const uuidPrefix = getUuidPrefix(state);
     return {
-        ownerUuid: resource ? resource.ownerUuid : '',
+        ownerUuid: resource ? resource.ownerUuid : "",
         uuidPrefix,
     };
 })((props: { ownerUuid?: string; uuidPrefix: string }) => renderWorkflowStatus(props.uuidPrefix, props.ownerUuid));
 
 export const ResourceContainerUuid = connect((state: RootState, props: { uuid: string }) => {
     const process = getProcess(props.uuid)(state.resources);
-    return { uuid: process?.container?.uuid ? process?.container?.uuid : '' };
+    return { uuid: process?.container?.uuid ? process?.container?.uuid : "" };
 })((props: { uuid: string }) => renderUuid({ uuid: props.uuid }));
 
 enum ColumnSelection {
-    OUTPUT_UUID = 'outputUuid',
-    LOG_UUID = 'logUuid',
+    OUTPUT_UUID = "outputUuid",
+    LOG_UUID = "logUuid",
 }
 
 const renderUuidLinkWithCopyIcon = (dispatch: Dispatch, item: ProcessResource, column: string) => {
     const selectedColumnUuid = item[column];
     return (
-        <Grid container alignItems='center' wrap='nowrap'>
+        <Grid
+            container
+            alignItems="center"
+            wrap="nowrap"
+        >
             <Grid item>
                 {selectedColumnUuid ? (
-                    <Typography color='primary' style={{ width: 'auto', cursor: 'pointer' }} noWrap onClick={() => dispatch<any>(navigateTo(selectedColumnUuid))}>
+                    <Typography
+                        color="primary"
+                        style={{ width: "auto", cursor: "pointer" }}
+                        noWrap
+                        onClick={() => dispatch<any>(navigateTo(selectedColumnUuid))}
+                    >
                         {selectedColumnUuid}
                     </Typography>
                 ) : (
-                    '-'
+                    "-"
                 )}
             </Grid>
             <Grid item>{selectedColumnUuid && renderUuidCopyIcon({ uuid: selectedColumnUuid })}</Grid>
@@ -701,36 +767,39 @@ export const ResourceLogUuid = connect((state: RootState, props: { uuid: string
 
 export const ResourceParentProcess = connect((state: RootState, props: { uuid: string }) => {
     const process = getProcess(props.uuid)(state.resources);
-    return { parentProcess: process?.containerRequest?.requestingContainerUuid || '' };
+    return { parentProcess: process?.containerRequest?.requestingContainerUuid || "" };
 })((props: { parentProcess: string }) => renderUuid({ uuid: props.parentProcess }));
 
 export const ResourceModifiedByUserUuid = connect((state: RootState, props: { uuid: string }) => {
     const process = getProcess(props.uuid)(state.resources);
-    return { userUuid: process?.containerRequest?.modifiedByUserUuid || '' };
+    return { userUuid: process?.containerRequest?.modifiedByUserUuid || "" };
 })((props: { userUuid: string }) => renderUuid({ uuid: props.userUuid }));
 
 export const ResourceCreatedAtDate = connect((state: RootState, props: { uuid: string }) => {
     const resource = getResource<GroupContentsResource>(props.uuid)(state.resources);
-    return { date: resource ? resource.createdAt : '' };
+    return { date: resource ? resource.createdAt : "" };
 })((props: { date: string }) => renderDate(props.date));
 
 export const ResourceLastModifiedDate = connect((state: RootState, props: { uuid: string }) => {
     const resource = getResource<GroupContentsResource>(props.uuid)(state.resources);
-    return { date: resource ? resource.modifiedAt : '' };
+    return { date: resource ? resource.modifiedAt : "" };
 })((props: { date: string }) => renderDate(props.date));
 
 export const ResourceTrashDate = connect((state: RootState, props: { uuid: string }) => {
     const resource = getResource<TrashableResource>(props.uuid)(state.resources);
-    return { date: resource ? resource.trashAt : '' };
+    return { date: resource ? resource.trashAt : "" };
 })((props: { date: string }) => renderDate(props.date));
 
 export const ResourceDeleteDate = connect((state: RootState, props: { uuid: string }) => {
     const resource = getResource<TrashableResource>(props.uuid)(state.resources);
-    return { date: resource ? resource.deleteAt : '' };
+    return { date: resource ? resource.deleteAt : "" };
 })((props: { date: string }) => renderDate(props.date));
 
 export const renderFileSize = (fileSize?: number) => (
-    <Typography noWrap style={{ minWidth: '45px' }}>
+    <Typography
+        noWrap
+        style={{ minWidth: "45px" }}
+    >
         {formatFileSize(fileSize)}
     </Typography>
 );
@@ -739,38 +808,38 @@ export const ResourceFileSize = connect((state: RootState, props: { uuid: string
     const resource = getResource<CollectionResource>(props.uuid)(state.resources);
 
     if (resource && resource.kind !== ResourceKind.COLLECTION) {
-        return { fileSize: '' };
+        return { fileSize: "" };
     }
 
     return { fileSize: resource ? resource.fileSizeTotal : 0 };
 })((props: { fileSize?: number }) => renderFileSize(props.fileSize));
 
-const renderOwner = (owner: string) => <Typography noWrap>{owner || '-'}</Typography>;
+const renderOwner = (owner: string) => <Typography noWrap>{owner || "-"}</Typography>;
 
 export const ResourceOwner = connect((state: RootState, props: { uuid: string }) => {
     const resource = getResource<GroupContentsResource>(props.uuid)(state.resources);
-    return { owner: resource ? resource.ownerUuid : '' };
+    return { owner: resource ? resource.ownerUuid : "" };
 })((props: { owner: string }) => renderOwner(props.owner));
 
 export const ResourceOwnerName = connect((state: RootState, props: { uuid: string }) => {
     const resource = getResource<GroupContentsResource>(props.uuid)(state.resources);
     const ownerNameState = state.ownerName;
-    const ownerName = ownerNameState.find((it) => it.uuid === resource!.ownerUuid);
+    const ownerName = ownerNameState.find(it => it.uuid === resource!.ownerUuid);
     return { owner: ownerName ? ownerName!.name : resource!.ownerUuid };
 })((props: { owner: string }) => renderOwner(props.owner));
 
 export const ResourceUUID = connect((state: RootState, props: { uuid: string }) => {
     const resource = getResource<CollectionResource>(props.uuid)(state.resources);
-    return { uuid: resource ? resource.uuid : '' };
+    return { uuid: resource ? resource.uuid : "" };
 })((props: { uuid: string }) => renderUuid({ uuid: props.uuid }));
 
 const renderVersion = (version: number) => {
-    return <Typography>{version ?? '-'}</Typography>;
+    return <Typography>{version ?? "-"}</Typography>;
 };
 
 export const ResourceVersion = connect((state: RootState, props: { uuid: string }) => {
     const resource = getResource<CollectionResource>(props.uuid)(state.resources);
-    return { version: resource ? resource.version : '' };
+    return { version: resource ? resource.version : "" };
 })((props: { version: number }) => renderVersion(props.version));
 
 const renderPortableDataHash = (portableDataHash: string | null) => (
@@ -781,27 +850,27 @@ const renderPortableDataHash = (portableDataHash: string | null) => (
                 <CopyToClipboardSnackbar value={portableDataHash} />
             </>
         ) : (
-            '-'
+            "-"
         )}
     </Typography>
 );
 
 export const ResourcePortableDataHash = connect((state: RootState, props: { uuid: string }) => {
     const resource = getResource<CollectionResource>(props.uuid)(state.resources);
-    return { portableDataHash: resource ? resource.portableDataHash : '' };
+    return { portableDataHash: resource ? resource.portableDataHash : "" };
 })((props: { portableDataHash: string }) => renderPortableDataHash(props.portableDataHash));
 
 const renderFileCount = (fileCount: number) => {
-    return <Typography>{fileCount ?? '-'}</Typography>;
+    return <Typography>{fileCount ?? "-"}</Typography>;
 };
 
 export const ResourceFileCount = connect((state: RootState, props: { uuid: string }) => {
     const resource = getResource<CollectionResource>(props.uuid)(state.resources);
-    return { fileCount: resource ? resource.fileCount : '' };
+    return { fileCount: resource ? resource.fileCount : "" };
 })((props: { fileCount: number }) => renderFileCount(props.fileCount));
 
 const userFromID = connect((state: RootState, props: { uuid: string }) => {
-    let userFullname = '';
+    let userFullname = "";
     const resource = getResource<GroupContentsResource & UserResource>(props.uuid)(state.resources);
 
     if (resource) {
@@ -814,7 +883,7 @@ const userFromID = connect((state: RootState, props: { uuid: string }) => {
 const ownerFromResourceId = compose(
     connect((state: RootState, props: { uuid: string }) => {
         const childResource = getResource<GroupContentsResource & UserResource>(props.uuid)(state.resources);
-        return { uuid: childResource ? (childResource as Resource).ownerUuid : '' };
+        return { uuid: childResource ? (childResource as Resource).ownerUuid : "" };
     }),
     userFromID
 );
@@ -824,22 +893,54 @@ const _resourceWithName = withStyles(
     { withTheme: true }
 )((props: { uuid: string; userFullname: string; dispatch: Dispatch; theme: ArvadosTheme }) => {
     const { uuid, userFullname, dispatch, theme } = props;
-    if (userFullname === '') {
+    if (userFullname === "") {
         dispatch<any>(loadResource(uuid, false));
         return (
-            <Typography style={{ color: theme.palette.primary.main }} inline noWrap>
+            <Typography
+                style={{ color: theme.palette.primary.main }}
+                inline
+                noWrap
+            >
                 {uuid}
             </Typography>
         );
     }
 
     return (
-        <Typography style={{ color: theme.palette.primary.main }} inline noWrap>
+        <Typography
+            style={{ color: theme.palette.primary.main }}
+            inline
+            noWrap
+        >
             {userFullname} ({uuid})
         </Typography>
     );
 });
 
+const _resourceWithNameLink = withStyles(
+    {},
+    { withTheme: true }
+)((props: { uuid: string; userFullname: string; dispatch: Dispatch; theme: ArvadosTheme }) => {
+    const { uuid, userFullname, dispatch, theme } = props;
+    if (!userFullname) {
+        dispatch<any>(loadResource(uuid, false));
+    }
+
+    return (
+        <Typography
+            style={{ color: theme.palette.primary.main, cursor: 'pointer' }}
+            inline
+            noWrap
+            onClick={() => dispatch<any>(navigateTo(uuid))}
+        >
+            {userFullname ? userFullname : uuid}
+        </Typography>
+    )
+});
+
+
+export const ResourceOwnerWithNameLink = ownerFromResourceId(_resourceWithNameLink);
+
 export const ResourceOwnerWithName = ownerFromResourceId(_resourceWithName);
 
 export const ResourceWithName = userFromID(_resourceWithName);
@@ -847,7 +948,7 @@ export const ResourceWithName = userFromID(_resourceWithName);
 export const UserNameFromID = compose(userFromID)((props: { uuid: string; displayAsText?: string; userFullname: string; dispatch: Dispatch }) => {
     const { uuid, userFullname, dispatch } = props;
 
-    if (userFullname === '') {
+    if (userFullname === "") {
         dispatch<any>(loadResource(uuid, false));
     }
     return <span>{userFullname ? userFullname : uuid}</span>;
@@ -855,9 +956,9 @@ export const UserNameFromID = compose(userFromID)((props: { uuid: string; displa
 
 export const ResponsiblePerson = compose(
     connect((state: RootState, props: { uuid: string; parentRef: HTMLElement | null }) => {
-        let responsiblePersonName: string = '';
-        let responsiblePersonUUID: string = '';
-        let responsiblePersonProperty: string = '';
+        let responsiblePersonName: string = "";
+        let responsiblePersonUUID: string = "";
+        let responsiblePersonProperty: string = "";
 
         if (state.auth.config.clusterConfig.Collections.ManagedProperties) {
             let index = 0;
@@ -865,7 +966,7 @@ export const ResponsiblePerson = compose(
 
             while (!responsiblePersonProperty && keys[index]) {
                 const key = keys[index];
-                if (state.auth.config.clusterConfig.Collections.ManagedProperties[key].Function === 'original_owner') {
+                if (state.auth.config.clusterConfig.Collections.ManagedProperties[key].Function === "original_owner") {
                     responsiblePersonProperty = key;
                 }
                 index++;
@@ -890,22 +991,30 @@ export const ResponsiblePerson = compose(
     const { uuid, responsiblePersonName, parentRef, theme } = props;
 
     if (!uuid && parentRef) {
-        parentRef.style.display = 'none';
+        parentRef.style.display = "none";
         return null;
     } else if (parentRef) {
-        parentRef.style.display = 'block';
+        parentRef.style.display = "block";
     }
 
     if (!responsiblePersonName) {
         return (
-            <Typography style={{ color: theme.palette.primary.main }} inline noWrap>
+            <Typography
+                style={{ color: theme.palette.primary.main }}
+                inline
+                noWrap
+            >
                 {uuid}
             </Typography>
         );
     }
 
     return (
-        <Typography style={{ color: theme.palette.primary.main }} inline noWrap>
+        <Typography
+            style={{ color: theme.palette.primary.main }}
+            inline
+            noWrap
+        >
             {responsiblePersonName} ({uuid})
         </Typography>
     );
@@ -915,19 +1024,27 @@ const renderType = (type: string, subtype: string) => <Typography noWrap>{resour
 
 export const ResourceType = connect((state: RootState, props: { uuid: string }) => {
     const resource = getResource<GroupContentsResource>(props.uuid)(state.resources);
-    return { type: resource ? resource.kind : '', subtype: resource && resource.kind === ResourceKind.GROUP ? resource.groupClass : '' };
+    return { type: resource ? resource.kind : "", subtype: resource && resource.kind === ResourceKind.GROUP ? resource.groupClass : "" };
 })((props: { type: string; subtype: string }) => renderType(props.type, props.subtype));
 
 export const ResourceStatus = connect((state: RootState, props: { uuid: string }) => {
     return { resource: getResource<GroupContentsResource>(props.uuid)(state.resources) };
 })((props: { resource: GroupContentsResource }) =>
-    props.resource && props.resource.kind === ResourceKind.COLLECTION ? <CollectionStatus uuid={props.resource.uuid} /> : <ProcessStatus uuid={props.resource.uuid} />
+    props.resource && props.resource.kind === ResourceKind.COLLECTION ? (
+        <CollectionStatus uuid={props.resource.uuid} />
+    ) : (
+        <ProcessStatus uuid={props.resource.uuid} />
+    )
 );
 
 export const CollectionStatus = connect((state: RootState, props: { uuid: string }) => {
     return { collection: getResource<CollectionResource>(props.uuid)(state.resources) };
 })((props: { collection: CollectionResource }) =>
-    props.collection.uuid !== props.collection.currentVersionUuid ? <Typography>version {props.collection.version}</Typography> : <Typography>head version</Typography>
+    props.collection.uuid !== props.collection.currentVersionUuid ? (
+        <Typography>version {props.collection.version}</Typography>
+    ) : (
+        <Typography>head version</Typography>
+    )
 );
 
 export const CollectionName = connect((state: RootState, props: { uuid: string; className?: string }) => {
@@ -953,7 +1070,7 @@ export const ProcessStatus = compose(
                 height: props.theme.spacing.unit * 3,
                 width: props.theme.spacing.unit * 12,
                 ...getProcessStatusStyles(getProcessStatus(props.process), props.theme),
-                fontSize: '0.875rem',
+                fontSize: "0.875rem",
                 borderRadius: props.theme.spacing.unit * 0.625,
             }}
         />
@@ -964,11 +1081,14 @@ export const ProcessStatus = compose(
 
 export const ProcessStartDate = connect((state: RootState, props: { uuid: string }) => {
     const process = getProcess(props.uuid)(state.resources);
-    return { date: process && process.container ? process.container.startedAt : '' };
+    return { date: process && process.container ? process.container.startedAt : "" };
 })((props: { date: string }) => renderDate(props.date));
 
 export const renderRunTime = (time: number) => (
-    <Typography noWrap style={{ minWidth: '45px' }}>
+    <Typography
+        noWrap
+        style={{ minWidth: "45px" }}
+    >
         {formatTime(time, true)}
     </Typography>
 );