X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/41732be42d860aa191a0670552e142497170aa02..5adf51b5e01fdc72fd51c82ad05bf07fd55f519f:/src/views-components/data-explorer/renderers.tsx diff --git a/src/views-components/data-explorer/renderers.tsx b/src/views-components/data-explorer/renderers.tsx index be0fc793a3..16389e0779 100644 --- a/src/views-components/data-explorer/renderers.tsx +++ b/src/views-components/data-explorer/renderers.tsx @@ -3,8 +3,8 @@ // SPDX-License-Identifier: AGPL-3.0 import * as React from 'react'; -import { Grid, Typography, withStyles, Tooltip, IconButton, Checkbox, Button } from '@material-ui/core'; -import { FavoriteStar } from '../favorite-star/favorite-star'; +import { Grid, Typography, withStyles, Tooltip, IconButton, Checkbox } from '@material-ui/core'; +import { FavoriteStar, PublicFavoriteStar } from '../favorite-star/favorite-star'; import { ResourceKind, TrashableResource } from '~/models/resource'; import { ProjectIcon, CollectionIcon, ProcessIcon, DefaultIcon, WorkflowIcon, ShareIcon } from '~/components/icon/icon'; import { formatDate, formatFileSize } from '~/common/formatters'; @@ -25,21 +25,22 @@ import { UserResource } from '~/models/user'; import { toggleIsActive, toggleIsAdmin } from '~/store/users/users-actions'; import { LinkResource } from '~/models/link'; import { navigateTo } from '~/store/navigation/navigation-action'; -import { withResource, getDataFromResource, withResourceData } from '~/views-components/data-explorer/with-resources'; +import { withResourceData } from '~/views-components/data-explorer/with-resources'; -const renderName = (item: { name: string; uuid: string, kind: string }) => +const renderName = (dispatch: Dispatch, item: { name: string; uuid: string, kind: string }) => - {renderIcon(item)} + {renderIcon(item.kind)} - + dispatch(navigateTo(item.uuid))}> {item.name} + ; @@ -48,10 +49,10 @@ export const ResourceName = connect( (state: RootState, props: { uuid: string }) => { const resource = getResource(props.uuid)(state.resources); return resource || { name: '', uuid: '', kind: '' }; - })(renderName); + })((resource: { name: string; uuid: string, kind: string } & DispatchProp) => renderName(resource.dispatch, resource)); -const renderIcon = (item: { kind: string }) => { - switch (item.kind) { +const renderIcon = (kind: string) => { + switch (kind) { case ResourceKind.PROJECT: return ; case ResourceKind.COLLECTION: @@ -72,7 +73,7 @@ const renderDate = (date?: string) => { const renderWorkflowName = (item: { name: string; uuid: string, kind: string, ownerUuid: string }) => - {renderIcon(item)} + {renderIcon(item.kind)} @@ -236,15 +237,17 @@ export const ResourceCluster = (props: { uuid: string }) => { const CLUSTER_ID_LENGTH = 5; const pos = props.uuid.indexOf('-'); const clusterId = pos >= CLUSTER_ID_LENGTH ? props.uuid.substr(0, pos) : ''; - const ci = pos >= CLUSTER_ID_LENGTH ? (props.uuid.charCodeAt(0) + props.uuid.charCodeAt(1)) % clusterColors.length : 0; - return -
{clusterId}
-
; + 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))) % clusterColors.length) : 0; + return {clusterId}; }; export const ComputeNodeInfo = withResourceData('info', renderNodeInfo); @@ -284,13 +287,13 @@ const renderLinkTail = (dispatch: Dispatch, item: { uuid: string, tailUuid: stri const currentLabel = resourceLabel(item.tailKind); const isUnknow = currentLabel === "Unknown"; return (
- { !isUnknow ? ( - renderLink(dispatch, item.tailUuid, currentLabel) - ) : ( + {!isUnknow ? ( + renderLink(dispatch, item.tailUuid, currentLabel) + ) : ( {item.tailUuid} - )} + )}
); }; @@ -400,7 +403,7 @@ export const ResourceFileSize = connect( })((props: { fileSize?: number }) => renderFileSize(props.fileSize)); const renderOwner = (owner: string) => - + {owner} ; @@ -410,6 +413,14 @@ export const ResourceOwner = connect( return { owner: resource ? resource.ownerUuid : '' }; })((props: { owner: string }) => renderOwner(props.owner)); +export const ResourceOwnerName = connect( + (state: RootState, props: { uuid: string }) => { + const resource = getResource(props.uuid)(state.resources); + const ownerNameState = state.ownerName; + const ownerName = ownerNameState.find(it => it.uuid === resource!.ownerUuid); + return { owner: ownerName ? ownerName!.name : resource!.ownerUuid }; + })((props: { owner: string }) => renderOwner(props.owner)); + const renderType = (type: string) => {resourceLabel(type)}