Merge branch '22159-data-explorer-refactor'
[arvados.git] / services / workbench2 / src / views / project-panel / project-panel.tsx
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
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';
29
30 type CssRules = 'root' | 'button' | 'mpvRoot' | 'dataExplorer';
31
32 const styles: CustomStyleRulesCallback<CssRules> = (theme: ArvadosTheme) => ({
33     root: {
34         width: '100%',
35         display: 'flex',
36         flexDirection: 'column',
37     },
38     button: {
39         marginLeft: theme.spacing(1),
40     },
41     mpvRoot: {
42         flexGrow: 1,
43         display: 'flex',
44         flexDirection: 'column',
45         flexWrap: 'nowrap',
46         minHeight: "500px",
47         '& > div': {
48             height: '100%',
49         },
50     },
51     dataExplorer: {
52         height: "100%",
53     },
54 });
55
56 const panelsData: MPVPanelState[] = [
57     { name: "Data", visible: true },
58     { name: "Workflow Runs", visible: false },
59 ];
60
61 interface ProjectPanelDataProps {
62     currentItemId: string;
63     resources: ResourcesState;
64     project: GroupResource;
65     isAdmin: boolean;
66     userUuid: string;
67     dataExplorerItems: any;
68     working: boolean;
69 }
70
71 type ProjectPanelProps = ProjectPanelDataProps & DispatchProp & WithStyles<CssRules> & RouteComponentProps<{ id: string }>;
72
73 const mapStateToProps = (state: RootState) => {
74     const currentItemId = getProperty<string>(PROJECT_PANEL_CURRENT_UUID)(state.properties);
75     const project = getResource<GroupResource>(currentItemId || "")(state.resources);
76     return {
77         currentItemId,
78         project,
79         resources: state.resources,
80         userUuid: state.auth.user!.uuid,
81     };
82 }
83
84 export const ProjectPanel = withStyles(styles)(
85     connect(mapStateToProps)(
86         class extends React.Component<ProjectPanelProps> {
87
88             render() {
89                 const { classes } = this.props;
90                 return <div data-cy='project-panel' className={classes.root}>
91                     <DetailsCardRoot />
92                     <MPVContainer
93                         className={classes.mpvRoot}
94                         panelStates={panelsData}
95                         mutuallyExclusive
96                         justify-content="flex-start"
97                         style={{flexWrap: 'nowrap'}}>
98                         <MPVPanelContent
99                             forwardProps
100                             xs="auto"
101                             item
102                             data-cy="process-data"
103                             className={classes.dataExplorer}>
104                             <ProjectPanelData
105                                 onRowClick={this.handleRowClick}
106                                 onRowDoubleClick={this.handleRowDoubleClick}
107                                 onContextMenu={this.handleContextMenu}
108                             />
109                         </MPVPanelContent>
110                         <MPVPanelContent
111                             forwardProps
112                             xs="auto"
113                             item
114                             data-cy="process-run"
115                             className={classes.dataExplorer}>
116                             <ProjectPanelRun
117                                 onRowClick={this.handleRowClick}
118                                 onRowDoubleClick={this.handleRowDoubleClick}
119                                 onContextMenu={this.handleContextMenu}
120                             />
121                         </MPVPanelContent>
122                     </MPVContainer>
123                 </div>
124             }
125
126             isCurrentItemChild = (resource: Resource) => {
127                 return resource.ownerUuid === this.props.currentItemId;
128             };
129
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) {
136                     readonly = true;
137                 }
138
139                 const menuKind = this.props.dispatch<any>(resourceUuidToContextMenuKind(resource.uuid, readonly));
140                 if (menuKind && resource) {
141                     this.props.dispatch<any>(
142                         openContextMenu(event, {
143                             name: resource.name,
144                             uuid: resource.uuid,
145                             ownerUuid: resource.ownerUuid,
146                             isTrashed: 'isTrashed' in resource ? resource.isTrashed : false,
147                             kind: resource.kind,
148                             menuKind,
149                             isAdmin,
150                             isFrozen: resourceIsFrozen(resource, resources),
151                             description: resource.description,
152                             storageClassesDesired: (resource as CollectionResource).storageClassesDesired,
153                             properties: 'properties' in resource ? resource.properties : {},
154                         })
155                     );
156                 }
157                 this.props.dispatch<any>(loadDetailsPanel(resource.uuid));
158             };
159
160             handleRowDoubleClick = ({uuid}: Resource) => {
161                 this.props.dispatch<any>(navigateTo(uuid));
162             };
163
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));
168             };
169         }
170     )
171 );