Rewrite edit project - add dialog form, actions, remove old 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 { ContextMenu, ContextMenuKind } from "~/views-components/context-menu/context-menu";
32 import { FavoritePanel } from "../favorite-panel/favorite-panel";
33 import { CurrentTokenDialog } from '~/views-components/current-token-dialog/current-token-dialog';
34 import { Snackbar } from '~/views-components/snackbar/snackbar';
35 import { favoritePanelActions } from '~/store/favorite-panel/favorite-panel-action';
36 import { CollectionPanel } from '../collection-panel/collection-panel';
37 import { loadCollection, loadCollectionTags } from '~/store/collection-panel/collection-panel-action';
38 import { getCollectionUrl } from '~/models/collection';
39
40 import { PROJECT_CREATE_FORM_NAME, openProjectCreateDialog } from '~/store/projects/project-create-actions';
41 import { COLLECTION_CREATE_FORM_NAME, openCollectionCreateDialog } from '~/store/collections/collection-create-actions';
42 import { CreateCollectionDialog } from '~/views-components/dialog-forms/create-collection-dialog';
43 import { UpdateCollectionDialog } from '~/views-components/dialog-forms/update-collection-dialog';
44 import { CreateProjectDialog } from '~/views-components/dialog-forms/create-project-dialog';
45 import { UpdateProjectDialog } from '~/views-components/dialog-forms/update-project-dialog';
46
47 import { ProjectPanel } from "~/views/project-panel/project-panel";
48 import { AuthService } from "~/services/auth-service/auth-service";
49 import { RenameFileDialog } from '~/views-components/rename-file-dialog/rename-file-dialog';
50 import { FileRemoveDialog } from '~/views-components/file-remove-dialog/file-remove-dialog';
51 import { MultipleFilesRemoveDialog } from '~/views-components/file-remove-dialog/multiple-files-remove-dialog';
52 import { DialogCollectionCreateWithSelectedFile } from '~/views-components/create-collection-dialog-with-selected/create-collection-dialog-with-selected';
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/move-project-dialog/move-project-dialog';
56 import { MoveCollectionDialog } from '~/views-components/move-collection-dialog/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                                 </Switch>
243                             </div>
244                             {user && <DetailsPanel />}
245                         </main>
246                         <ContextMenu />
247                         <Snackbar />
248                         <CreateProjectDialog />
249                         <CreateCollectionDialog />
250                         <RenameFileDialog />
251                         <CollectionPartialCopyDialog />
252                         <DialogCollectionCreateWithSelectedFile />
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             renderCollectionPanel = (props: RouteComponentProps<{ id: string }>) => <CollectionPanel
270                 onItemRouteChange={(collectionId) => {
271                     this.props.dispatch<any>(loadCollection(collectionId));
272                     this.props.dispatch<any>(loadCollectionTags(collectionId));
273                 }}
274                 onContextMenu={(event, item) => {
275                     this.openContextMenu(event, {
276                         uuid: item.uuid,
277                         name: item.name,
278                         description: item.description,
279                         kind: ContextMenuKind.COLLECTION
280                     });
281                 }}
282                 {...props} />
283
284             renderProjectPanel = (props: RouteComponentProps<{ id: string }>) => <ProjectPanel
285                 onItemRouteChange={itemId => this.props.dispatch(setProjectItem(itemId, ItemMode.ACTIVE))}
286                 onContextMenu={(event, item) => {
287                     let kind: ContextMenuKind;
288
289                     if (item.kind === ResourceKind.PROJECT) {
290                         kind = ContextMenuKind.PROJECT;
291                     } else if (item.kind === ResourceKind.COLLECTION) {
292                         kind = ContextMenuKind.COLLECTION_RESOURCE;
293                     } else {
294                         kind = ContextMenuKind.RESOURCE;
295                     }
296
297                     this.openContextMenu(event, {
298                         uuid: item.uuid,
299                         name: item.name,
300                         description: item.description,
301                         kind
302                     });
303                 }}
304                 onProjectCreationDialogOpen={this.handleProjectCreationDialogOpen}
305                 onCollectionCreationDialogOpen={this.handleCollectionCreationDialogOpen}
306                 onItemClick={item => {
307                     this.props.dispatch(loadDetails(item.uuid, item.kind as ResourceKind));
308                 }}
309                 onItemDoubleClick={item => {
310                     switch (item.kind) {
311                         case ResourceKind.COLLECTION:
312                             this.props.dispatch(loadCollection(item.uuid));
313                             this.props.dispatch(push(getCollectionUrl(item.uuid)));
314                         default:
315                             this.props.dispatch(setProjectItem(item.uuid, ItemMode.ACTIVE));
316                             this.props.dispatch(loadDetails(item.uuid, item.kind as ResourceKind));
317                     }
318
319                 }}
320                 {...props} />
321
322             renderFavoritePanel = (props: RouteComponentProps<{ id: string }>) => <FavoritePanel
323                 onItemRouteChange={() => this.props.dispatch(favoritePanelActions.REQUEST_ITEMS())}
324                 onContextMenu={(event, item) => {
325                     const kind = item.kind === ResourceKind.PROJECT ? ContextMenuKind.PROJECT : ContextMenuKind.RESOURCE;
326                     this.openContextMenu(event, {
327                         uuid: item.uuid,
328                         name: item.name,
329                         kind,
330                     });
331                 }}
332                 onDialogOpen={this.handleProjectCreationDialogOpen}
333                 onItemClick={item => {
334                     this.props.dispatch(loadDetails(item.uuid, item.kind as ResourceKind));
335                 }}
336                 onItemDoubleClick={item => {
337                     switch (item.kind) {
338                         case ResourceKind.COLLECTION:
339                             this.props.dispatch(loadCollection(item.uuid));
340                             this.props.dispatch(push(getCollectionUrl(item.uuid)));
341                         default:
342                             this.props.dispatch(loadDetails(item.uuid, ResourceKind.PROJECT));
343                             this.props.dispatch(setProjectItem(item.uuid, ItemMode.ACTIVE));
344                     }
345
346                 }}
347                 {...props} />
348
349             mainAppBarActions: MainAppBarActionProps = {
350                 onBreadcrumbClick: ({ itemId }: NavBreadcrumb) => {
351                     this.props.dispatch(setProjectItem(itemId, ItemMode.BOTH));
352                     this.props.dispatch(loadDetails(itemId, ResourceKind.PROJECT));
353                 },
354                 onSearch: searchText => {
355                     this.setState({ searchText });
356                     this.props.dispatch(push(`/search?q=${searchText}`));
357                 },
358                 onMenuItemClick: (menuItem: NavMenuItem) => menuItem.action(),
359                 onDetailsPanelToggle: () => {
360                     this.props.dispatch(detailsPanelActions.TOGGLE_DETAILS_PANEL());
361                 },
362                 onContextMenu: (event: React.MouseEvent<HTMLElement>, breadcrumb: NavBreadcrumb) => {
363                     this.openContextMenu(event, {
364                         uuid: breadcrumb.itemId,
365                         name: breadcrumb.label,
366                         kind: ContextMenuKind.PROJECT
367                     });
368                 }
369             };
370
371             toggleSidePanelOpen = (itemId: string) => {
372                 this.props.dispatch(sidePanelActions.TOGGLE_SIDE_PANEL_ITEM_OPEN(itemId));
373             }
374
375             toggleSidePanelActive = (itemId: string) => {
376                 this.props.dispatch(projectActions.RESET_PROJECT_TREE_ACTIVITY(itemId));
377
378                 const panelItem = this.props.sidePanelItems.find(it => it.id === itemId);
379                 if (panelItem && panelItem.activeAction) {
380                     panelItem.activeAction(this.props.dispatch, this.props.authService.getUuid());
381                 }
382             }
383
384             handleProjectCreationDialogOpen = (itemUuid: string) => {
385                 this.props.dispatch(reset(PROJECT_CREATE_FORM_NAME));
386                 this.props.dispatch<any>(openProjectCreateDialog(itemUuid));
387             }
388
389             handleCollectionCreationDialogOpen = (itemUuid: string) => {
390                 this.props.dispatch(reset(COLLECTION_CREATE_FORM_NAME));
391                 this.props.dispatch<any>(openCollectionCreateDialog(itemUuid));
392             }
393
394             openContextMenu = (event: React.MouseEvent<HTMLElement>, resource: { name: string; uuid: string; description?: string; kind: ContextMenuKind; }) => {
395                 event.preventDefault();
396                 this.props.dispatch(
397                     contextMenuActions.OPEN_CONTEXT_MENU({
398                         position: { x: event.clientX, y: event.clientY },
399                         resource
400                     })
401                 );
402             }
403
404             toggleCurrentTokenModal = () => {
405                 this.setState({ isCurrentTokenDialogOpen: !this.state.isCurrentTokenDialogOpen });
406             }
407         }
408     )
409 );