X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/540750a7749cb71ea0a8fde4b7a3689eeaa1c3dd..3ddd45b007768a39591cd116b4a213cd39019e0c:/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 abf18392..ce4d430f 100644 --- a/src/views-components/data-explorer/renderers.tsx +++ b/src/views-components/data-explorer/renderers.tsx @@ -3,26 +3,37 @@ // SPDX-License-Identifier: AGPL-3.0 import * as React from 'react'; -import { Grid, Typography } from '@material-ui/core'; +import { Grid, Typography, withStyles, Tooltip, IconButton, Checkbox, Button } from '@material-ui/core'; import { FavoriteStar } from '../favorite-star/favorite-star'; -import { ResourceKind } from '~/models/resource'; -import { ProjectIcon, CollectionIcon, ProcessIcon, DefaultIcon } from '~/components/icon/icon'; +import { ResourceKind, TrashableResource } from '~/models/resource'; +import { ProjectIcon, CollectionIcon, ProcessIcon, DefaultIcon, WorkflowIcon, ShareIcon } from '~/components/icon/icon'; import { formatDate, formatFileSize } from '~/common/formatters'; import { resourceLabel } from '~/common/labels'; -import { connect } from 'react-redux'; +import { connect, DispatchProp } from 'react-redux'; import { RootState } from '~/store/store'; -import { getResource } from '../../store/resources/resources'; +import { getResource } from '~/store/resources/resources'; import { GroupContentsResource } from '~/services/groups-service/groups-service'; -import { ProcessResource } from '~/models/process'; +import { getProcess, Process, getProcessStatus, getProcessStatusColor } from '~/store/processes/process'; +import { ArvadosTheme } from '~/common/custom-theme'; +import { compose, Dispatch } from 'redux'; +import { WorkflowResource } from '~/models/workflow'; +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'; +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'; - -export const renderName = (item: { name: string; uuid: string, kind: string }) => +const renderName = (item: { name: string; uuid: string, kind: string }) => {renderIcon(item)} - + {item.name} @@ -35,11 +46,11 @@ export const renderName = (item: { name: string; uuid: string, kind: string }) = export const ResourceName = connect( (state: RootState, props: { uuid: string }) => { - const resource = getResource(props.uuid)(state.resources) as GroupContentsResource | undefined; + const resource = getResource(props.uuid)(state.resources); return resource || { name: '', uuid: '', kind: '' }; })(renderName); -export const renderIcon = (item: { kind: string }) => { +const renderIcon = (item: { kind: string }) => { switch (item.kind) { case ResourceKind.PROJECT: return ; @@ -47,61 +58,338 @@ export const renderIcon = (item: { kind: string }) => { return ; case ResourceKind.PROCESS: return ; + case ResourceKind.WORKFLOW: + return ; default: return ; } }; -export const renderDate = (date: string) => { - return {formatDate(date)}; +const renderDate = (date?: string) => { + return {formatDate(date)}; +}; + +const renderWorkflowName = (item: { name: string; uuid: string, kind: string, ownerUuid: string }) => + + + {renderIcon(item)} + + + + {item.name} + + + ; + +export const RosurceWorkflowName = connect( + (state: RootState, props: { uuid: string }) => { + const resource = getResource(props.uuid)(state.resources); + return resource || { name: '', uuid: '', kind: '', ownerUuid: '' }; + })(renderWorkflowName); + +const getPublicUuid = (uuidPrefix: string) => { + return `${uuidPrefix}-tpzed-anonymouspublic`; +}; + +const resourceShare = (dispatch: Dispatch, uuidPrefix: string, ownerUuid?: string, uuid?: string) => { + const isPublic = ownerUuid === getPublicUuid(uuidPrefix); + return ( +
+ {!isPublic && uuid && + + dispatch(openSharingDialog(uuid))}> + + + + } +
+ ); +}; + +export const ResourceShare = connect( + (state: RootState, props: { uuid: string }) => { + const resource = getResource(props.uuid)(state.resources); + const uuidPrefix = getUuidPrefix(state); + return { + uuid: resource ? resource.uuid : '', + ownerUuid: resource ? resource.ownerUuid : '', + uuidPrefix + }; + })((props: { ownerUuid?: string, uuidPrefix: string, uuid?: string } & DispatchProp) => + resourceShare(props.dispatch, props.uuidPrefix, props.ownerUuid, props.uuid)); + +const renderFirstName = (item: { firstName: string }) => { + return {item.firstName}; +}; + +// User Resources +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 = (props: { uuid: string, isActive: boolean, toggleIsActive: (uuid: string) => void }) => + props.toggleIsActive(props.uuid)} />; + +export const ResourceIsActive = connect( + (state: RootState, props: { uuid: string }) => { + const resource = getResource(props.uuid)(state.resources); + return resource || { isActive: false }; + }, { toggleIsActive } +)(renderIsActive); + +const renderIsAdmin = (props: { uuid: string, isAdmin: boolean, toggleIsAdmin: (uuid: string) => void }) => + props.toggleIsAdmin(props.uuid)} />; + +export const ResourceIsAdmin = connect( + (state: RootState, props: { uuid: string }) => { + const resource = getResource(props.uuid)(state.resources); + return resource || { isAdmin: false }; + }, { toggleIsAdmin } +)(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); + +// Compute Node Resources +const renderNodeDate = (date: string) => + {formatDate(date)}; + +const renderNodeData = (data: string) => { + return {data}; +}; + +const renderNodeInfo = (data: string) => { + return {JSON.stringify(data, null, 4)}; }; +export const ComputeNodeInfo = withResourceData('info', renderNodeInfo); + +export const ComputeNodeUuid = withResourceData('uuid', renderNodeData); + +export const ComputeNodeDomain = withResourceData('domain', renderNodeData); + +export const ComputeNodeFirstPingAt = withResourceData('firstPingAt', renderNodeDate); + +export const ComputeNodeHostname = withResourceData('hostname', renderNodeData); + +export const ComputeNodeIpAddress = withResourceData('ipAddress', renderNodeData); + +export const ComputeNodeJobUuid = withResourceData('jobUuid', renderNodeData); + +export const ComputeNodeLastPingAt = withResourceData('lastPingAt', renderNodeDate); + +// Links Resources +const renderLinkName = (item: { name: string }) => + {item.name || '(none)'}; + +export const ResourceLinkName = connect( + (state: RootState, props: { uuid: string }) => { + const resource = getResource(props.uuid)(state.resources); + return resource || { name: '' }; + })(renderLinkName); + +const renderLinkClass = (item: { linkClass: string }) => + {item.linkClass}; + +export const ResourceLinkClass = connect( + (state: RootState, props: { uuid: string }) => { + const resource = getResource(props.uuid)(state.resources); + return resource || { linkClass: '' }; + })(renderLinkClass); + +const renderLinkTail = (dispatch: Dispatch, item: { uuid: string, tailUuid: string, tailKind: string }) => { + const currentLabel = resourceLabel(item.tailKind); + const isUnknow = currentLabel === "Unknown"; + return (
+ { !isUnknow ? ( + renderLink(dispatch, item.tailUuid, currentLabel) + ) : ( + + {item.tailUuid} + + )} +
); +}; + +const renderLink = (dispatch: Dispatch, uuid: string, label: string) => + dispatch(navigateTo(uuid))}> + {label}: {uuid} + ; + +export const ResourceLinkTail = connect( + (state: RootState, props: { uuid: string }) => { + const resource = getResource(props.uuid)(state.resources); + return { + item: resource || { uuid: '', tailUuid: '', tailKind: ResourceKind.NONE } + }; + })((props: { item: any } & DispatchProp) => + renderLinkTail(props.dispatch, props.item)); + +const renderLinkHead = (dispatch: Dispatch, item: { uuid: string, headUuid: string, headKind: ResourceKind }) => + renderLink(dispatch, item.headUuid, resourceLabel(item.headKind)); + +export const ResourceLinkHead = connect( + (state: RootState, props: { uuid: string }) => { + const resource = getResource(props.uuid)(state.resources); + return { + item: resource || { uuid: '', headUuid: '', headKind: ResourceKind.NONE } + }; + })((props: { item: any } & DispatchProp) => + renderLinkHead(props.dispatch, props.item)); + +export const ResourceLinkUuid = connect( + (state: RootState, props: { uuid: string }) => { + const resource = getResource(props.uuid)(state.resources); + return resource || { uuid: '' }; + })(renderUuid); + +// Process Resources +const resourceRunProcess = (dispatch: Dispatch, uuid: string) => { + return ( +
+ {uuid && + + dispatch(openRunProcess(uuid))}> + + + } +
+ ); +}; + +export const ResourceRunProcess = connect( + (state: RootState, props: { uuid: string }) => { + const resource = getResource(props.uuid)(state.resources); + return { + uuid: resource ? resource.uuid : '' + }; + })((props: { uuid: string } & DispatchProp) => + resourceRunProcess(props.dispatch, props.uuid)); + +const renderWorkflowStatus = (uuidPrefix: string, ownerUuid?: string) => { + if (ownerUuid === getPublicUuid(uuidPrefix)) { + return renderStatus(ResourceStatus.PUBLIC); + } else { + return renderStatus(ResourceStatus.PRIVATE); + } +}; + +const renderStatus = (status: string) => + {status}; + +export const ResourceWorkflowStatus = connect( + (state: RootState, props: { uuid: string }) => { + const resource = getResource(props.uuid)(state.resources); + const uuidPrefix = getUuidPrefix(state); + return { + ownerUuid: resource ? resource.ownerUuid : '', + uuidPrefix + }; + })((props: { ownerUuid?: string, uuidPrefix: string }) => renderWorkflowStatus(props.uuidPrefix, props.ownerUuid)); + export const ResourceLastModifiedDate = connect( (state: RootState, props: { uuid: string }) => { - const resource = getResource(props.uuid)(state.resources) as GroupContentsResource | undefined; + const resource = getResource(props.uuid)(state.resources); return { date: resource ? resource.modifiedAt : '' }; })((props: { date: string }) => renderDate(props.date)); +export const ResourceTrashDate = connect( + (state: RootState, props: { uuid: string }) => { + const resource = getResource(props.uuid)(state.resources); + return { date: resource ? resource.trashAt : '' }; + })((props: { date: string }) => renderDate(props.date)); + +export const ResourceDeleteDate = connect( + (state: RootState, props: { uuid: string }) => { + const resource = getResource(props.uuid)(state.resources); + return { date: resource ? resource.deleteAt : '' }; + })((props: { date: string }) => renderDate(props.date)); + export const renderFileSize = (fileSize?: number) => - + {formatFileSize(fileSize)} ; export const ResourceFileSize = connect( (state: RootState, props: { uuid: string }) => { - const resource = getResource(props.uuid)(state.resources) as GroupContentsResource | undefined; - return {}; + const resource = getResourceData(props.uuid)(state.resourcesData); + return { fileSize: resource ? resource.fileSize : 0 }; })((props: { fileSize?: number }) => renderFileSize(props.fileSize)); -export const renderOwner = (owner: string) => +const renderOwner = (owner: string) => {owner} ; export const ResourceOwner = connect( (state: RootState, props: { uuid: string }) => { - const resource = getResource(props.uuid)(state.resources) as GroupContentsResource | undefined; + const resource = getResource(props.uuid)(state.resources); return { owner: resource ? resource.ownerUuid : '' }; })((props: { owner: string }) => renderOwner(props.owner)); -export const renderType = (type: string) => +const renderType = (type: string) => {resourceLabel(type)} ; export const ResourceType = connect( (state: RootState, props: { uuid: string }) => { - const resource = getResource(props.uuid)(state.resources) as GroupContentsResource | undefined; + const resource = getResource(props.uuid)(state.resources); return { type: resource ? resource.kind : '' }; })((props: { type: string }) => renderType(props.type)); -export const renderStatus = (item: { status?: string }) => - - {item.status || "-"} - ; - -export const ProcessStatus = connect( - (state: RootState, props: { uuid: string }) => { - const resource = getResource(props.uuid)(state.resources) as ProcessResource | undefined; - return { status: resource ? resource.state : '-' }; - })((props: { status: string }) => renderType(props.status)); +export const ProcessStatus = compose( + connect((state: RootState, props: { uuid: string }) => { + return { process: getProcess(props.uuid)(state.resources) }; + }), + withStyles({}, { withTheme: true })) + ((props: { process?: Process, theme: ArvadosTheme }) => { + const status = props.process ? getProcessStatus(props.process) : "-"; + return + {status} + ; + });