clean code
[arvados-workbench2.git] / src / views / workbench / workbench.tsx
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 import * as React from 'react';
6 import { StyleRulesCallback, WithStyles, withStyles } from '@material-ui/core/styles';
7 import Drawer from '@material-ui/core/Drawer';
8 import { connect, DispatchProp } from "react-redux";
9 import { Route, RouteComponentProps, Switch, Redirect } from "react-router";
10 import { login, logout } from "~/store/auth/auth-action";
11 import { User } from "~/models/user";
12 import { RootState } from "~/store/store";
13 import { MainAppBar, MainAppBarActionProps, MainAppBarMenuItem } from '~/views-components/main-app-bar/main-app-bar';
14 import { Breadcrumb } from '~/components/breadcrumbs/breadcrumbs';
15 import { push } from 'react-router-redux';
16 import { reset } from 'redux-form';
17 import { ProjectTree } from '~/views-components/project-tree/project-tree';
18 import { TreeItem } from "~/components/tree/tree";
19 import { getTreePath } from '~/store/project/project-reducer';
20 import { sidePanelActions } from '~/store/side-panel/side-panel-action';
21 import { SidePanel, SidePanelItem } from '~/components/side-panel/side-panel';
22 import { ItemMode, setProjectItem } from "~/store/navigation/navigation-action";
23 import { projectActions } from "~/store/project/project-action";
24 import { DetailsPanel } from '~/views-components/details-panel/details-panel';
25 import { ArvadosTheme } from '~/common/custom-theme';
26
27 import { detailsPanelActions, loadDetails } from "~/store/details-panel/details-panel-action";
28 import { contextMenuActions } from "~/store/context-menu/context-menu-actions";
29 import { ProjectResource } from '~/models/project';
30 import { ResourceKind } from '~/models/resource';
31 import { ProcessPanel } from '~/views/process-panel/process-panel';
32 import { ContextMenu, ContextMenuKind } from "~/views-components/context-menu/context-menu";
33 import { FavoritePanel } from "../favorite-panel/favorite-panel";
34 import { CurrentTokenDialog } from '~/views-components/current-token-dialog/current-token-dialog';
35 import { Snackbar } from '~/views-components/snackbar/snackbar';
36 import { favoritePanelActions } from '~/store/favorite-panel/favorite-panel-action';
37 import { CollectionPanel } from '../collection-panel/collection-panel';
38 import { loadCollection, loadCollectionTags } from '~/store/collection-panel/collection-panel-action';
39 import { getCollectionUrl } from '~/models/collection';
40
41 import { PROJECT_CREATE_FORM_NAME, openProjectCreateDialog } from '~/store/projects/project-create-actions';
42 import { COLLECTION_CREATE_FORM_NAME, openCollectionCreateDialog } from '~/store/collections/collection-create-actions';
43 import { CreateCollectionDialog } from '~/views-components/dialog-forms/create-collection-dialog';
44 import { UpdateCollectionDialog } from '~/views-components/dialog-forms/update-collection-dialog';
45 import { CreateProjectDialog } from '~/views-components/dialog-forms/create-project-dialog';
46 import { UpdateProjectDialog } from '~/views-components/dialog-forms/update-project-dialog';
47
48 import { ProjectPanel } from "~/views/project-panel/project-panel";
49 import { AuthService } from "~/services/auth-service/auth-service";
50 import { RenameFileDialog } from '~/views-components/rename-file-dialog/rename-file-dialog';
51 import { FileRemoveDialog } from '~/views-components/file-remove-dialog/file-remove-dialog';
52 import { MultipleFilesRemoveDialog } from '~/views-components/file-remove-dialog/multiple-files-remove-dialog';
53 import { UploadCollectionFilesDialog } from '~/views-components/upload-collection-files-dialog/upload-collection-files-dialog';
54 import { CollectionPartialCopyDialog } from '~/views-components/collection-partial-copy-dialog/collection-partial-copy-dialog';
55 import { MoveProjectDialog } from '~/views-components/dialog-forms/move-project-dialog';
56 import { MoveCollectionDialog } from '~/views-components/dialog-forms/move-collection-dialog';
57 import { CopyCollectionDialog } from '~/views-components/dialog-forms/copy-collection-dialog';
58
59 const DRAWER_WITDH = 240;
60 const APP_BAR_HEIGHT = 100;
61
62 type CssRules = 'root' | 'appBar' | 'drawerPaper' | 'content' | 'contentWrapper' | 'toolbar';
63
64 const styles: StyleRulesCallback<CssRules> = (theme: ArvadosTheme) => ({
65     root: {
66         flexGrow: 1,
67         zIndex: 1,
68         overflow: 'hidden',
69         position: 'relative',
70         display: 'flex',
71         width: '100vw',
72         height: '100vh'
73     },
74     appBar: {
75         zIndex: theme.zIndex.drawer + 1,
76         position: "absolute",
77         width: "100%"
78     },
79     drawerPaper: {
80         position: 'relative',
81         width: DRAWER_WITDH,
82         display: 'flex',
83         flexDirection: 'column',
84     },
85     contentWrapper: {
86         backgroundColor: theme.palette.background.default,
87         display: "flex",
88         flexGrow: 1,
89         minWidth: 0,
90         paddingTop: APP_BAR_HEIGHT
91     },
92     content: {
93         padding: `${theme.spacing.unit}px ${theme.spacing.unit * 3}px`,
94         overflowY: "auto",
95         flexGrow: 1,
96         position: 'relative'
97     },
98     toolbar: theme.mixins.toolbar
99 });
100
101 interface WorkbenchDataProps {
102     projects: Array<TreeItem<ProjectResource>>;
103     currentProjectId: string;
104     user?: User;
105     currentToken?: string;
106     sidePanelItems: SidePanelItem[];
107 }
108
109 interface WorkbenchGeneralProps {
110     authService: AuthService;
111     buildInfo: string;
112 }
113
114 interface WorkbenchActionProps {
115 }
116
117 type WorkbenchProps = WorkbenchDataProps & WorkbenchGeneralProps & WorkbenchActionProps & DispatchProp<any> & WithStyles<CssRules>;
118
119 interface NavBreadcrumb extends Breadcrumb {
120     itemId: string;
121 }
122
123 interface NavMenuItem extends MainAppBarMenuItem {
124     action: () => void;
125 }
126
127 interface WorkbenchState {
128     isCurrentTokenDialogOpen: boolean;
129     anchorEl: any;
130     searchText: string;
131     menuItems: {
132         accountMenu: NavMenuItem[],
133         helpMenu: NavMenuItem[],
134         anonymousMenu: NavMenuItem[]
135     };
136 }
137
138 export const Workbench = withStyles(styles)(
139     connect<WorkbenchDataProps>(
140         (state: RootState) => ({
141             projects: state.projects.items,
142             currentProjectId: state.projects.currentItemId,
143             user: state.auth.user,
144             currentToken: state.auth.apiToken,
145             sidePanelItems: state.sidePanel
146         })
147     )(
148         class extends React.Component<WorkbenchProps, WorkbenchState> {
149             state = {
150                 isCreationDialogOpen: false,
151                 isCurrentTokenDialogOpen: false,
152                 anchorEl: null,
153                 searchText: "",
154                 breadcrumbs: [],
155                 menuItems: {
156                     accountMenu: [
157                         {
158                             label: 'Current token',
159                             action: () => this.toggleCurrentTokenModal()
160                         },
161                         {
162                             label: "Logout",
163                             action: () => this.props.dispatch(logout())
164                         },
165                         {
166                             label: "My account",
167                             action: () => this.props.dispatch(push("/my-account"))
168                         }
169                     ],
170                     helpMenu: [
171                         {
172                             label: "Help",
173                             action: () => this.props.dispatch(push("/help"))
174                         }
175                     ],
176                     anonymousMenu: [
177                         {
178                             label: "Sign in",
179                             action: () => this.props.dispatch(login())
180                         }
181                     ]
182                 }
183             };
184
185             render() {
186                 const path = getTreePath(this.props.projects, this.props.currentProjectId);
187                 const breadcrumbs = path.map(item => ({
188                     label: item.data.name,
189                     itemId: item.data.uuid,
190                     status: item.status
191                 }));
192
193                 const { classes, user } = this.props;
194                 return (
195                     <div className={classes.root}>
196                         <div className={classes.appBar}>
197                             <MainAppBar
198                                 breadcrumbs={breadcrumbs}
199                                 searchText={this.state.searchText}
200                                 user={this.props.user}
201                                 menuItems={this.state.menuItems}
202                                 buildInfo={this.props.buildInfo}
203                                 {...this.mainAppBarActions} />
204                         </div>
205                         {user &&
206                             <Drawer
207                                 variant="permanent"
208                                 classes={{
209                                     paper: classes.drawerPaper,
210                                 }}>
211                                 <div className={classes.toolbar} />
212                                 <SidePanel
213                                     toggleOpen={this.toggleSidePanelOpen}
214                                     toggleActive={this.toggleSidePanelActive}
215                                     sidePanelItems={this.props.sidePanelItems}
216                                     onContextMenu={(event) => this.openContextMenu(event, {
217                                         uuid: this.props.authService.getUuid() || "",
218                                         name: "",
219                                         kind: ContextMenuKind.ROOT_PROJECT
220                                     })}>
221                                     <ProjectTree
222                                         projects={this.props.projects}
223                                         toggleOpen={itemId => this.props.dispatch(setProjectItem(itemId, ItemMode.OPEN))}
224                                         onContextMenu={(event, item) => this.openContextMenu(event, {
225                                             uuid: item.data.uuid,
226                                             name: item.data.name,
227                                             kind: ContextMenuKind.PROJECT
228                                         })}
229                                         toggleActive={itemId => {
230                                             this.props.dispatch(setProjectItem(itemId, ItemMode.ACTIVE));
231                                             this.props.dispatch(loadDetails(itemId, ResourceKind.PROJECT));
232                                         }} />
233                                 </SidePanel>
234                             </Drawer>}
235                         <main className={classes.contentWrapper}>
236                             <div className={classes.content}>
237                                 <Switch>
238                                     <Route path='/' exact render={() => <Redirect to={`/projects/${this.props.authService.getUuid()}`} />} />
239                                     <Route path="/projects/:id" render={this.renderProjectPanel} />
240                                     <Route path="/favorites" render={this.renderFavoritePanel} />
241                                     <Route path="/collections/:id" render={this.renderCollectionPanel} />
242                                     <Route path="/process/:id" render={this.renderProcessPanel} />
243                                 </Switch>
244                             </div>
245                             {user && <DetailsPanel />}
246                         </main>
247                         <ContextMenu />
248                         <Snackbar />
249                         <CreateProjectDialog />
250                         <CreateCollectionDialog />
251                         <RenameFileDialog />
252                         <CollectionPartialCopyDialog />
253                         <FileRemoveDialog />
254                         <CopyCollectionDialog />
255                         <MultipleFilesRemoveDialog />
256                         <UpdateCollectionDialog />
257                         <UploadCollectionFilesDialog />
258                         <UpdateProjectDialog />
259                         <MoveCollectionDialog />
260                         <MoveProjectDialog />
261                         <CurrentTokenDialog
262                             currentToken={this.props.currentToken}
263                             open={this.state.isCurrentTokenDialogOpen}
264                             handleClose={this.toggleCurrentTokenModal} />
265                     </div>
266                 );
267             }
268
269             renderProcessPanel = (props: RouteComponentProps<{ id: string }>) => <ProcessPanel
270                 onContextMenu={(event, item) => {
271                     this.openContextMenu(event, {
272                         uuid: 'item.uuid',
273                         name: 'item.name',
274                         description: 'item.description',
275                         kind: ContextMenuKind.PROCESS
276                     });
277                 }}
278                 {...props} />
279
280             renderCollectionPanel = (props: RouteComponentProps<{ id: string }>) => <CollectionPanel
281                 onItemRouteChange={(collectionId) => {
282                     this.props.dispatch<any>(loadCollection(collectionId));
283                     this.props.dispatch<any>(loadCollectionTags(collectionId));
284                 }}
285                 onContextMenu={(event, item) => {
286                     this.openContextMenu(event, {
287                         uuid: item.uuid,
288                         name: item.name,
289                         description: item.description,
290                         kind: ContextMenuKind.COLLECTION
291                     });
292                 }}
293                 {...props} />
294
295             renderProjectPanel = (props: RouteComponentProps<{ id: string }>) => <ProjectPanel
296                 onItemRouteChange={itemId => this.props.dispatch(setProjectItem(itemId, ItemMode.ACTIVE))}
297                 onContextMenu={(event, item) => {
298                     let kind: ContextMenuKind;
299
300                     if (item.kind === ResourceKind.PROJECT) {
301                         kind = ContextMenuKind.PROJECT;
302                     } else if (item.kind === ResourceKind.COLLECTION) {
303                         kind = ContextMenuKind.COLLECTION_RESOURCE;
304                     } else {
305                         kind = ContextMenuKind.RESOURCE;
306                     }
307
308                     this.openContextMenu(event, {
309                         uuid: item.uuid,
310                         name: item.name,
311                         description: item.description,
312                         kind
313                     });
314                 }}
315                 onProjectCreationDialogOpen={this.handleProjectCreationDialogOpen}
316                 onCollectionCreationDialogOpen={this.handleCollectionCreationDialogOpen}
317                 onItemClick={item => {
318                     this.props.dispatch(loadDetails(item.uuid, item.kind as ResourceKind));
319                 }}
320                 onItemDoubleClick={item => {
321                     switch (item.kind) {
322                         case ResourceKind.COLLECTION:
323                             this.props.dispatch(loadCollection(item.uuid));
324                             this.props.dispatch(push(getCollectionUrl(item.uuid)));
325                         default:
326                             this.props.dispatch(setProjectItem(item.uuid, ItemMode.ACTIVE));
327                             this.props.dispatch(loadDetails(item.uuid, item.kind as ResourceKind));
328                     }
329
330                 }}
331                 {...props} />
332
333             renderFavoritePanel = (props: RouteComponentProps<{ id: string }>) => <FavoritePanel
334                 onItemRouteChange={() => this.props.dispatch(favoritePanelActions.REQUEST_ITEMS())}
335                 onContextMenu={(event, item) => {
336                     const kind = item.kind === ResourceKind.PROJECT ? ContextMenuKind.PROJECT : ContextMenuKind.RESOURCE;
337                     this.openContextMenu(event, {
338                         uuid: item.uuid,
339                         name: item.name,
340                         kind,
341                     });
342                 }}
343                 onDialogOpen={this.handleProjectCreationDialogOpen}
344                 onItemClick={item => {
345                     this.props.dispatch(loadDetails(item.uuid, item.kind as ResourceKind));
346                 }}
347                 onItemDoubleClick={item => {
348                     switch (item.kind) {
349                         case ResourceKind.COLLECTION:
350                             this.props.dispatch(loadCollection(item.uuid));
351                             this.props.dispatch(push(getCollectionUrl(item.uuid)));
352                         default:
353                             this.props.dispatch(loadDetails(item.uuid, ResourceKind.PROJECT));
354                             this.props.dispatch(setProjectItem(item.uuid, ItemMode.ACTIVE));
355                     }
356
357                 }}
358                 {...props} />
359
360             mainAppBarActions: MainAppBarActionProps = {
361                 onBreadcrumbClick: ({ itemId }: NavBreadcrumb) => {
362                     this.props.dispatch(setProjectItem(itemId, ItemMode.BOTH));
363                     this.props.dispatch(loadDetails(itemId, ResourceKind.PROJECT));
364                 },
365                 onSearch: searchText => {
366                     this.setState({ searchText });
367                     this.props.dispatch(push(`/search?q=${searchText}`));
368                 },
369                 onMenuItemClick: (menuItem: NavMenuItem) => menuItem.action(),
370                 onDetailsPanelToggle: () => {
371                     this.props.dispatch(detailsPanelActions.TOGGLE_DETAILS_PANEL());
372                 },
373                 onContextMenu: (event: React.MouseEvent<HTMLElement>, breadcrumb: NavBreadcrumb) => {
374                     this.openContextMenu(event, {
375                         uuid: breadcrumb.itemId,
376                         name: breadcrumb.label,
377                         kind: ContextMenuKind.PROJECT
378                     });
379                 }
380             };
381
382             toggleSidePanelOpen = (itemId: string) => {
383                 this.props.dispatch(sidePanelActions.TOGGLE_SIDE_PANEL_ITEM_OPEN(itemId));
384             }
385
386             toggleSidePanelActive = (itemId: string) => {
387                 this.props.dispatch(projectActions.RESET_PROJECT_TREE_ACTIVITY(itemId));
388
389                 const panelItem = this.props.sidePanelItems.find(it => it.id === itemId);
390                 if (panelItem && panelItem.activeAction) {
391                     panelItem.activeAction(this.props.dispatch, this.props.authService.getUuid());
392                 }
393             }
394
395             handleProjectCreationDialogOpen = (itemUuid: string) => {
396                 this.props.dispatch(reset(PROJECT_CREATE_FORM_NAME));
397                 this.props.dispatch<any>(openProjectCreateDialog(itemUuid));
398             }
399
400             handleCollectionCreationDialogOpen = (itemUuid: string) => {
401                 this.props.dispatch(reset(COLLECTION_CREATE_FORM_NAME));
402                 this.props.dispatch<any>(openCollectionCreateDialog(itemUuid));
403             }
404
405             openContextMenu = (event: React.MouseEvent<HTMLElement>, resource: { name: string; uuid: string; description?: string; kind: ContextMenuKind; }) => {
406                 event.preventDefault();
407                 this.props.dispatch(
408                     contextMenuActions.OPEN_CONTEXT_MENU({
409                         position: { x: event.clientX, y: event.clientY },
410                         resource
411                     })
412                 );
413             }
414
415             toggleCurrentTokenModal = () => {
416                 this.setState({ isCurrentTokenDialogOpen: !this.state.isCurrentTokenDialogOpen });
417             }
418         }
419     )
420 );