b8baeadc630988f70a8c6234eefb9df2a5ca4cb0
[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, Theme, 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, Switch, RouteComponentProps, withRouter } from "react-router";
10 import authActions from "../../store/auth/auth-action";
11 import dataExplorerActions from "../../store/data-explorer/data-explorer-action";
12 import { User } from "../../models/user";
13 import { RootState } from "../../store/store";
14 import MainAppBar, {
15     MainAppBarActionProps,
16     MainAppBarMenuItem
17 } from '../../views-components/main-app-bar/main-app-bar';
18 import { Breadcrumb } from '../../components/breadcrumbs/breadcrumbs';
19 import { push } from 'react-router-redux';
20 import ProjectTree from '../../views-components/project-tree/project-tree';
21 import { TreeItem } from "../../components/tree/tree";
22 import { Project } from "../../models/project";
23 import { getTreePath, findTreeItem } from '../../store/project/project-reducer';
24 import sidePanelActions from '../../store/side-panel/side-panel-action';
25 import SidePanel, { SidePanelItem } from '../../components/side-panel/side-panel';
26 import { ResourceKind } from "../../models/resource";
27 import { ItemMode, setProjectItem } from "../../store/navigation/navigation-action";
28 import projectActions from "../../store/project/project-action";
29 import ProjectPanel from "../project-panel/project-panel";
30 import { sidePanelData } from '../../store/side-panel/side-panel-reducer';
31
32 const drawerWidth = 240;
33 const appBarHeight = 102;
34
35 type CssRules = 'root' | 'appBar' | 'drawerPaper' | 'content' | 'contentWrapper' | 'toolbar';
36
37 const styles: StyleRulesCallback<CssRules> = (theme: Theme) => ({
38     root: {
39         flexGrow: 1,
40         zIndex: 1,
41         overflow: 'hidden',
42         position: 'relative',
43         display: 'flex',
44         width: '100vw',
45         height: '100vh'
46     },
47     appBar: {
48         zIndex: theme.zIndex.drawer + 1,
49         backgroundColor: '#692498',
50         position: "absolute",
51         width: "100%"
52     },
53     drawerPaper: {
54         position: 'relative',
55         width: drawerWidth,
56         display: 'flex',
57         flexDirection: 'column',
58     },
59     contentWrapper: {
60         backgroundColor: theme.palette.background.default,
61         display: "flex",
62         flexGrow: 1,
63         minWidth: 0,
64         paddingTop: appBarHeight
65     },
66     content: {
67         padding: theme.spacing.unit * 3,
68         overflowY: "auto",
69         flexGrow: 1
70     },
71     toolbar: theme.mixins.toolbar
72 });
73
74 interface WorkbenchDataProps {
75     projects: Array<TreeItem<Project>>;
76     currentProjectId: string;
77     user?: User;
78     sidePanelItems: SidePanelItem[];
79 }
80
81 interface WorkbenchActionProps {
82 }
83
84 type WorkbenchProps = WorkbenchDataProps & WorkbenchActionProps & DispatchProp & WithStyles<CssRules>;
85
86 interface NavBreadcrumb extends Breadcrumb {
87     itemId: string;
88 }
89
90 interface NavMenuItem extends MainAppBarMenuItem {
91     action: () => void;
92 }
93
94 interface WorkbenchState {
95     anchorEl: any;
96     searchText: string;
97     menuItems: {
98         accountMenu: NavMenuItem[],
99         helpMenu: NavMenuItem[],
100         anonymousMenu: NavMenuItem[]
101     };
102 }
103
104 class Workbench extends React.Component<WorkbenchProps, WorkbenchState> {
105     state = {
106         anchorEl: null,
107         searchText: "",
108         breadcrumbs: [],
109         menuItems: {
110             accountMenu: [
111                 {
112                     label: "Logout",
113                     action: () => this.props.dispatch(authActions.LOGOUT())
114                 },
115                 {
116                     label: "My account",
117                     action: () => this.props.dispatch(push("/my-account"))
118                 }
119             ],
120             helpMenu: [
121                 {
122                     label: "Help",
123                     action: () => this.props.dispatch(push("/help"))
124                 }
125             ],
126             anonymousMenu: [
127                 {
128                     label: "Sign in",
129                     action: () => this.props.dispatch(authActions.LOGIN())
130                 }
131             ]
132         }
133     };
134
135     mainAppBarActions: MainAppBarActionProps = {
136         onBreadcrumbClick: ({ itemId }: NavBreadcrumb) => {
137             this.props.dispatch<any>(setProjectItem(itemId, ItemMode.BOTH));
138         },
139         onSearch: searchText => {
140             this.setState({ searchText });
141             this.props.dispatch(push(`/search?q=${searchText}`));
142         },
143         onMenuItemClick: (menuItem: NavMenuItem) => menuItem.action()
144     };
145
146     toggleSidePanelOpen = (itemId: string) => {
147         this.props.dispatch(sidePanelActions.TOGGLE_SIDE_PANEL_ITEM_OPEN(itemId));
148     }
149
150     toggleSidePanelActive = (itemId: string) => {
151         this.props.dispatch(sidePanelActions.TOGGLE_SIDE_PANEL_ITEM_ACTIVE(itemId));
152         this.props.dispatch(projectActions.RESET_PROJECT_TREE_ACTIVITY(itemId));
153     }
154
155     render() {
156         const path = getTreePath(this.props.projects, this.props.currentProjectId);
157         const breadcrumbs = path.map(item => ({
158             label: item.data.name,
159             itemId: item.data.uuid,
160             status: item.status
161         }));
162
163         const { classes, user } = this.props;
164         return (
165             <div className={classes.root}>
166                 <div className={classes.appBar}>
167                     <MainAppBar
168                         breadcrumbs={breadcrumbs}
169                         searchText={this.state.searchText}
170                         user={this.props.user}
171                         menuItems={this.state.menuItems}
172                         {...this.mainAppBarActions}
173                     />
174                 </div>
175                 {user &&
176                     <Drawer
177                         variant="permanent"
178                         classes={{
179                             paper: classes.drawerPaper,
180                         }}>
181                         <div className={classes.toolbar} />
182                         <SidePanel
183                             toggleOpen={this.toggleSidePanelOpen}
184                             toggleActive={this.toggleSidePanelActive}
185                             sidePanelItems={this.props.sidePanelItems}>
186                             <ProjectTree
187                                 projects={this.props.projects}
188                                 toggleOpen={itemId => this.props.dispatch<any>(setProjectItem(itemId, ItemMode.OPEN))}
189                                 toggleActive={itemId => this.props.dispatch<any>(setProjectItem(itemId, ItemMode.ACTIVE))}
190                             />
191                         </SidePanel>
192                     </Drawer>}
193                 <main className={classes.contentWrapper}>
194                     <div className={classes.content}>
195                         <Switch>
196                             <Route path="/projects/:id" render={this.renderProjectPanel} />
197                         </Switch>
198                     </div>
199                 </main>
200             </div>
201         );
202     }
203
204     renderProjectPanel = (props: RouteComponentProps<{ id: string }>) => <ProjectPanel
205         onItemRouteChange={itemId => this.props.dispatch<any>(setProjectItem(itemId, ItemMode.ACTIVE))}
206         onItemClick={item => this.props.dispatch<any>(setProjectItem(item.uuid, ItemMode.ACTIVE))}
207         {...props} />
208
209 }
210
211 export default connect<WorkbenchDataProps>(
212     (state: RootState) => ({
213         projects: state.projects.items,
214         currentProjectId: state.projects.currentItemId,
215         user: state.auth.user,
216         sidePanelItems: state.sidePanel
217     })
218 )(
219     withStyles(styles)(Workbench)
220 );