X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/eb4491eea9ba873845f7a5796d139d19977f8112..5c6e7a1fcb3e951c09e4a794f92a80a35f4db2ee:/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 1b07642a..72644f93 100644 --- a/src/views-components/data-explorer/renderers.tsx +++ b/src/views-components/data-explorer/renderers.tsx @@ -3,15 +3,21 @@ // SPDX-License-Identifier: AGPL-3.0 import * as React from 'react'; -import { Grid, Typography } from '@material-ui/core'; +import { Grid, Typography, withStyles } from '@material-ui/core'; import { FavoriteStar } from '../favorite-star/favorite-star'; -import { ResourceKind } from '~/models/resource'; +import { ResourceKind, TrashableResource } from '~/models/resource'; import { ProjectIcon, CollectionIcon, ProcessIcon, DefaultIcon } from '~/components/icon/icon'; import { formatDate, formatFileSize } from '~/common/formatters'; import { resourceLabel } from '~/common/labels'; +import { connect } 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 } from 'redux'; - -export const renderName = (item: {name: string; uuid: string, kind: string}) => +export const renderName = (item: { name: string; uuid: string, kind: string }) => {renderIcon(item)} @@ -28,8 +34,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 ; @@ -42,26 +53,72 @@ export const renderIcon = (item: {kind: string}) => { } }; -export const renderDate = (date: string) => { +export const renderDate = (date?: string) => { return {formatDate(date)}; }; +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 = getResource(props.uuid)(state.resources); + return {}; + })((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 || "-"} - ; +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} + ; + });