1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
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, Switch, RouteComponentProps } 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 { ProjectTree } from '../../views-components/project-tree/project-tree';
17 import { TreeItem } from "../../components/tree/tree";
18 import { getTreePath } from '../../store/project/project-reducer';
19 import { sidePanelActions } from '../../store/side-panel/side-panel-action';
20 import { SidePanel, SidePanelItem } from '../../components/side-panel/side-panel';
21 import { ItemMode, setProjectItem, restoreBranch } from "../../store/navigation/navigation-action";
22 import { projectActions } from "../../store/project/project-action";
23 import { collectionCreateActions } from '../../store/collections/creator/collection-creator-action';
24 import { ProjectPanel } from "../project-panel/project-panel";
25 import { DetailsPanel } from '../../views-components/details-panel/details-panel';
26 import { ArvadosTheme } from '../../common/custom-theme';
27 import { CreateProjectDialog } from "../../views-components/create-project-dialog/create-project-dialog";
29 import { detailsPanelActions, loadDetails } from "../../store/details-panel/details-panel-action";
30 import { contextMenuActions } from "../../store/context-menu/context-menu-actions";
31 import { SidePanelIdentifiers } from '../../store/side-panel/side-panel-reducer';
32 import { ProjectResource } from '../../models/project';
33 import { ResourceKind } from '../../models/resource';
34 import { ContextMenu, ContextMenuKind } from "../../views-components/context-menu/context-menu";
35 import { FavoritePanel } from "../favorite-panel/favorite-panel";
36 import { CurrentTokenDialog } from '../../views-components/current-token-dialog/current-token-dialog';
37 import { dataExplorerActions } from '../../store/data-explorer/data-explorer-action';
38 import { Snackbar } from '../../views-components/snackbar/snackbar';
39 import { favoritePanelActions } from '../../store/favorite-panel/favorite-panel-action';
40 import { CreateCollectionDialog } from '../../views-components/create-collection-dialog/create-collection-dialog';
41 import { CollectionPanel } from '../collection-panel/collection-panel';
42 import { loadCollection } from '../../store/collection-panel/collection-panel-action';
43 import { getCollectionUrl } from '../../models/collection';
44 import { UpdateCollectionDialog } from '../../views-components/update-collection-dialog/update-collection-dialog.';
45 import { AuthService } from "../../services/auth-service/auth-service";
47 const DRAWER_WITDH = 240;
48 const APP_BAR_HEIGHT = 100;
50 type CssRules = 'root' | 'appBar' | 'drawerPaper' | 'content' | 'contentWrapper' | 'toolbar';
52 const styles: StyleRulesCallback<CssRules> = (theme: ArvadosTheme) => ({
63 zIndex: theme.zIndex.drawer + 1,
71 flexDirection: 'column',
74 backgroundColor: theme.palette.background.default,
78 paddingTop: APP_BAR_HEIGHT
81 padding: `${theme.spacing.unit}px ${theme.spacing.unit * 3}px`,
85 toolbar: theme.mixins.toolbar
88 interface WorkbenchDataProps {
89 projects: Array<TreeItem<ProjectResource>>;
90 currentProjectId: string;
92 currentToken?: string;
93 sidePanelItems: SidePanelItem[];
97 interface WorkbenchServiceProps {
98 authService: AuthService;
101 interface WorkbenchActionProps {
104 type WorkbenchProps = WorkbenchDataProps & WorkbenchServiceProps & WorkbenchActionProps & DispatchProp<any> & WithStyles<CssRules>;
106 interface NavBreadcrumb extends Breadcrumb {
110 interface NavMenuItem extends MainAppBarMenuItem {
114 interface WorkbenchState {
115 isCurrentTokenDialogOpen: boolean;
119 accountMenu: NavMenuItem[],
120 helpMenu: NavMenuItem[],
121 anonymousMenu: NavMenuItem[]
125 export const Workbench = withStyles(styles)(
126 connect<WorkbenchDataProps>(
127 (state: RootState) => ({
128 projects: state.projects.items,
129 currentProjectId: state.projects.currentItemId,
130 user: state.auth.user,
131 currentToken: state.auth.apiToken,
132 sidePanelItems: state.sidePanel,
133 router: state.router.location
136 class extends React.Component<WorkbenchProps, WorkbenchState> {
138 isCreationDialogOpen: false,
139 isCurrentTokenDialogOpen: false,
146 label: 'Current token',
147 action: () => this.toggleCurrentTokenModal()
151 action: () => this.props.dispatch(logout())
155 action: () => this.props.dispatch(push("/my-account"))
161 action: () => this.props.dispatch(push("/help"))
167 action: () => this.props.dispatch(login())
173 componentDidMount() {
174 const PROJECT_URL_REGEX = /\/projects\/(.*)/;
175 const getProjectIdFromUrl = (url: string) => {
176 const match = PROJECT_URL_REGEX.exec(url);
177 return match ? match[1] : match;
180 const id = getProjectIdFromUrl(this.props.router.pathname);
182 this.props.dispatch<any>(sidePanelActions.TOGGLE_SIDE_PANEL_ITEM_ACTIVE(SidePanelIdentifiers.PROJECTS));
183 this.props.dispatch<any>(restoreBranch(id));
188 const path = getTreePath(this.props.projects, this.props.currentProjectId);
189 const breadcrumbs = path.map(item => ({
190 label: item.data.name,
191 itemId: item.data.uuid,
195 const { classes, user } = this.props;
197 <div className={classes.root}>
198 <div className={classes.appBar}>
200 breadcrumbs={breadcrumbs}
201 searchText={this.state.searchText}
202 user={this.props.user}
203 menuItems={this.state.menuItems}
204 {...this.mainAppBarActions} />
210 paper: classes.drawerPaper,
212 <div className={classes.toolbar} />
214 toggleOpen={this.toggleSidePanelOpen}
215 toggleActive={this.toggleSidePanelActive}
216 sidePanelItems={this.props.sidePanelItems}
217 onContextMenu={(event) => this.openContextMenu(event, {
218 uuid: this.props.authService.getUuid() || "",
220 kind: ContextMenuKind.ROOT_PROJECT
223 projects={this.props.projects}
224 toggleOpen={itemId => this.props.dispatch(setProjectItem(itemId, ItemMode.OPEN))}
225 onContextMenu={(event, item) => this.openContextMenu(event, {
226 uuid: item.data.uuid,
227 name: item.data.name,
228 kind: ContextMenuKind.PROJECT
230 toggleActive={itemId => {
231 this.props.dispatch(setProjectItem(itemId, ItemMode.ACTIVE));
232 this.props.dispatch(loadDetails(itemId, ResourceKind.PROJECT));
233 this.props.dispatch(sidePanelActions.TOGGLE_SIDE_PANEL_ITEM_ACTIVE(SidePanelIdentifiers.PROJECTS));
237 <main className={classes.contentWrapper}>
238 <div className={classes.content}>
240 <Route path="/projects/:id" render={this.renderProjectPanel} />
241 <Route path="/favorites" render={this.renderFavoritePanel} />
242 <Route path="/collections/:id" render={this.renderCollectionPanel} />
245 {user && <DetailsPanel />}
249 <CreateProjectDialog />
250 <CreateCollectionDialog />
251 <UpdateCollectionDialog />
253 currentToken={this.props.currentToken}
254 open={this.state.isCurrentTokenDialogOpen}
255 handleClose={this.toggleCurrentTokenModal} />
260 renderCollectionPanel = (props: RouteComponentProps<{ id: string }>) => <CollectionPanel
261 onItemRouteChange={(collectionId) => this.props.dispatch<any>(loadCollection(collectionId, ResourceKind.COLLECTION))}
262 onContextMenu={(event, item) => {
263 this.openContextMenu(event, {
266 kind: ContextMenuKind.COLLECTION
271 renderProjectPanel = (props: RouteComponentProps<{ id: string }>) => <ProjectPanel
272 onItemRouteChange={itemId => this.props.dispatch(setProjectItem(itemId, ItemMode.ACTIVE))}
273 onContextMenu={(event, item) => {
275 const kind = item.kind === ResourceKind.PROJECT ? ContextMenuKind.PROJECT : ContextMenuKind.RESOURCE;
276 this.openContextMenu(event, {
282 onProjectCreationDialogOpen={this.handleProjectCreationDialogOpen}
283 onCollectionCreationDialogOpen={this.handleCollectionCreationDialogOpen}
284 onItemClick={item => {
285 this.props.dispatch(loadDetails(item.uuid, item.kind as ResourceKind));
287 onItemDoubleClick={item => {
289 case ResourceKind.COLLECTION:
290 this.props.dispatch(loadCollection(item.uuid, item.kind as ResourceKind));
291 this.props.dispatch(push(getCollectionUrl(item.uuid)));
293 this.props.dispatch(setProjectItem(item.uuid, ItemMode.ACTIVE));
294 this.props.dispatch(loadDetails(item.uuid, item.kind as ResourceKind));
300 renderFavoritePanel = (props: RouteComponentProps<{ id: string }>) => <FavoritePanel
301 onItemRouteChange={() => this.props.dispatch(favoritePanelActions.REQUEST_ITEMS())}
302 onContextMenu={(event, item) => {
303 const kind = item.kind === ResourceKind.PROJECT ? ContextMenuKind.PROJECT : ContextMenuKind.RESOURCE;
304 this.openContextMenu(event, {
310 onDialogOpen={this.handleProjectCreationDialogOpen}
311 onItemClick={item => {
312 this.props.dispatch(loadDetails(item.uuid, item.kind as ResourceKind));
314 onItemDoubleClick={item => {
316 case ResourceKind.COLLECTION:
317 this.props.dispatch(loadCollection(item.uuid, item.kind as ResourceKind));
318 this.props.dispatch(push(getCollectionUrl(item.uuid)));
320 this.props.dispatch(loadDetails(item.uuid, ResourceKind.PROJECT));
321 this.props.dispatch(setProjectItem(item.uuid, ItemMode.ACTIVE));
322 this.props.dispatch(sidePanelActions.TOGGLE_SIDE_PANEL_ITEM_ACTIVE(SidePanelIdentifiers.PROJECTS));
328 mainAppBarActions: MainAppBarActionProps = {
329 onBreadcrumbClick: ({ itemId }: NavBreadcrumb) => {
330 this.props.dispatch(setProjectItem(itemId, ItemMode.BOTH));
331 this.props.dispatch(loadDetails(itemId, ResourceKind.PROJECT));
333 onSearch: searchText => {
334 this.setState({ searchText });
335 this.props.dispatch(push(`/search?q=${searchText}`));
337 onMenuItemClick: (menuItem: NavMenuItem) => menuItem.action(),
338 onDetailsPanelToggle: () => {
339 this.props.dispatch(detailsPanelActions.TOGGLE_DETAILS_PANEL());
341 onContextMenu: (event: React.MouseEvent<HTMLElement>, breadcrumb: NavBreadcrumb) => {
342 this.openContextMenu(event, {
343 uuid: breadcrumb.itemId,
344 name: breadcrumb.label,
345 kind: ContextMenuKind.PROJECT
350 toggleSidePanelOpen = (itemId: string) => {
351 this.props.dispatch(sidePanelActions.TOGGLE_SIDE_PANEL_ITEM_OPEN(itemId));
354 toggleSidePanelActive = (itemId: string) => {
355 this.props.dispatch(sidePanelActions.TOGGLE_SIDE_PANEL_ITEM_ACTIVE(itemId));
356 this.props.dispatch(projectActions.RESET_PROJECT_TREE_ACTIVITY(itemId));
357 const panelItem = this.props.sidePanelItems.find(it => it.id === itemId);
358 if (panelItem && panelItem.activeAction) {
359 panelItem.activeAction(this.props.dispatch);
363 handleProjectCreationDialogOpen = (itemUuid: string) => {
364 this.props.dispatch(projectActions.OPEN_PROJECT_CREATOR({ ownerUuid: itemUuid }));
367 handleCollectionCreationDialogOpen = (itemUuid: string) => {
368 this.props.dispatch(collectionCreateActions.OPEN_COLLECTION_CREATOR({ ownerUuid: itemUuid }));
371 openContextMenu = (event: React.MouseEvent<HTMLElement>, resource: { name: string; uuid: string; kind: ContextMenuKind; }) => {
372 event.preventDefault();
374 contextMenuActions.OPEN_CONTEXT_MENU({
375 position: { x: event.clientX, y: event.clientY },
381 toggleCurrentTokenModal = () => {
382 this.setState({ isCurrentTokenDialogOpen: !this.state.isCurrentTokenDialogOpen });