X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/3eba091748f10f981d48f44eed14115b4fcee0ce..1bbdd9c70d0099e0bf46b3c1ac55e423e3406314:/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 2b99f023..87ba73ff 100644 --- a/src/views-components/data-explorer/renderers.tsx +++ b/src/views-components/data-explorer/renderers.tsx @@ -3,21 +3,33 @@ // SPDX-License-Identifier: AGPL-3.0 import * as React from 'react'; -import { Grid, Typography } from '@material-ui/core'; +import { Grid, Typography, withStyles, Tooltip, IconButton } 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 { formatDate, formatFileSize } from '../../common/formatters'; -import { resourceLabel } from '../../common/labels'; +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, 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 { 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 } from '~/store/workflow-panel/workflow-panel-actions'; +import { CollectionResource } from "~/models/collection"; +import { getResourceData } from "~/store/resources-data/resources-data"; +import { openSharingDialog } from '~/store/sharing-dialog/sharing-dialog-actions'; - -export const renderName = (item: {name: string; uuid: string, kind: string}) => +export const renderName = (item: { name: string; uuid: string, kind: string }) => {renderIcon(item)} - + {item.name} @@ -28,8 +40,13 @@ 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); + return resource || { name: '', uuid: '', kind: '' }; + })(renderName); -export const renderIcon = (item: {kind: string}) => { +export const renderIcon = (item: { kind: string }) => { switch (item.kind) { case ResourceKind.PROJECT: return ; @@ -37,31 +54,150 @@ 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)}; +export const renderDate = (date?: string) => { + return {formatDate(date)}; }; +export 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`; +}; + +// ToDo: share onClick +export 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)); + +export 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); + 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 = getResourceData(props.uuid)(state.resourcesData); + return { fileSize: resource ? resource.fileSize : 0 }; + })((props: { fileSize?: number }) => renderFileSize(props.fileSize)); + export const renderOwner = (owner: string) => {owner} ; +export const ResourceOwner = connect( + (state: RootState, props: { uuid: string }) => { + const resource = getResource(props.uuid)(state.resources); + return { owner: resource ? resource.ownerUuid : '' }; + })((props: { owner: string }) => renderOwner(props.owner)); + export const renderType = (type: string) => {resourceLabel(type)} ; -export const renderStatus = (item: {status?: string}) => - - {item.status || "-"} - ; \ No newline at end of file +export const ResourceType = connect( + (state: RootState, props: { uuid: string }) => { + const resource = getResource(props.uuid)(state.resources); + return { type: resource ? resource.kind : '' }; + })((props: { type: string }) => renderType(props.type)); + +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} + ; + });