// Copyright (C) The Arvados Authors. All rights reserved. // // SPDX-License-Identifier: AGPL-3.0 import * as React from 'react'; import { Button, StyleRulesCallback, WithStyles, withStyles } from '@material-ui/core'; import { DataExplorer } from "~/views-components/data-explorer/data-explorer"; import { DispatchProp, connect } from 'react-redux'; import { DataColumns } from '~/components/data-table/data-table'; import { RouteComponentProps } from 'react-router'; import { RootState } from '~/store/store'; import { DataTableFilterItem } from '~/components/data-table-filters/data-table-filters'; import { ContainerRequestState } from '~/models/container-request'; import { SortDirection } from '~/components/data-table/data-column'; import { ResourceKind } from '~/models/resource'; import { resourceLabel } from '~/common/labels'; import { ArvadosTheme } from '~/common/custom-theme'; import { ResourceFileSize, ResourceLastModifiedDate, ProcessStatus, ResourceType, ResourceOwner } 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 { loadDetailsPanel } from '~/store/details-panel/details-panel-action'; import { resourceKindToContextMenuKind, openContextMenu } from '~/store/context-menu/context-menu-actions'; import { ProjectResource } from '~/models/project'; 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 { openCollectionCreateDialog } from '../../store/collections/collection-create-actions'; import { openProjectCreateDialog } from '~/store/projects/project-create-actions'; type CssRules = 'root' | "toolbar" | "button"; const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ root: { position: 'relative', width: '100%', height: '100%' }, toolbar: { paddingBottom: theme.spacing.unit * 3, textAlign: "right" }, button: { marginLeft: theme.spacing.unit }, }); export enum ProjectPanelColumnNames { NAME = "Name", STATUS = "Status", TYPE = "Type", OWNER = "Owner", FILE_SIZE = "File size", LAST_MODIFIED = "Last modified" } export interface ProjectPanelFilter extends DataTableFilterItem { type: ResourceKind | ContainerRequestState; } export const projectPanelColumns: DataColumns = [ { name: ProjectPanelColumnNames.NAME, selected: true, configurable: true, sortDirection: SortDirection.ASC, filters: [], render: uuid => , width: "450px" }, { name: "Status", selected: true, configurable: true, filters: [], render: uuid => , width: "75px" }, { name: ProjectPanelColumnNames.TYPE, selected: true, configurable: true, filters: [ { name: resourceLabel(ResourceKind.COLLECTION), selected: true, type: ResourceKind.COLLECTION }, { name: resourceLabel(ResourceKind.PROCESS), selected: true, type: ResourceKind.PROCESS }, { name: resourceLabel(ResourceKind.PROJECT), selected: true, type: ResourceKind.PROJECT } ], render: uuid => , width: "125px" }, { name: ProjectPanelColumnNames.OWNER, selected: true, configurable: true, filters: [], render: uuid => , width: "200px" }, { name: ProjectPanelColumnNames.FILE_SIZE, selected: true, configurable: true, filters: [], render: uuid => , width: "50px" }, { name: ProjectPanelColumnNames.LAST_MODIFIED, selected: true, configurable: true, sortDirection: SortDirection.NONE, filters: [], render: uuid => , width: "150px" } ]; export const PROJECT_PANEL_ID = "projectPanel"; interface ProjectPanelDataProps { currentItemId: string; resources: ResourcesState; } type ProjectPanelProps = ProjectPanelDataProps & DispatchProp & WithStyles & RouteComponentProps<{ id: string }>; export const ProjectPanel = withStyles(styles)( connect((state: RootState) => ({ currentItemId: getProperty(PROJECT_PANEL_CURRENT_UUID)(state.properties), resources: state.resources }))( class extends React.Component { render() { const { classes } = this.props; return
; } handleNewProjectClick = () => { this.props.dispatch(openProjectCreateDialog(this.props.currentItemId)); } handleNewCollectionClick = () => { this.props.dispatch(openCollectionCreateDialog(this.props.currentItemId)); } handleContextMenu = (event: React.MouseEvent, resourceUuid: string) => { const menuKind = resourceKindToContextMenuKind(resourceUuid); const resource = getResource(resourceUuid)(this.props.resources); if (menuKind && resource) { this.props.dispatch(openContextMenu(event, { name: resource.name, uuid: resource.uuid, ownerUuid: resource.ownerUuid, isTrashed: resource.isTrashed, kind: resource.kind, menuKind })); } } handleRowDoubleClick = (uuid: string) => { this.props.dispatch(navigateTo(uuid)); } handleRowClick = (uuid: string) => { this.props.dispatch(loadDetailsPanel(uuid)); } } ) );