X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/24034b05e619fefd6015db12be27c812e9b4393d..2e9f1d88035d8ce2bf88b2881e8a3736fae7139b:/src/views/workbench/workbench.tsx diff --git a/src/views/workbench/workbench.tsx b/src/views/workbench/workbench.tsx index ac8d61eb..c96de02e 100644 --- a/src/views/workbench/workbench.tsx +++ b/src/views/workbench/workbench.tsx @@ -49,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; @@ -100,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; @@ -192,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 && @@ -227,7 +234,7 @@ export const Workbench = withStyles(styles)(
- } /> + } /> @@ -240,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) => { @@ -296,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)); @@ -323,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));