X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/4fe47dee802ef6491649317f335a8558f9f75c40..2e9f1d88035d8ce2bf88b2881e8a3736fae7139b:/src/views/workbench/workbench.tsx diff --git a/src/views/workbench/workbench.tsx b/src/views/workbench/workbench.tsx index 4e00349f..c96de02e 100644 --- a/src/views/workbench/workbench.tsx +++ b/src/views/workbench/workbench.tsx @@ -29,7 +29,6 @@ import { CreateProjectDialog } from "~/views-components/create-project-dialog/cr import { detailsPanelActions, loadDetails } from "~/store/details-panel/details-panel-action"; import { contextMenuActions } from "~/store/context-menu/context-menu-actions"; -import { SidePanelIdentifiers } from '~/store/side-panel/side-panel-reducer'; import { ProjectResource } from '~/models/project'; import { ResourceKind } from '~/models/resource'; import { ContextMenu, ContextMenuKind } from "~/views-components/context-menu/context-menu"; @@ -50,6 +49,11 @@ import { MultipleFilesRemoveDialog } from '~/views-components/file-remove-dialog import { DialogCollectionCreateWithSelectedFile } from '~/views-components/create-collection-dialog-with-selected/create-collection-dialog-with-selected'; import { COLLECTION_CREATE_DIALOG } from '~/views-components/dialog-create/dialog-collection-create'; import { PROJECT_CREATE_DIALOG } from '~/views-components/dialog-create/dialog-project-create'; +import { UploadCollectionFilesDialog } from '~/views-components/upload-collection-files-dialog/upload-collection-files-dialog'; +import { CollectionPartialCopyDialog } from '../../views-components/collection-partial-copy-dialog/collection-partial-copy-dialog'; +import { MoveProjectDialog } from '~/views-components/move-project-dialog/move-project-dialog'; +import { MoveCollectionDialog } from '~/views-components/move-collection-dialog/move-collection-dialog'; +import { CopyCollectionDialog } from '~/views-components/dialog-forms/copy-collection-dialog'; const DRAWER_WITDH = 240; const APP_BAR_HEIGHT = 100; @@ -101,14 +105,15 @@ interface WorkbenchDataProps { sidePanelItems: SidePanelItem[]; } -interface WorkbenchServiceProps { +interface WorkbenchGeneralProps { authService: AuthService; + buildInfo: string; } interface WorkbenchActionProps { } -type WorkbenchProps = WorkbenchDataProps & WorkbenchServiceProps & WorkbenchActionProps & DispatchProp & WithStyles; +type WorkbenchProps = WorkbenchDataProps & WorkbenchGeneralProps & WorkbenchActionProps & DispatchProp & WithStyles; interface NavBreadcrumb extends Breadcrumb { itemId: string; @@ -193,6 +198,7 @@ export const Workbench = withStyles(styles)( searchText={this.state.searchText} user={this.props.user} menuItems={this.state.menuItems} + buildInfo={this.props.buildInfo} {...this.mainAppBarActions} /> {user && @@ -228,7 +234,7 @@ export const Workbench = withStyles(styles)(
- } /> + } /> @@ -241,11 +247,16 @@ export const Workbench = withStyles(styles)( + + + + + ) => { - this.props.dispatch(loadCollection(collectionId, ResourceKind.COLLECTION)); + this.props.dispatch(loadCollection(collectionId)); this.props.dispatch(loadCollectionTags(collectionId)); }} onContextMenu={(event, item) => { @@ -297,7 +308,7 @@ export const Workbench = withStyles(styles)( onItemDoubleClick={item => { switch (item.kind) { case ResourceKind.COLLECTION: - this.props.dispatch(loadCollection(item.uuid, item.kind as ResourceKind)); + this.props.dispatch(loadCollection(item.uuid)); this.props.dispatch(push(getCollectionUrl(item.uuid))); default: this.props.dispatch(setProjectItem(item.uuid, ItemMode.ACTIVE)); @@ -324,7 +335,7 @@ export const Workbench = withStyles(styles)( onItemDoubleClick={item => { switch (item.kind) { case ResourceKind.COLLECTION: - this.props.dispatch(loadCollection(item.uuid, item.kind as ResourceKind)); + this.props.dispatch(loadCollection(item.uuid)); this.props.dispatch(push(getCollectionUrl(item.uuid))); default: this.props.dispatch(loadDetails(item.uuid, ResourceKind.PROJECT));