X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/89c3c647797787377f4d950b38d320ee3b28e92c..090f4825bdd30925a10c6df1b9493df0c2e8f541:/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 87ba73ff..1be47be7 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, Button } 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'; @@ -18,12 +18,16 @@ 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 { 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 { Link } from 'react-router-dom'; -export const renderName = (item: { name: string; uuid: string, kind: string }) => +const renderName = (item: { name: string; uuid: string, kind: string }) => {renderIcon(item)} @@ -46,7 +50,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 ; @@ -61,11 +65,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)} @@ -87,12 +91,11 @@ const getPublicUuid = (uuidPrefix: string) => { return `${uuidPrefix}-tpzed-anonymouspublic`; }; -// ToDo: share onClick -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 (
- { isPublic && uuid && + {!isPublic && uuid && dispatch(openSharingDialog(uuid))}> @@ -115,7 +118,156 @@ export const ResourceShare = connect( })((props: { ownerUuid?: string, uuidPrefix: string, uuid?: string } & DispatchProp) => resourceShare(props.dispatch, props.uuidPrefix, props.ownerUuid, props.uuid)); -export const renderWorkflowStatus = (uuidPrefix: string, ownerUuid?: string) => { +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); + +// 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 }) => + dispatch(navigateTo(item.uuid))}> + {resourceLabel(item.tailKind)}: {item.tailUuid} + ; + +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 }) => + dispatch(navigateTo(item.uuid))}> + {resourceLabel(item.headKind)}: {item.headUuid} + ; + +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 { @@ -165,7 +317,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} ; @@ -176,7 +328,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)} ;