X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/97622f7e87cccdd98dfc748913ed8791c862bd4a..HEAD:/src/views/project-panel/project-panel.tsx diff --git a/src/views/project-panel/project-panel.tsx b/src/views/project-panel/project-panel.tsx index 4a3f60a6..efaf53eb 100644 --- a/src/views/project-panel/project-panel.tsx +++ b/src/views/project-panel/project-panel.tsx @@ -3,12 +3,12 @@ // SPDX-License-Identifier: AGPL-3.0 import React from 'react'; -import withStyles from "@material-ui/core/styles/withStyles"; +import withStyles from '@material-ui/core/styles/withStyles'; import { DispatchProp, connect } from 'react-redux'; import { RouteComponentProps } from 'react-router'; -import { StyleRulesCallback, WithStyles } from "@material-ui/core"; +import { StyleRulesCallback, WithStyles } from '@material-ui/core'; -import { DataExplorer } from "views-components/data-explorer/data-explorer"; +import { DataExplorer } from 'views-components/data-explorer/data-explorer'; import { DataColumns } from 'components/data-table/data-table'; import { RootState } from 'store/store'; import { DataTableFilterItem } from 'components/data-table-filters/data-table-filters'; @@ -16,156 +16,280 @@ import { ContainerRequestState } from 'models/container-request'; import { SortDirection } from 'components/data-table/data-column'; import { ResourceKind, Resource } from 'models/resource'; import { + ResourceName, + ProcessStatus as ResourceStatus, + ResourceType, + ResourceOwnerWithName, + ResourcePortableDataHash, ResourceFileSize, + ResourceFileCount, + ResourceUUID, + ResourceContainerUuid, + ContainerRunTime, + ResourceOutputUuid, + ResourceLogUuid, + ResourceParentProcess, + ResourceModifiedByUserUuid, + ResourceVersion, + ResourceCreatedAtDate, ResourceLastModifiedDate, - ProcessStatus, - ResourceType, - ResourceOwner + ResourceTrashDate, + ResourceDeleteDate, } from 'views-components/data-explorer/renderers'; import { ProjectIcon } from 'components/icon/icon'; -import { ResourceName } from 'views-components/data-explorer/renderers'; -import { - ResourcesState, - getResource -} from 'store/resources/resources'; +import { ResourcesState, getResource } from 'store/resources/resources'; import { loadDetailsPanel } from 'store/details-panel/details-panel-action'; -import { - openContextMenu, - resourceUuidToContextMenuKind -} from 'store/context-menu/context-menu-actions'; +import { openContextMenu, resourceUuidToContextMenuKind } from 'store/context-menu/context-menu-actions'; import { navigateTo } from 'store/navigation/navigation-action'; import { getProperty } from 'store/properties/properties'; import { PROJECT_PANEL_CURRENT_UUID } from 'store/project-panel/project-panel-action'; -import { DataTableDefaultView } from 'components/data-table-default-view/data-table-default-view'; -import { ArvadosTheme } from "common/custom-theme"; +import { ArvadosTheme } from 'common/custom-theme'; import { createTree } from 'models/tree'; -import { - getInitialResourceTypeFilters, - getInitialProcessStatusFilters -} from 'store/resource-type-filters/resource-type-filters'; +import { getInitialResourceTypeFilters, getInitialProcessStatusFilters } from 'store/resource-type-filters/resource-type-filters'; import { GroupContentsResource } from 'services/groups-service/groups-service'; import { GroupClass, GroupResource } from 'models/group'; import { CollectionResource } from 'models/collection'; +import { resourceIsFrozen } from 'common/frozen-resources'; +import { ProjectResource } from 'models/project'; +import { NotFoundView } from 'views/not-found-panel/not-found-panel'; +import { toggleOne } from 'store/multiselect/multiselect-actions'; -type CssRules = 'root' | "button"; +type CssRules = 'root' | 'button'; const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ root: { width: '100%', }, button: { - marginLeft: theme.spacing.unit + marginLeft: theme.spacing.unit, }, }); export enum ProjectPanelColumnNames { - NAME = "Name", - STATUS = "Status", - TYPE = "Type", - OWNER = "Owner", - FILE_SIZE = "File size", - LAST_MODIFIED = "Last modified" + NAME = 'Name', + STATUS = 'Status', + TYPE = 'Type', + OWNER = 'Owner', + PORTABLE_DATA_HASH = 'Portable Data Hash', + FILE_SIZE = 'File Size', + FILE_COUNT = 'File Count', + UUID = 'UUID', + CONTAINER_UUID = 'Container UUID', + RUNTIME = 'Runtime', + OUTPUT_UUID = 'Output UUID', + LOG_UUID = 'Log UUID', + PARENT_PROCESS = 'Parent Process UUID', + MODIFIED_BY_USER_UUID = 'Modified by User UUID', + VERSION = 'Version', + CREATED_AT = 'Date Created', + LAST_MODIFIED = 'Last Modified', + TRASH_AT = 'Trash at', + DELETE_AT = 'Delete at', } export interface ProjectPanelFilter extends DataTableFilterItem { type: ResourceKind | ContainerRequestState; } -export const projectPanelColumns: DataColumns = [ +export const projectPanelColumns: DataColumns = [ { name: ProjectPanelColumnNames.NAME, selected: true, configurable: true, - sortDirection: SortDirection.NONE, + sort: { direction: SortDirection.NONE, field: 'name' }, filters: createTree(), - render: uuid => + render: (uuid) => , }, { - name: "Status", + name: ProjectPanelColumnNames.STATUS, selected: true, configurable: true, mutuallyExclusiveFilters: true, filters: getInitialProcessStatusFilters(), - render: uuid => , + render: (uuid) => , }, { name: ProjectPanelColumnNames.TYPE, selected: true, configurable: true, filters: getInitialResourceTypeFilters(), - render: uuid => + render: (uuid) => , }, { name: ProjectPanelColumnNames.OWNER, selected: false, configurable: true, filters: createTree(), - render: uuid => + render: (uuid) => , + }, + { + name: ProjectPanelColumnNames.PORTABLE_DATA_HASH, + selected: false, + configurable: true, + filters: createTree(), + render: (uuid) => , }, { name: ProjectPanelColumnNames.FILE_SIZE, selected: true, configurable: true, filters: createTree(), - render: uuid => + render: (uuid) => , + }, + { + name: ProjectPanelColumnNames.FILE_COUNT, + selected: false, + configurable: true, + filters: createTree(), + render: (uuid) => , + }, + { + name: ProjectPanelColumnNames.UUID, + selected: false, + configurable: true, + filters: createTree(), + render: (uuid) => , + }, + { + name: ProjectPanelColumnNames.CONTAINER_UUID, + selected: false, + configurable: true, + filters: createTree(), + render: (uuid) => , + }, + { + name: ProjectPanelColumnNames.RUNTIME, + selected: false, + configurable: true, + filters: createTree(), + render: (uuid) => , + }, + { + name: ProjectPanelColumnNames.OUTPUT_UUID, + selected: false, + configurable: true, + filters: createTree(), + render: (uuid) => , + }, + { + name: ProjectPanelColumnNames.LOG_UUID, + selected: false, + configurable: true, + filters: createTree(), + render: (uuid) => , + }, + { + name: ProjectPanelColumnNames.PARENT_PROCESS, + selected: false, + configurable: true, + filters: createTree(), + render: (uuid) => , + }, + { + name: ProjectPanelColumnNames.MODIFIED_BY_USER_UUID, + selected: false, + configurable: true, + filters: createTree(), + render: (uuid) => , + }, + { + name: ProjectPanelColumnNames.VERSION, + selected: false, + configurable: true, + filters: createTree(), + render: (uuid) => , + }, + { + name: ProjectPanelColumnNames.CREATED_AT, + selected: false, + configurable: true, + sort: { direction: SortDirection.NONE, field: 'createdAt' }, + filters: createTree(), + render: (uuid) => , }, { name: ProjectPanelColumnNames.LAST_MODIFIED, selected: true, configurable: true, - sortDirection: SortDirection.DESC, + sort: { direction: SortDirection.DESC, field: 'modifiedAt' }, filters: createTree(), - render: uuid => - } + render: (uuid) => , + }, + { + name: ProjectPanelColumnNames.TRASH_AT, + selected: false, + configurable: true, + sort: { direction: SortDirection.NONE, field: 'trashAt' }, + filters: createTree(), + render: (uuid) => , + }, + { + name: ProjectPanelColumnNames.DELETE_AT, + selected: false, + configurable: true, + sort: { direction: SortDirection.NONE, field: 'deleteAt' }, + filters: createTree(), + render: (uuid) => , + }, ]; -export const PROJECT_PANEL_ID = "projectPanel"; +export const PROJECT_PANEL_ID = 'projectPanel'; -const DEFAULT_VIEW_MESSAGES = [ - 'Your project is empty.', - 'Please create a project or create a collection and upload a data.', -]; +const DEFAULT_VIEW_MESSAGES = ['Your project is empty.', 'Please create a project or create a collection and upload a data.']; interface ProjectPanelDataProps { currentItemId: string; resources: ResourcesState; + project: GroupResource; isAdmin: boolean; userUuid: string; + dataExplorerItems: any; } -type ProjectPanelProps = ProjectPanelDataProps & DispatchProp - & WithStyles & RouteComponentProps<{ id: string }>; +type ProjectPanelProps = ProjectPanelDataProps & DispatchProp & WithStyles & RouteComponentProps<{ id: string }>; -export const ProjectPanel = withStyles(styles)( - connect((state: RootState) => ({ - currentItemId: getProperty(PROJECT_PANEL_CURRENT_UUID)(state.properties), +const mapStateToProps = (state: RootState) => { + const currentItemId = getProperty(PROJECT_PANEL_CURRENT_UUID)(state.properties); + const project = getResource(currentItemId || "")(state.resources); + return { + currentItemId, + project, resources: state.resources, userUuid: state.auth.user!.uuid, - }))( + }; +} + +export const ProjectPanel = withStyles(styles)( + connect(mapStateToProps)( class extends React.Component { render() { const { classes } = this.props; - return
- - } /> -
; + + return this.props.project ? +
+ +
+ : + } isCurrentItemChild = (resource: Resource) => { return resource.ownerUuid === this.props.currentItemId; - } + }; handleContextMenu = (event: React.MouseEvent, resourceUuid: string) => { - const { resources } = this.props; + const { resources, isAdmin } = this.props; const resource = getResource(resourceUuid)(resources); // When viewing the contents of a filter group, all contents should be treated as read only. let readonly = false; @@ -176,28 +300,33 @@ export const ProjectPanel = withStyles(styles)( const menuKind = this.props.dispatch(resourceUuidToContextMenuKind(resourceUuid, readonly)); if (menuKind && resource) { - this.props.dispatch(openContextMenu(event, { - name: resource.name, - uuid: resource.uuid, - ownerUuid: resource.ownerUuid, - isTrashed: ('isTrashed' in resource) ? resource.isTrashed: false, - kind: resource.kind, - menuKind, - description: resource.description, - storageClassesDesired: (resource as CollectionResource).storageClassesDesired, - })); + this.props.dispatch( + openContextMenu(event, { + name: resource.name, + uuid: resource.uuid, + ownerUuid: resource.ownerUuid, + isTrashed: 'isTrashed' in resource ? resource.isTrashed : false, + kind: resource.kind, + menuKind, + isAdmin, + isFrozen: resourceIsFrozen(resource, resources), + description: resource.description, + storageClassesDesired: (resource as CollectionResource).storageClassesDesired, + properties: 'properties' in resource ? resource.properties : {}, + }) + ); } this.props.dispatch(loadDetailsPanel(resourceUuid)); - } + }; handleRowDoubleClick = (uuid: string) => { this.props.dispatch(navigateTo(uuid)); - } + }; handleRowClick = (uuid: string) => { + this.props.dispatch(toggleOne(uuid)) this.props.dispatch(loadDetailsPanel(uuid)); - } - + }; } ) );