1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
5 import React from 'react';
6 import withStyles from '@mui/styles/withStyles';
7 import { DispatchProp, connect } from 'react-redux';
8 import { RouteComponentProps } from 'react-router';
9 import { WithStyles } from '@mui/styles';
10 import { CustomStyleRulesCallback } from 'common/custom-theme';
11 import { RootState } from 'store/store';
12 import { Resource } from 'models/resource';
13 import { ResourcesState, getResource } from 'store/resources/resources';
14 import { loadDetailsPanel } from 'store/details-panel/details-panel-action';
15 import { openContextMenu, resourceUuidToContextMenuKind } from 'store/context-menu/context-menu-actions';
16 import { navigateTo } from 'store/navigation/navigation-action';
17 import { getProperty } from 'store/properties/properties';
18 import { PROJECT_PANEL_CURRENT_UUID } from "store/project-panel/project-panel";
19 import { ArvadosTheme } from 'common/custom-theme';
20 import { GroupContentsResource } from 'services/groups-service/groups-service';
21 import { GroupClass, GroupResource } from 'models/group';
22 import { CollectionResource } from 'models/collection';
23 import { resourceIsFrozen } from 'common/frozen-resources';
24 import { deselectAllOthers, toggleOne } from 'store/multiselect/multiselect-actions';
25 import { DetailsCardRoot } from 'views-components/details-card/details-card-root';
26 import { MPVContainer, MPVPanelContent, MPVPanelState } from 'components/multi-panel-view/multi-panel-view';
27 import { ProjectPanelData } from './project-panel-data';
28 import { ProjectPanelRun } from './project-panel-run';
30 type CssRules = 'root' | 'button' | 'mpvRoot' | 'dataExplorer';
32 const styles: CustomStyleRulesCallback<CssRules> = (theme: ArvadosTheme) => ({
36 flexDirection: 'column',
39 marginLeft: theme.spacing(1),
44 flexDirection: 'column',
56 const panelsData: MPVPanelState[] = [
57 { name: "Data", visible: true },
58 { name: "Workflow Runs", visible: false },
61 interface ProjectPanelDataProps {
62 currentItemId: string;
63 resources: ResourcesState;
64 project: GroupResource;
67 dataExplorerItems: any;
71 type ProjectPanelProps = ProjectPanelDataProps & DispatchProp & WithStyles<CssRules> & RouteComponentProps<{ id: string }>;
73 const mapStateToProps = (state: RootState) => {
74 const currentItemId = getProperty<string>(PROJECT_PANEL_CURRENT_UUID)(state.properties);
75 const project = getResource<GroupResource>(currentItemId || "")(state.resources);
79 resources: state.resources,
80 userUuid: state.auth.user!.uuid,
84 export const ProjectPanel = withStyles(styles)(
85 connect(mapStateToProps)(
86 class extends React.Component<ProjectPanelProps> {
89 const { classes } = this.props;
90 return <div data-cy='project-panel' className={classes.root}>
93 className={classes.mpvRoot}
94 panelStates={panelsData}
96 justify-content="flex-start"
97 style={{flexWrap: 'nowrap'}}>
102 data-cy="process-data"
103 className={classes.dataExplorer}>
105 onRowClick={this.handleRowClick}
106 onRowDoubleClick={this.handleRowDoubleClick}
107 onContextMenu={this.handleContextMenu}
114 data-cy="process-run"
115 className={classes.dataExplorer}>
117 onRowClick={this.handleRowClick}
118 onRowDoubleClick={this.handleRowDoubleClick}
119 onContextMenu={this.handleContextMenu}
126 isCurrentItemChild = (resource: Resource) => {
127 return resource.ownerUuid === this.props.currentItemId;
130 handleContextMenu = (event: React.MouseEvent<HTMLElement>, resource: GroupContentsResource) => {
131 const { resources, isAdmin } = this.props;
132 // When viewing the contents of a filter group, all contents should be treated as read only.
133 let readonly = false;
134 const project = getResource<GroupResource>(this.props.currentItemId)(resources);
135 if (project && project.groupClass === GroupClass.FILTER) {
139 const menuKind = this.props.dispatch<any>(resourceUuidToContextMenuKind(resource.uuid, readonly));
140 if (menuKind && resource) {
141 this.props.dispatch<any>(
142 openContextMenu(event, {
145 ownerUuid: resource.ownerUuid,
146 isTrashed: 'isTrashed' in resource ? resource.isTrashed : false,
150 isFrozen: resourceIsFrozen(resource, resources),
151 description: resource.description,
152 storageClassesDesired: (resource as CollectionResource).storageClassesDesired,
153 properties: 'properties' in resource ? resource.properties : {},
157 this.props.dispatch<any>(loadDetailsPanel(resource.uuid));
160 handleRowDoubleClick = ({uuid}: Resource) => {
161 this.props.dispatch<any>(navigateTo(uuid));
164 handleRowClick = ({uuid}: Resource) => {
165 this.props.dispatch<any>(toggleOne(uuid))
166 this.props.dispatch<any>(deselectAllOthers(uuid))
167 this.props.dispatch<any>(loadDetailsPanel(uuid));