X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/a855a03082f2d521ed64ef1405ed186655659f26..499628c02528314b043f9ac649971b62f116a27e:/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 4179d60e..6d95196d 100644 --- a/src/views-components/data-explorer/renderers.tsx +++ b/src/views-components/data-explorer/renderers.tsx @@ -6,18 +6,18 @@ import * as React from 'react'; 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'; +import { ProjectIcon, CollectionIcon, ProcessIcon, DefaultIcon, ShareIcon, CollectionOldVersionIcon, WorkflowIcon } 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 } from '~/store/resources/resources'; import { GroupContentsResource } from '~/services/groups-service/groups-service'; -import { getProcess, Process, getProcessStatus, getProcessStatusColor } from '~/store/processes/process'; +import { getProcess, Process, getProcessStatus, getProcessStatusColor, getProcessRuntime } 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 { 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 { UserResource } from '~/models/user'; @@ -26,14 +26,18 @@ import { LinkResource } from '~/models/link'; import { navigateTo } 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'; -const renderName = (dispatch: Dispatch, item: { name: string; uuid: string, kind: string }) => +const renderName = (dispatch: Dispatch, item: GroupContentsResource) => - {renderIcon(item.kind)} + {renderIcon(item)} dispatch(navigateTo(item.uuid))}> + {item.kind === ResourceKind.PROJECT || item.kind === ResourceKind.COLLECTION + ? + : null} {item.name} @@ -48,15 +52,18 @@ const renderName = (dispatch: Dispatch, item: { name: string; uuid: string, kind export const ResourceName = connect( (state: RootState, props: { uuid: string }) => { const resource = getResource(props.uuid)(state.resources); - return resource || { name: '', uuid: '', kind: '' }; - })((resource: { name: string; uuid: string, kind: string } & DispatchProp) => renderName(resource.dispatch, resource)); + return resource; + })((resource: GroupContentsResource & DispatchProp) => renderName(resource.dispatch, resource)); -const renderIcon = (kind: string) => { - switch (kind) { +const renderIcon = (item: GroupContentsResource) => { + switch (item.kind) { case ResourceKind.PROJECT: return ; case ResourceKind.COLLECTION: - return ; + if (item.uuid === item.currentVersionUuid) { + return ; + } + return ; case ResourceKind.PROCESS: return ; case ResourceKind.WORKFLOW: @@ -70,10 +77,10 @@ const renderDate = (date?: string) => { return {formatDate(date)}; }; -const renderWorkflowName = (item: { name: string; uuid: string, kind: string, ownerUuid: string }) => +const renderWorkflowName = (item: WorkflowResource) => - {renderIcon(item.kind)} + {renderIcon(item)} @@ -85,7 +92,7 @@ const renderWorkflowName = (item: { name: string; uuid: string, kind: string, ow export const ResourceWorkflowName = connect( (state: RootState, props: { uuid: string }) => { const resource = getResource(props.uuid)(state.resources); - return resource || { name: '', uuid: '', kind: '', ownerUuid: '' }; + return resource; })(renderWorkflowName); const getPublicUuid = (uuidPrefix: string) => { @@ -354,9 +361,9 @@ export const ResourceRunProcess = connect( const renderWorkflowStatus = (uuidPrefix: string, ownerUuid?: string) => { if (ownerUuid === getPublicUuid(uuidPrefix)) { - return renderStatus(ResourceStatus.PUBLIC); + return renderStatus(WorkflowStatus.PUBLIC); } else { - return renderStatus(ResourceStatus.PRIVATE); + return renderStatus(WorkflowStatus.PRIVATE); } }; @@ -379,6 +386,12 @@ export const ResourceLastModifiedDate = connect( return { date: resource ? resource.modifiedAt : '' }; })((props: { date: string }) => renderDate(props.date)); +export const ResourceCreatedAtDate = connect( + (state: RootState, props: { uuid: string }) => { + const resource = getResource(props.uuid)(state.resources); + return { date: resource ? resource.createdAt : '' }; + })((props: { date: string }) => renderDate(props.date)); + export const ResourceTrashDate = connect( (state: RootState, props: { uuid: string }) => { const resource = getResource(props.uuid)(state.resources); @@ -432,6 +445,22 @@ export const ResourceType = connect( return { type: resource ? resource.kind : '' }; })((props: { type: string }) => renderType(props.type)); +export const ResourceStatus = connect((state: RootState, props: { uuid: string }) => { + return { resource: getResource(props.uuid)(state.resources) }; + })((props: { resource: GroupContentsResource }) => + (props.resource && props.resource.kind === ResourceKind.COLLECTION) + ? + : + ); + +export const CollectionStatus = connect((state: RootState, props: { uuid: string }) => { + return { collection: getResource(props.uuid)(state.resources) }; + })((props: { collection: CollectionResource }) => + (props.collection.uuid !== props.collection.currentVersionUuid) + ? version {props.collection.version} + : head version + ); + export const ProcessStatus = compose( connect((state: RootState, props: { uuid: string }) => { return { process: getProcess(props.uuid)(state.resources) }; @@ -441,8 +470,57 @@ export const ProcessStatus = compose( const status = props.process ? getProcessStatus(props.process) : "-"; return {status} ; }); + +export const ProcessStartDate = connect( + (state: RootState, props: { uuid: string }) => { + const process = getProcess(props.uuid)(state.resources); + return { date: ( process && process.container ) ? process.container.startedAt : '' }; + })((props: { date: string }) => renderDate(props.date)); + +export const renderRunTime = (time: number) => + + {formatTime(time, true)} + ; + +interface ContainerRunTimeProps { + process: Process; +} + +interface ContainerRunTimeState { + runtime: number; +} + +export const ContainerRunTime = connect((state: RootState, props: { uuid: string }) => { + return { process: getProcess(props.uuid)(state.resources) }; +})(class extends React.Component { + private timer: any; + + constructor(props: ContainerRunTimeProps) { + super(props); + this.state = { runtime: this.getRuntime() }; + } + + getRuntime() { + return this.props.process ? getProcessRuntime(this.props.process) : 0; + } + + updateRuntime() { + this.setState({ runtime: this.getRuntime() }); + } + + componentDidMount() { + this.timer = setInterval(this.updateRuntime.bind(this), 5000); + } + + componentWillUnmount() { + clearInterval(this.timer); + } + + render() { + return renderRunTime(this.state.runtime); + } +});