X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/26e05f295b57de342d4cd13306ead196e2841a21..dc95b803fa84b3c9ef7c11a4f81dd0d86077d779:/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 a032b3ed5a..20b2f9ec11 100644 --- a/src/views-components/data-explorer/renderers.tsx +++ b/src/views-components/data-explorer/renderers.tsx @@ -3,7 +3,7 @@ // SPDX-License-Identifier: AGPL-3.0 import * as React from 'react'; -import { Grid, Typography, withStyles, Tooltip, IconButton } from '@material-ui/core'; +import { Grid, Typography, withStyles, Tooltip, IconButton, Checkbox } from '@material-ui/core'; import { FavoriteStar } from '../favorite-star/favorite-star'; import { ResourceKind, TrashableResource } from '~/models/resource'; import { ProjectIcon, CollectionIcon, ProcessIcon, DefaultIcon, WorkflowIcon, ShareIcon } from '~/components/icon/icon'; @@ -21,8 +21,9 @@ import { ResourceStatus } from '~/views/workflow-panel/workflow-panel-view'; import { getUuidPrefix, openRunProcess } from '~/store/workflow-panel/workflow-panel-actions'; import { getResourceData } from "~/store/resources-data/resources-data"; import { openSharingDialog } from '~/store/sharing-dialog/sharing-dialog-actions'; +import { UserResource } from '~/models/user'; -export const renderName = (item: { name: string; uuid: string, kind: string }) => +const renderName = (item: { name: string; uuid: string, kind: string }) => {renderIcon(item)} @@ -45,7 +46,7 @@ export const ResourceName = connect( return resource || { name: '', uuid: '', kind: '' }; })(renderName); -export const renderIcon = (item: { kind: string }) => { +const renderIcon = (item: { kind: string }) => { switch (item.kind) { case ResourceKind.PROJECT: return ; @@ -60,11 +61,11 @@ export const renderIcon = (item: { kind: string }) => { } }; -export const renderDate = (date?: string) => { +const renderDate = (date?: string) => { return {formatDate(date)}; }; -export const renderWorkflowName = (item: { name: string; uuid: string, kind: string, ownerUuid: string }) => +const renderWorkflowName = (item: { name: string; uuid: string, kind: string, ownerUuid: string }) => {renderIcon(item)} @@ -86,7 +87,7 @@ const getPublicUuid = (uuidPrefix: string) => { return `${uuidPrefix}-tpzed-anonymouspublic`; }; -export const resourceShare = (dispatch: Dispatch, uuidPrefix: string, ownerUuid?: string, uuid?: string) => { +const resourceShare = (dispatch: Dispatch, uuidPrefix: string, ownerUuid?: string, uuid?: string) => { const isPublic = ownerUuid === getPublicUuid(uuidPrefix); return (
@@ -113,7 +114,77 @@ export const ResourceShare = connect( })((props: { ownerUuid?: string, uuidPrefix: string, uuid?: string } & DispatchProp) => resourceShare(props.dispatch, props.uuidPrefix, props.ownerUuid, props.uuid)); -export const resourceRunProcess = (dispatch: Dispatch, uuid: string) => { +const renderFirstName = (item: { firstName: string }) => { + return {item.firstName}; +}; + +export const ResourceFirstName = connect( + (state: RootState, props: { uuid: string }) => { + const resource = getResource(props.uuid)(state.resources); + return resource || { firstName: '' }; + })(renderFirstName); + +const renderLastName = (item: { lastName: string }) => + {item.lastName}; + +export const ResourceLastName = connect( + (state: RootState, props: { uuid: string }) => { + const resource = getResource(props.uuid)(state.resources); + return resource || { lastName: '' }; + })(renderLastName); + +const renderUuid = (item: { uuid: string }) => + {item.uuid}; + +export const ResourceUuid = connect( + (state: RootState, props: { uuid: string }) => { + const resource = getResource(props.uuid)(state.resources); + return resource || { uuid: '' }; + })(renderUuid); + +const renderEmail = (item: { email: string }) => + {item.email}; + +export const ResourceEmail = connect( + (state: RootState, props: { uuid: string }) => { + const resource = getResource(props.uuid)(state.resources); + return resource || { email: '' }; + })(renderEmail); + +const renderIsActive = (item: { isActive: boolean }) => + ; + +export const ResourceIsActive = connect( + (state: RootState, props: { uuid: string }) => { + const resource = getResource(props.uuid)(state.resources); + return resource || { isActive: false }; + })(renderIsActive); + +const renderIsAdmin = (item: { isAdmin: boolean }) => + ; + +export const ResourceIsAdmin = connect( + (state: RootState, props: { uuid: string }) => { + const resource = getResource(props.uuid)(state.resources); + return resource || { isAdmin: false }; + })(renderIsAdmin); + +const renderUsername = (item: { username: string }) => + {item.username}; + +export const ResourceUsername = connect( + (state: RootState, props: { uuid: string }) => { + const resource = getResource(props.uuid)(state.resources); + return resource || { username: '' }; + })(renderUsername); + +const resourceRunProcess = (dispatch: Dispatch, uuid: string) => { return (
{uuid && @@ -135,7 +206,7 @@ export const ResourceRunProcess = connect( })((props: { uuid: string } & DispatchProp) => resourceRunProcess(props.dispatch, props.uuid)); -export const renderWorkflowStatus = (uuidPrefix: string, ownerUuid?: string) => { +const renderWorkflowStatus = (uuidPrefix: string, ownerUuid?: string) => { if (ownerUuid === getPublicUuid(uuidPrefix)) { return renderStatus(ResourceStatus.PUBLIC); } else { @@ -185,7 +256,7 @@ export const ResourceFileSize = connect( return { fileSize: resource ? resource.fileSize : 0 }; })((props: { fileSize?: number }) => renderFileSize(props.fileSize)); -export const renderOwner = (owner: string) => +const renderOwner = (owner: string) => {owner} ; @@ -196,7 +267,7 @@ export const ResourceOwner = connect( return { owner: resource ? resource.ownerUuid : '' }; })((props: { owner: string }) => renderOwner(props.owner)); -export const renderType = (type: string) => +const renderType = (type: string) => {resourceLabel(type)} ;